How to create bootable Windows 8 iso image in Linux?
Clash Royale CLAN TAG#URR8PPP
I have to insert the Autounattend.xml
file into a Windows 8 iso image to make the iso install automatically. My system need to run on Linux and only could use Linux shell command, so ISO tools on Winodws such as UltraISO can not be used.
I have tried several methods, but all the created iso could not be booted, just printed
CDBOOT: Cannot boot from CD - Code: 5
A. The first method I tried is: tuto
- Mount iso to a folder
- Copy the mounted iso content into a new folder
- Add my files into the new folder
Use
mkisofs
command to create a new iso imagemkisofs -o windows2008_new.iso -b boot/etfsboot.com -no-emul-boot -boot-load-size 8 -boot-info-table -V -J -l -D -N -UDF -relaxed-filenames -V "WINSP"
B. The second method I tried:
MS cmd tool named "oscdimg" on Windows to create new Windows iso, it works. So I copy the oscdimg into Linux and use Wine to run it, it can not be run normally.
Does any one know how to make bootable Windows iso image in Linux using pure shell command?
windows iso bootable mkisofs
|
show 3 more comments
I have to insert the Autounattend.xml
file into a Windows 8 iso image to make the iso install automatically. My system need to run on Linux and only could use Linux shell command, so ISO tools on Winodws such as UltraISO can not be used.
I have tried several methods, but all the created iso could not be booted, just printed
CDBOOT: Cannot boot from CD - Code: 5
A. The first method I tried is: tuto
- Mount iso to a folder
- Copy the mounted iso content into a new folder
- Add my files into the new folder
Use
mkisofs
command to create a new iso imagemkisofs -o windows2008_new.iso -b boot/etfsboot.com -no-emul-boot -boot-load-size 8 -boot-info-table -V -J -l -D -N -UDF -relaxed-filenames -V "WINSP"
B. The second method I tried:
MS cmd tool named "oscdimg" on Windows to create new Windows iso, it works. So I copy the oscdimg into Linux and use Wine to run it, it can not be run normally.
Does any one know how to make bootable Windows iso image in Linux using pure shell command?
windows iso bootable mkisofs
wine
is not for 'running' iso images. Tryqemu-kvm
,xen
orvirtualbox
– Serge
May 17 '16 at 2:22
the 'oscdimg' is a cmd tool from Microsoft, runing in windows, but can not run in linux use wine(wine oscdimg). msdn.microsoft.com/zh-cn/windows/hardware/commercialize/…
– user170602
May 17 '16 at 2:31
sorry for misunderstanding.
– Serge
May 17 '16 at 2:34
take a look at this blog: rwmj.wordpress.com/2010/11/04/…
– Serge
May 17 '16 at 2:44
1
Thanks for your help, I resolve the problem finally. In the blog, use 'dd' method to get the boot.img, and use this boot.img as the boot file to create new image. Actually, the boot.img is same as the file in boot/etfsboot.com file in the iso. So, both two command below could create correct window bootable iso. "mkisofs -o ../windows2008_test.iso -b boot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ." and "mkisofs -o ../windows2008_hw.iso -b boot/etfsboot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ."
– user170602
May 17 '16 at 8:12
|
show 3 more comments
I have to insert the Autounattend.xml
file into a Windows 8 iso image to make the iso install automatically. My system need to run on Linux and only could use Linux shell command, so ISO tools on Winodws such as UltraISO can not be used.
I have tried several methods, but all the created iso could not be booted, just printed
CDBOOT: Cannot boot from CD - Code: 5
A. The first method I tried is: tuto
- Mount iso to a folder
- Copy the mounted iso content into a new folder
- Add my files into the new folder
Use
mkisofs
command to create a new iso imagemkisofs -o windows2008_new.iso -b boot/etfsboot.com -no-emul-boot -boot-load-size 8 -boot-info-table -V -J -l -D -N -UDF -relaxed-filenames -V "WINSP"
B. The second method I tried:
MS cmd tool named "oscdimg" on Windows to create new Windows iso, it works. So I copy the oscdimg into Linux and use Wine to run it, it can not be run normally.
Does any one know how to make bootable Windows iso image in Linux using pure shell command?
windows iso bootable mkisofs
I have to insert the Autounattend.xml
file into a Windows 8 iso image to make the iso install automatically. My system need to run on Linux and only could use Linux shell command, so ISO tools on Winodws such as UltraISO can not be used.
I have tried several methods, but all the created iso could not be booted, just printed
CDBOOT: Cannot boot from CD - Code: 5
A. The first method I tried is: tuto
- Mount iso to a folder
- Copy the mounted iso content into a new folder
- Add my files into the new folder
Use
mkisofs
command to create a new iso imagemkisofs -o windows2008_new.iso -b boot/etfsboot.com -no-emul-boot -boot-load-size 8 -boot-info-table -V -J -l -D -N -UDF -relaxed-filenames -V "WINSP"
B. The second method I tried:
MS cmd tool named "oscdimg" on Windows to create new Windows iso, it works. So I copy the oscdimg into Linux and use Wine to run it, it can not be run normally.
Does any one know how to make bootable Windows iso image in Linux using pure shell command?
windows iso bootable mkisofs
windows iso bootable mkisofs
edited Sep 26 '16 at 18:16
Léo Léopold Hertz 준영
1,0801244119
1,0801244119
asked May 16 '16 at 13:30
user170602user170602
2413
2413
wine
is not for 'running' iso images. Tryqemu-kvm
,xen
orvirtualbox
– Serge
May 17 '16 at 2:22
the 'oscdimg' is a cmd tool from Microsoft, runing in windows, but can not run in linux use wine(wine oscdimg). msdn.microsoft.com/zh-cn/windows/hardware/commercialize/…
– user170602
May 17 '16 at 2:31
sorry for misunderstanding.
– Serge
May 17 '16 at 2:34
take a look at this blog: rwmj.wordpress.com/2010/11/04/…
– Serge
May 17 '16 at 2:44
1
Thanks for your help, I resolve the problem finally. In the blog, use 'dd' method to get the boot.img, and use this boot.img as the boot file to create new image. Actually, the boot.img is same as the file in boot/etfsboot.com file in the iso. So, both two command below could create correct window bootable iso. "mkisofs -o ../windows2008_test.iso -b boot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ." and "mkisofs -o ../windows2008_hw.iso -b boot/etfsboot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ."
– user170602
May 17 '16 at 8:12
|
show 3 more comments
wine
is not for 'running' iso images. Tryqemu-kvm
,xen
orvirtualbox
– Serge
May 17 '16 at 2:22
the 'oscdimg' is a cmd tool from Microsoft, runing in windows, but can not run in linux use wine(wine oscdimg). msdn.microsoft.com/zh-cn/windows/hardware/commercialize/…
– user170602
May 17 '16 at 2:31
sorry for misunderstanding.
– Serge
May 17 '16 at 2:34
take a look at this blog: rwmj.wordpress.com/2010/11/04/…
– Serge
May 17 '16 at 2:44
1
Thanks for your help, I resolve the problem finally. In the blog, use 'dd' method to get the boot.img, and use this boot.img as the boot file to create new image. Actually, the boot.img is same as the file in boot/etfsboot.com file in the iso. So, both two command below could create correct window bootable iso. "mkisofs -o ../windows2008_test.iso -b boot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ." and "mkisofs -o ../windows2008_hw.iso -b boot/etfsboot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ."
– user170602
May 17 '16 at 8:12
wine
is not for 'running' iso images. Try qemu-kvm
, xen
or virtualbox
– Serge
May 17 '16 at 2:22
wine
is not for 'running' iso images. Try qemu-kvm
, xen
or virtualbox
– Serge
May 17 '16 at 2:22
the 'oscdimg' is a cmd tool from Microsoft, runing in windows, but can not run in linux use wine(wine oscdimg). msdn.microsoft.com/zh-cn/windows/hardware/commercialize/…
– user170602
May 17 '16 at 2:31
the 'oscdimg' is a cmd tool from Microsoft, runing in windows, but can not run in linux use wine(wine oscdimg). msdn.microsoft.com/zh-cn/windows/hardware/commercialize/…
– user170602
May 17 '16 at 2:31
sorry for misunderstanding.
– Serge
May 17 '16 at 2:34
sorry for misunderstanding.
– Serge
May 17 '16 at 2:34
take a look at this blog: rwmj.wordpress.com/2010/11/04/…
– Serge
May 17 '16 at 2:44
take a look at this blog: rwmj.wordpress.com/2010/11/04/…
– Serge
May 17 '16 at 2:44
1
1
Thanks for your help, I resolve the problem finally. In the blog, use 'dd' method to get the boot.img, and use this boot.img as the boot file to create new image. Actually, the boot.img is same as the file in boot/etfsboot.com file in the iso. So, both two command below could create correct window bootable iso. "mkisofs -o ../windows2008_test.iso -b boot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ." and "mkisofs -o ../windows2008_hw.iso -b boot/etfsboot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ."
– user170602
May 17 '16 at 8:12
Thanks for your help, I resolve the problem finally. In the blog, use 'dd' method to get the boot.img, and use this boot.img as the boot file to create new image. Actually, the boot.img is same as the file in boot/etfsboot.com file in the iso. So, both two command below could create correct window bootable iso. "mkisofs -o ../windows2008_test.iso -b boot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ." and "mkisofs -o ../windows2008_hw.iso -b boot/etfsboot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ."
– user170602
May 17 '16 at 8:12
|
show 3 more comments
2 Answers
2
active
oldest
votes
I managed to successfully use genisoimage
(a debian fork of mkisofs).
Method:
loopback mount the iso
mount -o loop <image>.iso /mnt/iso
copy to secondary folder for r/w access
cp -R /mnt/iso/ /mnt/iso2
make changes
genisoimage -b <relative boot-img path> -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -joliet -D -N -relaxed-filenames -o <new-image>.iso /mnt/iso2.`
genisoimage
is not a fork frommkisofs
, since a fork would require active development and own features.genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. Whilegenisoimage
is still in the state from 2004,mkisofs
nearly doubled it's features.
– schily
Jul 9 '18 at 12:04
add a comment |
Proposed method for Windows 7 but it does not work with Windows 10 iso file
# https://rwmj.wordpress.com/2010/11/04/customizing-a-windows-7-install-iso/
$ dd if=../en_windows_10_x64_dvd.iso
of=boot.img bs=2048 count=8 skip=734
$ mkisofs -o ../new-win.iso -b boot.img -no-emul-boot -c BOOT.CAT
-iso-level 2 -udf
-J -l -D -N -joliet-long -relaxed-filenames .
Output unsuccessful in the first step
dd if=/home/masi/Downloads/en_windows_10_multiple_editions_version_1511_x64_dvd.iso of=/home/masi/Downloads/boot.img bs=2048 count=8 skip=734
8+0 records in
8+0 records out
16384 bytes (16 kB) copied, 0.000392973 s, 41.7 MB/s
Please, let me know if you find any newer method for the task.
OS: Debian 8.5 64 bit
Hardware: Asus Zenbook UX303UA
Targeting hardware: Asus PC
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f283446%2fhow-to-create-bootable-windows-8-iso-image-in-linux%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I managed to successfully use genisoimage
(a debian fork of mkisofs).
Method:
loopback mount the iso
mount -o loop <image>.iso /mnt/iso
copy to secondary folder for r/w access
cp -R /mnt/iso/ /mnt/iso2
make changes
genisoimage -b <relative boot-img path> -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -joliet -D -N -relaxed-filenames -o <new-image>.iso /mnt/iso2.`
genisoimage
is not a fork frommkisofs
, since a fork would require active development and own features.genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. Whilegenisoimage
is still in the state from 2004,mkisofs
nearly doubled it's features.
– schily
Jul 9 '18 at 12:04
add a comment |
I managed to successfully use genisoimage
(a debian fork of mkisofs).
Method:
loopback mount the iso
mount -o loop <image>.iso /mnt/iso
copy to secondary folder for r/w access
cp -R /mnt/iso/ /mnt/iso2
make changes
genisoimage -b <relative boot-img path> -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -joliet -D -N -relaxed-filenames -o <new-image>.iso /mnt/iso2.`
genisoimage
is not a fork frommkisofs
, since a fork would require active development and own features.genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. Whilegenisoimage
is still in the state from 2004,mkisofs
nearly doubled it's features.
– schily
Jul 9 '18 at 12:04
add a comment |
I managed to successfully use genisoimage
(a debian fork of mkisofs).
Method:
loopback mount the iso
mount -o loop <image>.iso /mnt/iso
copy to secondary folder for r/w access
cp -R /mnt/iso/ /mnt/iso2
make changes
genisoimage -b <relative boot-img path> -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -joliet -D -N -relaxed-filenames -o <new-image>.iso /mnt/iso2.`
I managed to successfully use genisoimage
(a debian fork of mkisofs).
Method:
loopback mount the iso
mount -o loop <image>.iso /mnt/iso
copy to secondary folder for r/w access
cp -R /mnt/iso/ /mnt/iso2
make changes
genisoimage -b <relative boot-img path> -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -joliet -D -N -relaxed-filenames -o <new-image>.iso /mnt/iso2.`
edited Sep 29 '16 at 18:43
Tomasz
9,58652965
9,58652965
answered Sep 29 '16 at 18:35
jp8jp8
413
413
genisoimage
is not a fork frommkisofs
, since a fork would require active development and own features.genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. Whilegenisoimage
is still in the state from 2004,mkisofs
nearly doubled it's features.
– schily
Jul 9 '18 at 12:04
add a comment |
genisoimage
is not a fork frommkisofs
, since a fork would require active development and own features.genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. Whilegenisoimage
is still in the state from 2004,mkisofs
nearly doubled it's features.
– schily
Jul 9 '18 at 12:04
genisoimage
is not a fork from mkisofs
, since a fork would require active development and own features. genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. While genisoimage
is still in the state from 2004, mkisofs
nearly doubled it's features.– schily
Jul 9 '18 at 12:04
genisoimage
is not a fork from mkisofs
, since a fork would require active development and own features. genisoimage
however just added plenty of bugs and is not recommended. The command line you propose works perfectly with the original software and even avoids to cause structural defects in the resulting filesystem image. While genisoimage
is still in the state from 2004, mkisofs
nearly doubled it's features.– schily
Jul 9 '18 at 12:04
add a comment |
Proposed method for Windows 7 but it does not work with Windows 10 iso file
# https://rwmj.wordpress.com/2010/11/04/customizing-a-windows-7-install-iso/
$ dd if=../en_windows_10_x64_dvd.iso
of=boot.img bs=2048 count=8 skip=734
$ mkisofs -o ../new-win.iso -b boot.img -no-emul-boot -c BOOT.CAT
-iso-level 2 -udf
-J -l -D -N -joliet-long -relaxed-filenames .
Output unsuccessful in the first step
dd if=/home/masi/Downloads/en_windows_10_multiple_editions_version_1511_x64_dvd.iso of=/home/masi/Downloads/boot.img bs=2048 count=8 skip=734
8+0 records in
8+0 records out
16384 bytes (16 kB) copied, 0.000392973 s, 41.7 MB/s
Please, let me know if you find any newer method for the task.
OS: Debian 8.5 64 bit
Hardware: Asus Zenbook UX303UA
Targeting hardware: Asus PC
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
add a comment |
Proposed method for Windows 7 but it does not work with Windows 10 iso file
# https://rwmj.wordpress.com/2010/11/04/customizing-a-windows-7-install-iso/
$ dd if=../en_windows_10_x64_dvd.iso
of=boot.img bs=2048 count=8 skip=734
$ mkisofs -o ../new-win.iso -b boot.img -no-emul-boot -c BOOT.CAT
-iso-level 2 -udf
-J -l -D -N -joliet-long -relaxed-filenames .
Output unsuccessful in the first step
dd if=/home/masi/Downloads/en_windows_10_multiple_editions_version_1511_x64_dvd.iso of=/home/masi/Downloads/boot.img bs=2048 count=8 skip=734
8+0 records in
8+0 records out
16384 bytes (16 kB) copied, 0.000392973 s, 41.7 MB/s
Please, let me know if you find any newer method for the task.
OS: Debian 8.5 64 bit
Hardware: Asus Zenbook UX303UA
Targeting hardware: Asus PC
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
add a comment |
Proposed method for Windows 7 but it does not work with Windows 10 iso file
# https://rwmj.wordpress.com/2010/11/04/customizing-a-windows-7-install-iso/
$ dd if=../en_windows_10_x64_dvd.iso
of=boot.img bs=2048 count=8 skip=734
$ mkisofs -o ../new-win.iso -b boot.img -no-emul-boot -c BOOT.CAT
-iso-level 2 -udf
-J -l -D -N -joliet-long -relaxed-filenames .
Output unsuccessful in the first step
dd if=/home/masi/Downloads/en_windows_10_multiple_editions_version_1511_x64_dvd.iso of=/home/masi/Downloads/boot.img bs=2048 count=8 skip=734
8+0 records in
8+0 records out
16384 bytes (16 kB) copied, 0.000392973 s, 41.7 MB/s
Please, let me know if you find any newer method for the task.
OS: Debian 8.5 64 bit
Hardware: Asus Zenbook UX303UA
Targeting hardware: Asus PC
Proposed method for Windows 7 but it does not work with Windows 10 iso file
# https://rwmj.wordpress.com/2010/11/04/customizing-a-windows-7-install-iso/
$ dd if=../en_windows_10_x64_dvd.iso
of=boot.img bs=2048 count=8 skip=734
$ mkisofs -o ../new-win.iso -b boot.img -no-emul-boot -c BOOT.CAT
-iso-level 2 -udf
-J -l -D -N -joliet-long -relaxed-filenames .
Output unsuccessful in the first step
dd if=/home/masi/Downloads/en_windows_10_multiple_editions_version_1511_x64_dvd.iso of=/home/masi/Downloads/boot.img bs=2048 count=8 skip=734
8+0 records in
8+0 records out
16384 bytes (16 kB) copied, 0.000392973 s, 41.7 MB/s
Please, let me know if you find any newer method for the task.
OS: Debian 8.5 64 bit
Hardware: Asus Zenbook UX303UA
Targeting hardware: Asus PC
answered Sep 26 '16 at 17:20
community wiki
Léo Léopold Hertz 준영
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
add a comment |
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
I extended this wiki answer to a new thread here unix.stackexchange.com/q/312488/16920 because the case is different in Windows 10 at least in parameter values.
– Léo Léopold Hertz 준영
Sep 26 '16 at 18:05
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f283446%2fhow-to-create-bootable-windows-8-iso-image-in-linux%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
wine
is not for 'running' iso images. Tryqemu-kvm
,xen
orvirtualbox
– Serge
May 17 '16 at 2:22
the 'oscdimg' is a cmd tool from Microsoft, runing in windows, but can not run in linux use wine(wine oscdimg). msdn.microsoft.com/zh-cn/windows/hardware/commercialize/…
– user170602
May 17 '16 at 2:31
sorry for misunderstanding.
– Serge
May 17 '16 at 2:34
take a look at this blog: rwmj.wordpress.com/2010/11/04/…
– Serge
May 17 '16 at 2:44
1
Thanks for your help, I resolve the problem finally. In the blog, use 'dd' method to get the boot.img, and use this boot.img as the boot file to create new image. Actually, the boot.img is same as the file in boot/etfsboot.com file in the iso. So, both two command below could create correct window bootable iso. "mkisofs -o ../windows2008_test.iso -b boot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ." and "mkisofs -o ../windows2008_hw.iso -b boot/etfsboot.img -no-emul-boot -boot-load-size 8 -iso-level 2 -udf -J -l -D -N -relaxed-filenames ."
– user170602
May 17 '16 at 8:12