菜鸟学习---虚拟机添硬盘分区并挂载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了菜鸟学习---虚拟机添硬盘分区并挂载相关的知识,希望对你有一定的参考价值。

最近学习分区的时候,请教了一个朋友,相对于他,我是要膜拜的,他提到了说现在在实操操作中,很少会在一块硬盘上分很多个区,现在实际生产中都是以“T”开头的,所以说我可以学习一下parted进行分区(parted分区默认为G),然后在网上看了一些文档,然后结合自己的系统进行分区挂载等操作。

首先虚拟机上新添加了一个8T的硬盘,添加完成后重新启动一下虚拟机,

查看现在分区

[[email protected] ]# fdisk -l
Disk /dev/sda: 64.4 GB, 64424509440 bytes
255 heads, 63 sectors/track, 7832 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 /dev/sdb: 8589.9 GB, 8589934592000 bytes
255 heads, 63 sectors/track, 1044333 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/sdb: 8589.9 GB  显示我现在新添加的硬盘为8T

我现在要把这8T的硬盘进行分区 

#对/dev/sdb进行分区(8T)

[[email protected] /]# parted /dev/sdb
GNU Parted 2.1
Using /dev/sdb
Welcome to GNU Parted! Type ‘help‘ to view a list of commands

#因为新挂的硬盘,类似于windows下分区,转换为gpt格式

#关于MBR格式和GPT格式的优缺点可以自己百度。

(parted) mklabel gpt

# 划分一个200G的主分区                                                

(parted) mkpart primary ext4
Start? 1                                                                  
End? 200

# 划分第二分区                                                        

(parted) mkpart                                                           
Partition name?  []?   #分区名称,可以直接回车                                                   
File system type?  [ext2]? #分区格式可以设置,默认是ext2,现在可以直接回车,一会要格式化                                               
Start? 201                                                                
End? 7700                                                                   
Warning: You requested a partition from 201MB to 7700GB.                  
The closest location we can manage is 200GB to 7700GB.
Is this still acceptable to you?  #是否确定这样分区
Yes/No? y   #确认                                                               
#划分第三个分区
(parted) mkpart                                                           
Partition name?  []?                                                      
File system type?  [ext2]?                                                
Start? 8001
End? 8589.9                                                               
Warning: You requested a partition from 8001MB to 8590MB.                 
The closest location we can manage is 8000GB to 8000GB.
Is this still acceptable to you?
Yes/No? y                                                                 
Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel? i                                                          
#显示/dev/sdb下划分的分区
(parted) p                                                                
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 8590GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number  Start   End     Size    File system  Name     Flags
 1      1049kB  200GB   200GB                primary
 2      200GB   8000GB  7800GB
 3      8000GB  8000GB  512B

#大家从上面可以看到我第三个分区是错识的,因为我第三个分区是从8t的位置开始,然后8t的位置结束,

 所以就会出现第三个分区的大小为512b,所以就有下面的操作(第二块分区的结束位置是7800,那么第三块应该是从7801开始)。





  

本文出自 “菜鸟八哥” 博客,转载请与作者联系!

以上是关于菜鸟学习---虚拟机添硬盘分区并挂载的主要内容,如果未能解决你的问题,请参考以下文章

虚拟机挂载新虚拟硬盘步骤

Ubuntu分区方案(菜鸟方案常用方案和进阶方案)

实验:新增硬盘MBR分区制作文件系统并挂载使用

Linux如何创建并挂载虚拟磁盘

vmware中ubuntu系统扩展磁盘

大数据开发工程师基本功修炼之Linux学习笔记