|
发表于 2006-10-13 10:15:37
|
显示全部楼层
官方是这样说的:Q: How do I install from the ISO9660 image if I don't have a CD-R or CD-RW drive (or "I have no way to burn this image that I just downloaded.")?
With loopback of course! You can mount the ISO9660 image on the kernel loopback device from another filesystem.
For example, say you download the ISO9660 image under Windows. Boot the Slackware boot and root disks for your system. Assuming your Windows partition is /dev/hda1 and you downloaded the ISO9660 image to C:, issue these commands:
mkdir -p /dos
mount -t vfat /dev/hda1 /dos
cd /dos
mknod /dev/loop0 b 7 0
mkdir /INSTALL
mount -o loop /dos/install.iso /INSTALL
You can then tell the Slackware setup program to install from a premounted directory and pass it /INSTALL/slakware. This trick can also be used if you cannot make a valid CD with your burner.
Have fun!
我的疑问:
1.如果有多个ISO镜像,应该怎么做?
2.那个例子里,明明挂载到/INSTALL, 为什么安装时指定目录是/INSTALL/slakware?
p.s : 我用类似的方式做了一下,没有成功。 |
|