大老二 发表于 2005-2-3 00:22:14

请问如何将livecd安装到我的硬盘上面?

我用的是虚拟机运行livecd,但是现在发现有诸多不便,请问如何安装到硬盘?

flycity 发表于 2005-2-3 11:57:47

Livecd?要装到硬盘上?不可能吧?

去弄个FC3来装到硬盘上吧

gucuiwen 发表于 2005-2-3 12:55:09

#mount /dev/cdrom /mnt/cdrom
#mount /dev/hda2 /mnt/disk
#cp -R /mnt/cdrom/* /mnt/disk/

s

gucuiwen 发表于 2005-2-3 13:01:42


#mount /dev/cdrom /mnt/cdrom
#mount /dev/hda2 /mnt/disk
#cp -R /mnt/cdrom/* /mnt/disk/


最后安装引导程序,让他可以启动.
grub只要修改配置文件
LILO修改配置文件后重新安装一下.

test2002 发表于 2005-2-4 11:28:19

最后安装引导程序,如何做?

gucuiwen 发表于 2005-2-4 12:15:25

最后安装引导程序,如何做?

如何在引导菜单中添加一个新系统的文章有很多.

LILO:


prompt
timeout=50
default=linux
boot=/dev/hdc
map=/boot/map
install=/boot/boot.b
message=/boot/message
lba32
                                                                              
image=/boot/vmlinuz-2.4.20-8
      label=linux
      initrd=/boot/initrd-2.4.20-8.img
      read-only
      root=/dev/hdc2
      vga=788
                                                                              [color=red]
image=/mnt/disk/boot/kernel-of-livecd
      label=livecd
      initrd=/mnt/disk/boot/initrd-of-livecd
      read-only
      root=/dev/hdxx
      vga=788
                                                                              [/color]
other=/dev/hdc3
      optional
      label=FreeBSD
                                                                              


GRUB:


default=0
timeout=10
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
title Red Hat Linux (2.4.20-8)
      root (hd0,1)
      kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/ vga=788
      initrd /boot/initrd-2.4.20-8.img
[color=red]
title livecd
      root (hd0,2)
      kernel /boot/kernel-of-livecd ro root=/dev/hdxx vga=788
      initrd /boot/initrd-of-livecd
[/color]
title DOS
      rootnoverify (hd0,0)
      chainloader +1



以上是范例,具体问题具体解决! 以外还需要修改livecd的fstab 等系统配置文件.

test2002 发表于 2005-2-4 13:04:44

明白了,谢谢。
页: [1]
查看完整版本: 请问如何将livecd安装到我的硬盘上面?