Linux系统无法识别移动硬盘的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系统无法识别移动硬盘的问题相关的知识,希望对你有一定的参考价值。
参考技术A 系统:Centos 7.5问题:NTFS分区的移动硬盘无法自动挂载,插入移动硬盘,Linux系统没反应。
ls /dev/sd* 和sudo fdisk -l 命令查询,发现插入和拔出硬盘没有多出存储点。所以鉴定结果:
不是mount或unmount可以解决的问题。
安装ntfs-3g之后,ls /dev/sd* 和sudo fdisk -l 发现增加的存储空间。
解决方案:
关键程序:ntfs-3g
安装
结果无法找到安装包
安装成功。
虚拟机新增硬盘,如何让Linux系统识别到?
虚拟机新增硬盘,如何让Linux系统识别到?
下面来说说两种方式,让Linux系统识别到新增硬盘:
1、重启系统(不用动脑就搞定)
有人说,我比较懒,不想动脑,那么这种方法(重启系统,一切搞定)很适合你。
那么,万一要是此Linux系统有业务正在运行,而又不能重启呢?咋办,这时就要动手+动脑了。
出绝招了,请看下面方法。
2、执行命令,重新scan设备
#先cd到/sys/class/scsi_host/目录
[[email protected] /]# cd /sys/class/scsi_host/
#我们来看看scsi_host目录有啥东西呢,这里有三个子目录哦
[[email protected] scsi_host]# ls host0 host1 host2
#执行如下命令
[[email protected] scsi_host]# echo "- - -" > host0/scan 注意:“- - -”这三个“-”中间有空格滴。
#用fdisk命令来查看下吧
[[email protected] scsi_host]# fdisk -l
#如果还是没有识别到,别着急,go on;
[[email protected] scsi_host]# echo "- - -" > host1/scan [[email protected] scsi_host]# echo "- - -" > host2/scan#我们再分别执行下上面host1和host2的命令,再fdisk下吧!
[[email protected] scsi_host]# fdisk -l Disk /dev/sda: 171.8 GB, 171798691840 bytes 255 heads, 63 sectors/track, 20886 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x000d1499 Device Boot Start End Blocks Id System /dev/sda1 * 1 26 204800 83 Linux Partition 1 does not end on cylinder boundary. /dev/sda2 26 281 2048000 82 Linux swap / Solaris Partition 2 does not end on cylinder boundary. /dev/sda3 281 20887 165518336 83 Linux Disk /dev/sdb: 64.4 GB, 64424509440 bytes 255 heads, 63 sectors/track, 7832 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000#到这里我们可以看到除了Disk /dev/sda: 171.8 GB,还出现了一个Disk /dev/sdb: 64.4 GB。这样就OK了,开始在新磁盘上该干嘛就干嘛吧。
本文出自 “ilinux” 博客,请务必保留此出处http://shenzhijin.blog.51cto.com/1741240/1863941
以上是关于Linux系统无法识别移动硬盘的问题的主要内容,如果未能解决你的问题,请参考以下文章