Centos磁盘挂载

虚拟机添加磁盘

  • 在外部添加上磁盘后,开启虚拟机
  • fdisk -l 查看虚拟机上的磁盘
磁盘 /dev/sdb:53.7 GB, 53687091200 字节,104857600 个扇区                     
Units = 扇区 of 1 * 512 = 512 bytes                                     
扇区大小(逻辑/物理):512 字节 / 512 字节                                           
I/O 大小(最小/最佳):512 字节 / 512 字节                                         
                                                                      
                                                                      
磁盘 /dev/sda:214.7 GB, 214748364800 字节,419430400 个扇区                   
Units = 扇区 of 1 * 512 = 512 bytes                                     
扇区大小(逻辑/物理):512 字节 / 512 字节                                           
I/O 大小(最小/最佳):512 字节 / 512 字节                                         
磁盘标签类型:dos                                                            
磁盘标识符:0x000811e0                                                      
                                                                      
   设备 Boot      Start         End      Blocks   Id  System            
/dev/sda1   *        2048     2099199     1048576   83  Linux         
/dev/sda2         2099200   419430399   208665600   8e  Linux LVM     
                                                                      
磁盘 /dev/mapper/cl-root:53.7 GB, 53687091200 字节,104857600 个扇区          
Units = 扇区 of 1 * 512 = 512 bytes                                     
扇区大小(逻辑/物理):512 字节 / 512 字节                                           
I/O 大小(最小/最佳):512 字节 / 512 字节                                         
                                                                      
                                                                      
磁盘 /dev/mapper/cl-swap:2147 MB, 2147483648 字节,4194304 个扇区             
Units = 扇区 of 1 * 512 = 512 bytes                                     
扇区大小(逻辑/物理):512 字节 / 512 字节                                           
I/O 大小(最小/最佳):512 字节 / 512 字节                                         
                                                                      
                                                                      
磁盘 /dev/mapper/cl-home:157.8 GB, 157831659520 字节,308264960 个扇区        
Units = 扇区 of 1 * 512 = 512 bytes                                     
扇区大小(逻辑/物理):512 字节 / 512 字节                                           
I/O 大小(最小/最佳):512 字节 / 512 字节                                      
  • 添加的/dev/sdb并没又分区
  • 对/dev/sdb进行分区,fdisk /dev/sdb进入页面,按N开始分区。
  • 如果不进行什么操作,默认即可(回车)
[root@dsgcd4137 ~]# fdisk /dev/sdb
欢迎使用 fdisk (util-linux 2.23.2)。

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

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

命令(输入 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-104857599,默认为 2048):
将使用默认值 2048
Last 扇区, +扇区 or +size{K,M,G} (2048-104857599,默认为 104857599):
将使用默认值 104857599
分区 1 已设置为 Linux 类型,大小设为 50 GiB

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

Calling ioctl() to re-read partition table.
正在同步磁盘。
[root@dsgcd4137 ~]# 
  • 对分区进行格式化,mkfs -t ext4 -c /dev/sdb1
[root@dsgcd4137 ~]# mkfs -t ext4 -c /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)
文件系统标签=
OS type: Linux
块大小=4096 (log=2)
分块大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
3276800 inodes, 13106944 blocks
655347 blocks (5.00%) reserved for the super user
第一个数据块=0
Maximum filesystem blocks=2162163712
400 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

Checking for bad blocks (read-only test): done
Allocating group tables: 完成
正在写入inode表: 完成
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成

[root@dsgcd4137 ~]#
  • 挂载磁盘,mount /dev/sdb1 /var/lib/docker
  • 设置开机自动挂在磁盘,在/etc/fstab文件末尾添加如下内容:
/dev/sdb1  /var/lib/docker ext4 defaults  0  0
/dev/sdc1(磁盘分区)  /disk/disktwo(挂载目录) ext3(文件格式)defaults  0  0

你可能感兴趣的:(Centos磁盘挂载)