mmpcfans 发表于 2005-1-9 15:15:31

双硬盘怎么加载???

我用 fc1,,,,,,有两个硬盘...分别为HDA和HDB
LABEL=/               /                     ext3    defaults      1 1
LABEL=/boot             /boot                   ext3    defaults      1 2
none                  /dev/pts                devptsgid=5,mode=6200 0
none                  /proc                   proc    defaults      0 0
none                  /dev/shm                tmpfs   defaults      0 0
/dev/hda3               swap                  swap    defaults      0 0
/dev/cdrom            /mnt/cdrom            udf,iso9660 noauto,owner,kudzu,ro 0 0

我想加载第二个硬盘的e:/怎么加载啊
/dev/hdb6               /                     fat32   defaults      11

mmpcfans 发表于 2005-1-9 15:15:56

# mount /dev/hdb6 on -t fat
mount: mount point on does not exist
# mount /dev/hdb6 on -t fat32
mount: mount point on does not exist
#

潇湘馆主 发表于 2005-1-9 15:21:16

mk /mnt/hdb6

mount -t fat32 /dev/hdb6 /mnt/hdb6

mmpcfans 发表于 2005-1-9 22:34:11

# mk /mnt/hdb6
bash: mk: command not found
# mount -t fat32 /dev/hdb6 /mnt/hdb6
mount: mount point /mnt/hdb6 does not exist
#


还是不行

linky_fan 发表于 2005-1-10 13:33:15


mk /mnt/hdb6

是mkdir /mnt/hdb6 , 这个是用来建立挂载点用的。

mmpcfans 发表于 2005-1-10 21:39:16

谢谢了,,但是还是不可以
# mkdir /mnt/hdb6
# mount -t fat32 /dev/hdb6 /mnt/hdb6
mount: fs type fat32 not supported by kernel
# mkdir /mnt/hdb8
# mount -t fat32 /dev/hdb8 /mnt/hdb8
mount: fs type fat32 not supported by kernel
# mount
/dev/hda2 on / type ext3 (rw)
none on /proc type proc (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
/dev/hda1 on /boot type ext3 (rw)
none on /dev/shm type tmpfs (rw)

潇湘馆主 发表于 2005-1-10 21:41:37

mount: fs type fat32 not supported by kernel

You need to config a kernel,I think.

sutie 发表于 2005-1-10 21:58:54

FC1内核没有fat32的support??

开什么玩笑??看来兄弟你得编译内核了!:-(:-(

linky_fan 发表于 2005-1-13 14:04:14


mount -t fat32 /dev/hdb6 /mnt/hdb6

mount -t vfat /dev/hdb6 /mnt/hdb6
页: [1]
查看完整版本: 双硬盘怎么加载???