码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-26 19:43:43      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:parted 8t

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

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

查看现在分区

[root@mytest ]# 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)

[root@mytest /]# 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开始)。





  

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

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

标签:parted 8t

原文地址:http://cainiaibage.blog.51cto.com/5307589/1968901

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!