你按E可以进入一行编辑
你会看到
root(hd0,0)
kernel......
initrd......
等等
那个hd0,0就表示你进的是哪一个盘的系统
第一个0就表示第一个硬盘
第二个0就表示硬盘上的第一个分区
你直接把第二块硬盘加在机箱里
进入第一个硬盘的系统后,可以直接挂载
mount
-t
ext3
/dev/hdb1
/mnt
(/hdb1表示第2块硬盘的第一个分区
/mnt可以是你根下的任一文件夹)
或者进入/etc/fstab
添加一行
/dev/hdb1
/mnt
ext3
defoult
0
0
如果有多的分区的话
以此类推
有多种方式查看linux服务器上有几块磁盘方法1:
[root@localhost xly]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sr0 11:01 1024M 0 rom
sda 8:00 40G 0 disk
├─sda1 8:10 300M 0 part /boot
├─sda2 8:20 17.8G 0 part /
└─sda3 8:302G 0 part [SWAP]
sdb 8:16 0 20G 0 disk /opt
可知系统有sda和sdb两块磁盘
方法2:
[root@localhost xly]# fdisk -l
Disk /dev/sda: 42.9 GB, 42949672960 bytes
255 heads, 63 sectors/track, 5221 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: 0x00041bdd
Device Boot Start End Blocks Id System
/dev/sda1 * 1 39 307200 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 39235818631680 83 Linux
/dev/sda323582611 2031616 82 Linux swap / Solaris
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 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
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)