我想挂载/ dev / sda2。 我该怎么做?
贝娄是fdisk,df,lvmdiskscan,lvdisplay,vgdisplay,lvscan的输出。
[root@IctThtSoluti-06 ~]# fdisk -l Disk /dev/sda: 1030.8 GB, 1030792151040 bytes 255 heads, 63 sectors/track, 125320 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: 0x00034e05 Device Boot Start End Blocks Id System /dev/sda1 * 1 64 512000 83 Linux Partition 1 does not end on cylinder boundary. /dev/sda2 64 1306 9972736 8e Linux LVM Disk /dev/mapper/vg_centos6264bit-lv_root: 8095 MB, 8095006720 bytes 255 heads, 63 sectors/track, 984 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/mapper/vg_centos6264bit-lv_swap: 2113 MB, 2113929216 bytes 255 heads, 63 sectors/track, 257 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 [root@IctThtSoluti-06 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg_centos6264bit-lv_root 7.3G 988M 6.0G 14% / tmpfs 3.9G 0 3.9G 0% /dev/shm /dev/sda1 477M 64M 389M 15% /boot [root@IctThtSoluti-06 ~]# lvmdiskscan /dev/ram0 [ 16.00 MiB] /dev/root [ 7.54 GiB] /dev/ram1 [ 16.00 MiB] /dev/sda1 [ 500.00 MiB] /dev/vg_centos6264bit/lv_swap [ 1.97 GiB] /dev/ram2 [ 16.00 MiB] /dev/sda2 [ 9.51 GiB] LVM physical volume /dev/ram3 [ 16.00 MiB] /dev/ram4 [ 16.00 MiB] /dev/ram5 [ 16.00 MiB] /dev/ram6 [ 16.00 MiB] /dev/ram7 [ 16.00 MiB] /dev/ram8 [ 16.00 MiB] /dev/ram9 [ 16.00 MiB] /dev/ram10 [ 16.00 MiB] /dev/ram11 [ 16.00 MiB] /dev/ram12 [ 16.00 MiB] /dev/ram13 [ 16.00 MiB] /dev/ram14 [ 16.00 MiB] /dev/ram15 [ 16.00 MiB] 2 disks 17 partitions 0 LVM physical volume whole disks 1 LVM physical volume [root@IctThtSoluti-06 ~]# lvdisplay --- Logical volume --- LV Path /dev/vg_centos6264bit/lv_root LV Name lv_root VG Name vg_centos6264bit LV UUID GuVsuq-Q0II-gcjX-6Pdp-7azY-FPub-25YWYR LV Write Access read/write LV Creation host, time , LV Status available # open 1 LV Size 7.54 GiB Current LE 1930 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 253:0 --- Logical volume --- LV Path /dev/vg_centos6264bit/lv_swap LV Name lv_swap VG Name vg_centos6264bit LV UUID Ukf2if-IlyB-95nM-8Gdq-XXI8-PcKT-fddsqR LV Write Access read/write LV Creation host, time , LV Status available # open 1 LV Size 1.97 GiB Current LE 504 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 253:1 [root@IctThtSoluti-06 ~]# vgdisplay --- Volume group --- VG Name vg_centos6264bit System ID Format lvm2 Metadata Areas 1 Metadata Sequence No 3 VG Access read/write VG Status resizable MAX LV 0 Cur LV 2 Open LV 2 Max PV 0 Cur PV 1 Act PV 1 VG Size 9.51 GiB PE Size 4.00 MiB Total PE 2434 Alloc PE / Size 2434 / 9.51 GiB Free PE / Size 0 / 0 VG UUID gG9yNW-Jq57-pFkY-oydY-5R4h-oHS0-W7QoWO [root@IctThtSoluti-06 ~]# lvscan ACTIVE '/dev/vg_centos6264bit/lv_root' [7.54 GiB] inherit ACTIVE '/dev/vg_centos6264bit/lv_swap' [1.97 GiB] inherit
你不能直接挂载/dev/sda2 。 它由逻辑卷pipe理器使用,现有的逻辑卷已经挂载。
扩大评论:
目前,您只有10GB的1TB分区。
为了扩展你的根卷,你有两种可能性:
之后,增加了卷组的大小,可以扩展逻辑卷和文件系统的大小。
你想要做什么基本上是你的select,但请记住,你不能在磁盘上创build无限数量的分区。
我不会描述这些程序,因为我不是这方面的专家,这两种可能性已经被比我更适合的人详细描述了。 这个教程很容易在互联网上find。
1)创build新的物理分区/ dev / sda3(并在其上设置lvm标志)。 做这个parted
mkpart primary 0% 100% set 3 lvm on q
2)扩展现有卷组以包含新的/ dev / sda3分区
VG_NAME=`vgdisplay | grep "VG Name" | awk '{print $3}'` vgextend $VG_NAME /dev/sda3
3)创build逻辑卷(用GigaBytesreplacex的大小)
LV_NAME=/dev/vg_centos6264bit/lv_data lvcreate -L xG -n $LV_NAME $VG_NAME
4)在逻辑卷上创build文件系统
mkfs.ext4 $LV_NAME
5)挂载逻辑卷
mkdir /data mount $LV_NAME /data