LINUX October 20, 2020

磁盘分区、格式化及挂载

Words count 6.8k Reading time 6 mins. Read count 0

1 通过fdisk -l 查看磁盘情况

fdisk -l

磁盘 /dev/vda:42.9 GB, 42949672960 字节,83886080 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x0008e9bc

   设备 Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048     2099199     1048576   83  Linux
/dev/vda2         2099200    83886079    40893440   83  Linux

磁盘 /dev/vdb:107.4 GB, 107374182400 字节,209715200 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节

由上面信息可以看出,磁盘/dev/vda下面有两个分区分别是/dev/vda1和/dev/vda2。而磁盘/dev/vdb下并没有分区,因此目前该磁盘无法使用,我们需要对它进行分区、格式化、然后挂载。

2 磁盘分区

使用fdisk /dev/vdb 命令进入磁盘管理

欢迎使用 fdisk (util-linux 2.23.2)。

更改将停留在内存中,直到您决定将更改写入磁盘。
使用写入命令前请三思。

Device does not contain a recognized partition table
使用磁盘标识符 0x961bc366 创建新的 DOS 磁盘标签

输入m查看磁盘管理工具的命令帮助

命令(输入 m 获取帮助):m
命令操作
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   g   create a new empty GPT partition table
   G   create an IRIX (SGI) partition table
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

因为我们要对磁盘创建新分区,所以输入n添加新的分区,接下来使用默认配置即可。

命令(输入 m 获取帮助):n
Partition type:
   p   primary (0 primary, 0 extended, 4 free)
   e   extended
Select (default p): 
Using default response p
分区号 (1-4,默认 1):
起始 扇区 (2048-209715199,默认为 2048):
将使用默认值 2048
Last 扇区, +扇区 or +size{K,M,G} (2048-209715199,默认为 209715199):
将使用默认值 209715199
分区 1 已设置为 Linux 类型,大小设为 100 GiB

最后输入w保存退出

命令(输入 m 获取帮助):w
The partition table has been altered!

Calling ioctl() to re-read partition table.
正在同步磁盘。

这时,我们输出fdisk -l查看磁盘情况,发现已经出现新分区了

磁盘 /dev/vda:42.9 GB, 42949672960 字节,83886080 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x0008e9bc

   设备 Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048     2099199     1048576   83  Linux
/dev/vda2         2099200    83886079    40893440   83  Linux

磁盘 /dev/vdb:107.4 GB, 107374182400 字节,209715200 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x961bc366

   设备 Boot      Start         End      Blocks   Id  System
/dev/vdb1            2048   209715199   104856576   83  Linux

3 分区格式化

这里我们需要将分区格式化成ext4格式,使用命令:mkfs.ext4 分区名

[root@cdh-worker-dc-0005 ~]# mkfs.ext4 /dev/vdb1
mke2fs 1.42.9 (28-Dec-2013)
文件系统标签=
OS type: Linux
块大小=4096 (log=2)
分块大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
6553600 inodes, 26214144 blocks
1310707 blocks (5.00%) reserved for the super user
第一个数据块=0
Maximum filesystem blocks=2174746624
800 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
    4096000, 7962624, 11239424, 20480000, 23887872

Allocating group tables: 完成                            
正在写入inode表: 完成                            
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成

4 挂载分区到指定目录

分区格式化完成后,我们需要将分区挂载到指定的目录。

首先创建目录data

mkdir /data

挂载分区 /dev/vdb1到/data目录

mount /dev/vdb1 /data

5 开机自动挂载

查看分区的uuid

blkid /dev/vdb1

修改开机启动文件

/etc/fstab

添加如下内容

/dev/vdb1    /data     ext4    defaults     0         0

扩展LVM分区

http://blog.itpub.net/27633655/viewspace-2117705/

磁盘添加至PV

pvcreate /dev/sdb1

Physical volume "/dev/sdb1" successfully created.

显示卷组信息

vgdisplay

[root@localhost harbor]# vgdisplay
  --- Volume group ---
  VG Name               centos
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  4
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                3
  Open LV               3
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               <59.00 GiB
  PE Size               4.00 MiB
  Total PE              15103
  Alloc PE / Size       15102 / 58.99 GiB
  Free  PE / Size       1 / 4.00 MiB
  VG UUID               rNRCSd-cUtK-71qA-CHH1-r6ru-xbTG-JuXani

扩展VG

vgextend centos /dev/sdb1

  Volume group "centos" successfully extended

扩展lvm容量

lvextend -l +100%FREE /dev/mapper/centos-root

  Size of logical volume centos/root changed from <38.30 GiB (9804 extents) to <98.30 GiB (25164 extents).
  Logical volume centos/root successfully resized.

文件系统扩容

xfs_growfs /dev/mapper/centos-root

# resize2fs 针对文件系统ext2 ext3 ext4
# xfs_growfs 针对文件系统xfs

使用df -T查看文件系统格式

[root@localhost harbor]# df -T
Filesystem              Type     1K-blocks     Used Available Use% Mounted on
devtmpfs                devtmpfs   1928316        0   1928316   0% /dev
tmpfs                   tmpfs      1940324        0   1940324   0% /dev/shm
tmpfs                   tmpfs      1940324     9032   1931292   1% /run
tmpfs                   tmpfs      1940324        0   1940324   0% /sys/fs/cgroup
/dev/mapper/centos-root xfs      103052136 42234712  60817424  41% /
/dev/sda1               xfs        1038336   152632    885704  15% /boot
/dev/mapper/centos-home xfs       19593216 14660852   4932364  75% /home
tmpfs                   tmpfs       388068        0    388068   0% /run/user/0
0%