avatar
m*g
2
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!
avatar
m*g
4
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!

avatar
j*o
5
这是北朝鲜的歌曲,回忆故乡的家。回忆家乡风景和母亲的。
avatar
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

avatar
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?

【在 A**********e 的大作中提到】
: ...
: ...
: 有 bootable 的 .iso 文件么?
:
: want

avatar
w*e
8
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.
avatar
Z*e
9
yeah, like those Ubuntu installation disc images

【在 A**********e 的大作中提到】
: ...
: ...
: 有 bootable 的 .iso 文件么?
:
: want

avatar
f*k
10
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.
avatar
A*e
11
孤陋了,呵呵。
直接可以从 ISO boot 么?啥原理?

【在 Z****e 的大作中提到】
: yeah, like those Ubuntu installation disc images
avatar
A*e
13
bootable CD 我知道,把 bootable CD 照成 .iso 再照回 CD 还能保持 bootable 我也
知道,把这种 .iso 文件 mount 了之后可以用于 virtual machine 我也知道。但是我
没听说过 .iso 可以直接 boot 机器的 -- 这个要 boot loader 的支持吧?现在有支持
这个的么?其实是个挺好的主意。

【在 Z****e 的大作中提到】
: never looked into the technical details, but here's the wiki article:
: http://en.wikipedia.org/wiki/El_Torito_(CD-ROM_standard)

avatar
j*a
14
isolinux
grub2 not sure

我也
支持

【在 A**********e 的大作中提到】
: bootable CD 我知道,把 bootable CD 照成 .iso 再照回 CD 还能保持 bootable 我也
: 知道,把这种 .iso 文件 mount 了之后可以用于 virtual machine 我也知道。但是我
: 没听说过 .iso 可以直接 boot 机器的 -- 这个要 boot loader 的支持吧?现在有支持
: 这个的么?其实是个挺好的主意。

avatar
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.

avatar
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.

avatar
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.

avatar
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.

avatar
m*g
19
现在手边没有dvd盘,只是在ubuntu里存在一个自己建的目录含有原vista安装盘的所有文件...for
dd这个命令, if=input file,如果if后面用一个folder名,是不是就无法把这个
folder里的所有文件生成一个iso文件呢?

【在 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.

avatar
w*e
20

有文件...for
应该是。dd works on individual file.
http://thepiratebay.org/search/%5C%22windows%20vista%5C%22/0/99/300

【在 m**********g 的大作中提到】
: 现在手边没有dvd盘,只是在ubuntu里存在一个自己建的目录含有原vista安装盘的所有文件...for
: dd这个命令, if=input file,如果if后面用一个folder名,是不是就无法把这个
: folder里的所有文件生成一个iso文件呢?

avatar
D*s
21
Some can. google grub4dos

【在 A**********e 的大作中提到】
: 孤陋了,呵呵。
: 直接可以从 ISO boot 么?啥原理?

avatar
D*s
22
But not for all ISOs.
at least dsl/knoppix/ubuntu live/gentoo live are ok

【在 D*********s 的大作中提到】
: Some can. google grub4dos
avatar
A*e
23
赞,呵呵。

【在 D*********s 的大作中提到】
: But not for all ISOs.
: at least dsl/knoppix/ubuntu live/gentoo live are ok

avatar
m*g
24
ah, to download another iso is really a nice workaround...but, 真的在linux下
自己用命令或工具的方式制作一个bootable的iso就是mission impossible?

【在 w********e 的大作中提到】
:
: 有文件...for
: 应该是。dd works on individual file.
: http://thepiratebay.org/search/%5C%22windows%20vista%5C%22/0/99/300

avatar
p*s
25
boot 区是特殊格式,不是一般文件。如果你只把vista DVD里的文件拷贝到一个目录下
,dvd boot
区里的东西并没有拷下来。当然也就不能还原成bootable 的iso

linux下

【在 m**********g 的大作中提到】
: ah, to download another iso is really a nice workaround...but, 真的在linux下
: 自己用命令或工具的方式制作一个bootable的iso就是mission impossible?

avatar
m*g
26
可是我原来在vista环境下,我是可以双击我USB移动硬盘里的vista setup folder里的
setup.exe文件直接重新安装vista os的(比如,安装时可以选择崭新安装,原来vista os
的windows就变成了windows.old文件夹,新的os装好后可以删掉旧的os)。这种安装方式又该如何解释呢?难道说vista可以不需要boot区而直接当作一个文件来安装,在vista环境里? 但是在linux环境中就不能以此类推了?

【在 p*****s 的大作中提到】
: boot 区是特殊格式,不是一般文件。如果你只把vista DVD里的文件拷贝到一个目录下
: ,dvd boot
: 区里的东西并没有拷下来。当然也就不能还原成bootable 的iso
:
: linux下

avatar
D*s
28
可安装和可启动完全不是一个概念。

vista os
方式又该如何解释呢?难道说vista可以不需要boot区而直接当作一个文件来安装,在
vista环境里? 但是在linux环境中就不能以此类推了?
录下

【在 m**********g 的大作中提到】
: 可是我原来在vista环境下,我是可以双击我USB移动硬盘里的vista setup folder里的
: setup.exe文件直接重新安装vista os的(比如,安装时可以选择崭新安装,原来vista os
: 的windows就变成了windows.old文件夹,新的os装好后可以删掉旧的os)。这种安装方式又该如何解释呢?难道说vista可以不需要boot区而直接当作一个文件来安装,在vista环境里? 但是在linux环境中就不能以此类推了?

avatar
A*e
30
晕倒。那个不是 boot 啊,同学。

vista os
方式又该如何解释呢?难道说vista可以不需要boot区而直接当作一个文件来安装,在
vista环境里? 但是在linux环境中就不能以此类推了?
录下

【在 m**********g 的大作中提到】
: 可是我原来在vista环境下,我是可以双击我USB移动硬盘里的vista setup folder里的
: setup.exe文件直接重新安装vista os的(比如,安装时可以选择崭新安装,原来vista os
: 的windows就变成了windows.old文件夹,新的os装好后可以删掉旧的os)。这种安装方式又该如何解释呢?难道说vista可以不需要boot区而直接当作一个文件来安装,在vista环境里? 但是在linux环境中就不能以此类推了?

avatar
f*k
31
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. :-))
avatar
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

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。