首先查看系统分区情况,主要是看usb盘是否被系统认出,一般被认为sda*(即scsi盘)
使用命令 #cat /proc/partitions
[root@localhost ~]# cat /proc/partitions
major minor #blocks name
3 0 78150744 hda
3 1 48163 hda1
3 2 10482412 hda2
3 3 1 hda3
3 5 10482381 hda5
3 6 20980858 hda6
3 7 25671838 hda7
3 8 8385898 hda8
3 9 2096451 hda9
8 0 122624 sda
8 1 122608 sda1
或者使用命令 #fdisk -l
[root@localhost /]# fdisk -l
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 1 6 48163+ de Dell Utility
/dev/hda2 * 7 1311 10482412+ 7 HPFS/NTFS
/dev/hda3 1312 9729 67617585 f W95 Ext'd (LBA)
/dev/hda5 1312 2616 10482381 7 HPFS/NTFS
/dev/hda6 2617 5228 20980858+ 7 HPFS/NTFS
/dev/hda7 6534 9729 25671838+ b W95 FAT32
/dev/hda8 5229 6272 8385898+ 83 Linux
/dev/hda9 6273 6533 2096451 82 Linux swap
Partition table entries are not in disk order
Disk /dev/sda: 125 MB, 125566976 bytes
16 heads, 32 sectors/track, 479 cylinders
Units = cylinders of 512 * 512 = 262144 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 479 122608 b W95 FAT32
在这里找到了打算挂载的USB盘,路径为/dev/sda1。在根下为它建立一个目录:
[root@localhost /]# mkdir mtusb
[root@localhost /]# dir
bin etc lib misc mtusb opt sbin sys usr
boot home lost+found mnt mtusb2 proc selinux tftpboot var
dev initrd media mt1 mycomputer root srv tmp
挂载USB盘到这个目录:
[root@localhost /]# mount /dev/sda /mtusb
不需要它的时候,可以再卸载它:
[root@localhost /]# umount mtusb2
挂载硬盘分区的方法与之相同。但是Red Flag Linux不支持NTFS格式的分区,只支持FAT格式。没有写入系统文件的话每次重新启动都需要重复挂载。
浙公网安备 33010602011771号