In Linux, I have a folder named A containing some files in it. Now I want to make an iso file named A.iso which also contains the same files and should be bootable. How to achieve this goal? Thanks a lot!
I used this: mkisofs -r -o file.iso /location_of_folder/ But it's not bootable. How to make the iso file bootable?
to should
【在 m**********g 的大作中提到】 : In Linux, I have a folder named A containing some files in it. Now I want to : make an iso file named A.iso which also contains the same files and should : be bootable. How to achieve this goal? Thanks a lot!
j*o
5 楼
这是北朝鲜的歌曲,回忆故乡的家。回忆家乡风景和母亲的。
A*e
6 楼
... ... 有 bootable 的 .iso 文件么?
want
【在 m**********g 的大作中提到】 : I used this: : mkisofs -r -o file.iso /location_of_folder/ : But it's not bootable. How to make the iso file bootable? : : to : should
m*g
7 楼
I installed VirtualBox in Ubuntu, copied Vista setup folder into Ubuntu. I used that command to make Vista setup folder into an iso file in Ubuntu. But when I wanted to install vista.iso in VirtualBox, an error said: FATAL: No bootable medium found! System halted. That's why I thought the iso file I made is not bootable. Any hints?
Where did you get the "vista setup folder" from? From the vista dvd? If yes, why didn't you make an iso file directly from the dvd? That way you shouldn't have problem booting from the iso file in virtualbox.
try this? cd root/of/your/files mkisofs -b boot.img -no-emul-boot -boot-load-seg 1984 -boot-load-size 4 -iso -level 2 -J -joliet-long -l -D -relaxed-filenames -N -V NRMSVOL_EN -v -x .DS _Store -o ../vista.iso You would need the boot.img and other vista files ready.
A*e
11 楼
孤陋了,呵呵。 直接可以从 ISO boot 么?啥原理?
【在 Z****e 的大作中提到】 : yeah, like those Ubuntu installation disc images
【在 A**********e 的大作中提到】 : bootable CD 我知道,把 bootable CD 照成 .iso 再照回 CD 还能保持 bootable 我也 : 知道,把这种 .iso 文件 mount 了之后可以用于 virtual machine 我也知道。但是我 : 没听说过 .iso 可以直接 boot 机器的 -- 这个要 boot loader 的支持吧?现在有支持 : 这个的么?其实是个挺好的主意。
m*g
15 楼
The content in the vista setup folder is from a bootable vista dvd fully. But now I don't use dvd any more, instead I save the content in a portable harddisk and I also copy the content into ubuntu. That's why I want to make an iso bootable file from the content in the vista setup folder.
【在 w********e 的大作中提到】 : Where did you get the "vista setup folder" from? From the vista dvd? If : yes, why didn't you make an iso file directly from the dvd? That way you : shouldn't have problem booting from the iso file in virtualbox.
m*g
16 楼
Is the file boot.img already in the vista setup folder? Or should I make it myself?
iso DS
【在 f**k 的大作中提到】 : try this? : cd root/of/your/files : mkisofs -b boot.img -no-emul-boot -boot-load-seg 1984 -boot-load-size 4 -iso : -level 2 -J -joliet-long -l -D -relaxed-filenames -N -V NRMSVOL_EN -v -x .DS : _Store -o ../vista.iso : You would need the boot.img and other vista files ready.
m*g
17 楼
tried, got this: Warning: creating filesystem that does not conform to ISO-9660. Warning: creating filesystem with Joliet extensions but without Rock Ridge extensions. It is highly recommended to add Rock Ridge. I: -input-charset not specified, using utf-8 (detected in locale settings) genisoimage 1.1.9 (Linux) genisoimage: Missing pathspec. Usage: genisoimage [options] -o file directory ... Use genisoimage -help to get a list of valid options. Report problems to d***********[email protected]
【在 f**k 的大作中提到】 : try this? : cd root/of/your/files : mkisofs -b boot.img -no-emul-boot -boot-load-seg 1984 -boot-load-size 4 -iso : -level 2 -J -joliet-long -l -D -relaxed-filenames -N -V NRMSVOL_EN -v -x .DS : _Store -o ../vista.iso : You would need the boot.img and other vista files ready.
w*e
18 楼
make Are you trying to challenge yourself? :-) Why can't you just create an iso file off the vista dvd? It is very easy, at least on unix -- dd if=/dev/hda of=/tmp/vista.iso That is bootable.
【在 m**********g 的大作中提到】 : The content in the vista setup folder is from a bootable vista dvd fully. : But now I don't use dvd any more, instead I save the content in a portable : harddisk and I also copy the content into ubuntu. That's why I want to make : an iso bootable file from the content in the vista setup folder.
【在 w********e 的大作中提到】 : : make : Are you trying to challenge yourself? :-) : Why can't you just create an iso file off the vista dvd? It is very easy, : at least on unix -- dd if=/dev/hda of=/tmp/vista.iso That is bootable.
I used nlite in Windows. worked flawlessly. Yes I am sure it can solve LZ' s need as long as LZ has another computer with Windows installed. But LZ's question is how to do the same thing in linux. :-))
f*k
32 楼
I haven't tried this mkisofs command myself. :-( Apparently you need to modify the options and file paths, and get a boot.img . If you can't make it work, forget it.
it
【在 m**********g 的大作中提到】 : Is the file boot.img already in the vista setup folder? Or should I make it : myself? : : iso : DS