当前位置: 技术问答>linux和unix
LINUX下访问移动硬盘问题
来源: 互联网 发布时间:2016-05-31
本文导语: RedHat5.5 即使fdisk后重新mount,还是挂载不成功 fdisk: [root@localhost ~]# fdisk -l Disk /dev/sda: 320.0 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start ...
RedHat5.5
即使fdisk后重新mount,还是挂载不成功
fdisk:
[root@localhost ~]# fdisk -l
Disk /dev/sda: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 38913 312464250 8e Linux LVM
This disk has both DOS and BSD magic.
Give the 'b' command to go to BSD mode.
Disk /dev/sdb: 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/sdb1 * 1 13 104391 83 Linux
/dev/sdb2 14 9729 78043770 8e Linux LVM
mount:
[root@localhost ~]# mount -t ext2 /dev/sdb /mnt/usb
mount: /dev/sdb already mounted or /mnt/usb busy
|
楼主应该挂载分区而不是硬盘
/dev/sdb代表硬盘,从你的fdisk -l来看你已经将你的硬盘分了两个区(/dev/sdb1,/dev/sdb2),
你要是想查看硬盘的内容,应该把分区挂载而不是挂载硬盘.
/dev/sdb代表硬盘,从你的fdisk -l来看你已经将你的硬盘分了两个区(/dev/sdb1,/dev/sdb2),
你要是想查看硬盘的内容,应该把分区挂载而不是挂载硬盘.
|
移动硬盘有分区的话,挂载主节点一般是挂不上去的,应该挂载它的分区设备号,也就是子设备号。在mount的时候最好先指定文件系统的类型,比如mount -t vfat /dev/sda1 /mnt/usb1。或者你参考一下我写在博客里的关于移动硬盘自动挂载的文章。