@cdmonkey
2020-10-30T11:33:51.000000Z
字数 5822
阅读 1580
命令总结
是另外一款分区软件,相对于fdisk,它的使用更加方便,同时它还提供了动态调整分区大小的功能。下面我来如何通过该工具创建、删除磁盘分区、查看分区表、更改分区大小、创建文件系统以及如何使用它的交互模式。
更为重要的是,传统的fdisk工具不支持创建“GPT”分区,而该分区表格式支持大于2TB分区,而MBR不支持,所以如果要对大于2TB的硬盘进行分区,需要使用该工具。
指令格式:
parted [options] [device [command [options...]...]]
与fdisk指令类似,同样可以使用命令“parted+设备名”进入交互模式。进入交互模式后,同样可以通过各种指令来对硬盘分区进行管理,嗯,似曾相识。
[root@WEB-A1 ~]# parted /dev/sdb
GNU Parted 2.1
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) help
align-check TYPE N
check NUMBER #检查文件系统。
cp [FROM-DEVICE] FROM-NUMBER TO-NUMBER #复制文件系统到另外一个分区。
help [COMMAND]
mklabel,mktable LABEL-TYPE #在分区表中创建一个新的硬盘标签。
mkfs NUMBER FS-TYPE #在分区上创建一个指定类型的文件系统。
mkpart PART-TYPE [FS-TYPE] START END #创建一个分区。
mkpartfs PART-TYPE FS-TYPE START END #创建一个分区,并在分区上创建指定的文件系统。
move NUMBER START END #移动分区。
name NUMBER NAME #以指定的名字命名分区号。
print [devices|free|list,all|NUMBER] #显示分区表、指定的分区或者所有设备。
quit
rescue START END #修复丢失的分区。
resize NUMBER START END #更改分区的大小。
rm NUMBER #删除分区。
select DEVICE #选择需要更改的设备。
set NUMBER FLAG STATE #更改分区的标记。
toggle [NUMBER [FLAG]] #设置或取消分区的标记。
unit UNIT #设置默认单位。
version
(parted)
显示分区信息:
[root@WEB-A1 ~]# parted
GNU Parted 2.1
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sda: 21.5GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 211MB 210MB primary ext4 boot
2 211MB 2358MB 2147MB primary linux-swap(v1)
3 2358MB 21.5GB 19.1GB primary ext4
#可以看到,如果不指定硬盘的话,默认显示第一块硬盘的信息。
首先,如果是新的硬盘,我们需要先创建分区表。
#首先和fdisk类似,要先选择进行分区的硬盘:
[root@WEB-A1 ~]# parted /dev/sdb
...
#选择了指定硬盘作为我们操作的硬盘,接下来需要创建一个分区表:
(parted) help mktable
mklabel,mktable LABEL-TYPE create a new disklabel (partition table)
LABEL-TYPE is one of: aix, amiga, bsd, dvh, gpt, mac, msdos, pc98, sun, loop
(parted) mktable
#默认为MSDOS形式的分区,我们要正确分区大于2TB的磁盘,应该使用GPT方式的分区表。
New disk label type? msdos
Warning: Partition(s) on /dev/sdb are being used.
Ignore/Cancel? I
Warning: The existing disk label on /dev/sdb will be destroyed and all data on this disk will be lost. Do you want to continue?
#这里警告用户硬盘上的数据将会被销毁,询问是否继续,我们这里是新的硬盘,输入“yes”后回车。
Yes/No? yes
Warning: WARNING: the kernel failed to re-read the partition table on /dev/sdb (Success). As a result, it may not reflect all of your changes until after reboot.
#出现上面的警告信息是由于该硬盘已经被挂载,是不能重新分区的。所以要先卸载已挂载分区,然后再分区并格式化。
--------------------
[root@WEB-A1 ~]# umount -lf /brick1
#卸载分区,然后重启系统,再对该硬盘进行操作时就没有出现过该警告信息,原因不明。
然后在交互模式下通过输入“mkpart”指令来创建硬盘分区。
(parted) help mkpart
mkpart PART-TYPE [FS-TYPE] START END make a partition
PART-TYPE is one of: primary, logical, extended
FS-TYPE is one of: ext4, ext3, ext2, fat32, fat16...
--------------------
(parted) mkpart
Partition type? primary/extended? extended
Start? 0
End? 10.7G
Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel?
#这里又出现一个警告信息,具体原因目前不得而知,解决方法如下(使用百分号):
(parted) mkpart
Partition type? primary/extended? extended
Start? 0%
End? 100%
#Apparently, using % causes parted to automatically align the sectors for best performance.
(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 10.7GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 10.7GB 10.7GB extended lba
#操作至此,我们创建了一个扩展分区。
我们在扩展分区下再创建逻辑分区:
(parted) mkpart
Partition type? primary/logical? logical
File system type? [ext2]? ext4
Start? 0%
End? 50%
(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 10.7GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 10.7GB 10.7GB extended lba
5 2097kB 5369MB 5367MB logical
http://blog.163.com/nancainvmao_bq/blog/static/106573742013101253730555/
由于指令内建的格式化工具“mkfs”还不够完善,所以完成以后我们可以退出并使用外部的“mkfs”命令对分区进行格式化。
使用“rm”指令(后面接要删除的分区号)可以删除指定的磁盘分区,在进行删除操作前必须先把分区卸载。
[root@WEB-A1 ~]# parted /dev/sdb
GNU Parted 2.1
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 10.7GB
Sector size (logical/physical): 512B/512B
Partition Table: loop
Number Start End Size File system Flags
1 0.00B 10.7GB 10.7GB ext4
(parted) rm 1
[root@WEB-A1 ~]# parted -l
#第一块硬盘的信息:
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sda: 21.5GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 211MB 210MB primary ext4 boot
2 211MB 2358MB 2147MB primary linux-swap(v1)
3 2358MB 21.5GB 19.1GB primary ext4
#第二块硬盘的信息:
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 10.7GB
Sector size (logical/physical): 512B/512B
Partition Table: loop
Number Start End Size File system Flags
1 0.00B 10.7GB 10.7GB ext4
Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 #该设备即光驱。
has been opened read-only.
Error: Invalid partition table - recursive partition on /dev/sr0.
Ignore/Cancel? I
Model: NECVMWar VMware IDE CDR10 (scsi)
Disk /dev/sr0: 4468MB
Sector size (logical/physical): 2048B/2048B
Partition Table: msdos
Number Start End Size Type File system Flags
#系统中的光驱设备文件:
[root@WEB-A1 ~]# ll /dev/sr0
brw-rw---- 1 root cdrom 11, 0 Apr 18 14:09 /dev/sr0
[root@WEB-A1 ~]# ll /dev/cdrom
lrwxrwxrwx 1 root root 3 Apr 18 14:09 /dev/cdrom -> sr0
上面是以交互方式进行的分区操作,当然还可以通过非交互的方式进行。我们下面的实例是对系统中新增加的第二块硬盘进行分区及格式化操作。
#我们这里采用非交互的方式:
#首先创建分区表:
[root@data-1-1 ~]# parted /dev/sdb mklabel gpt yes
Warning: The existing disk label on /dev/sdb will be destroyed and all data on this disk will be lost. Do you want to continue?
Information: You may need to update /etc/fstab.
#然后创建同步数据分区(参数单位是M):
[root@data-1-1 ~]# parted /dev/sdb mkpart primary ext4 0 4000 ignore
Warning: The resulting partition is not properly aligned for best performance.
Information: You may need to update /etc/fstab.
#接下来是创建“meta data”分区:
[root@data-1-1 ~]# parted /dev/sdb mkpart primary ext4 4001 5000 yes ignore
Warning: You requested a partition from 4001MB to 5000MB.
The closest location we can manage is 4001MB to 4001MB.
Is this still acceptable to you?
Warning: The resulting partition is not properly aligned for best performance.
Information: You may need to update /etc/fstab.
#最后查看一下分区结果:
[root@data-1-1 ~]# parted /dev/sdb p
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 5369MB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number Start End Size File system Name Flags
1 17.4kB 4000MB 4000MB primary
2 4001MB 5000MB 998MB primary
参考内容:
https://www.itsfun.tk/centos7-lvm
http://dl528888.blog.51cto.com/2382721/1547325