虛擬機硬盤空間不夠了,作了lvm準備加塊硬盤擴容,在vcenter控制檯加了磁盤,結果操做系統裏面fdisk -l看不到新加的硬盤,又不想重啓怎麼辦,一條命令就能夠搞定。
# 注意中間有空格
echo "- - -" > /sys/class/scsi_host/host0/scan
[root@web03_back:/data]# fdisk -l
Disk /dev/sda: 536.9 GB, 536870912000 bytes
255 heads, 63 sectors/track, 65270 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: 0x000387ab
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 1046 8192000 82 Linux swap / Solaris
/dev/sda3 1046 65271 515890176 83 Linux
[root@web03_back:/data]# echo "- - -" > /sys/class/scsi_host/host
host0/ host1/ host2/
[root@web03_back:/data]# echo "- - -" > /sys/class/scsi_host/host0/scan
[root@web03_back:/data]# echo "- - -" > /sys/class/scsi_host/host1/scan
[root@web03_back:/data]# echo "- - -" > /sys/class/scsi_host/host2/scan
[root@web03_back:/data]# fdisk -l
Disk /dev/sda: 536.9 GB, 536870912000 bytes
255 heads, 63 sectors/track, 65270 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: 0x000387ab
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 1046 8192000 82 Linux swap / Solaris
/dev/sda3 1046 65271 515890176 83 Linux
Disk /dev/sdb: 214.7 GB, 214748364800 bytes
255 heads, 63 sectors/track, 26108 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
再用fdisk -l就看到了
固然是host0仍是host1,…,具體應該跟加硬盤時選擇的掛載點有關係,不清楚就逐個試一遍好了web