单块磁盘容量越来越大,价格越来越便宜,2TB硬盘已非常常见,但是传统MBR方式存储,很多分区工具无法读取对大于2TB的磁盘而无法分区大于2TB的磁盘,linux下的Parted工具可以很好的支持大磁盘分区。
Parted分区是实时的,不像fdisk工具需要执行w后才开始分区,所以使用parted分区一定要注意,看清楚再下手。
Parted工具使用
[root@localhost ~]# iscsiadm --mode discovery --type sendtarget --portal 192.168
8.2.100
192.168.2.100:3260,1 iqn.liushunyi
[root@localhost ~]# iscsiadm --mode node
192.168.2.100:3260,1 iqn.liushunyi
[root@localhost ~]# iscsiadm --mode node --targetname iqn.liushunyi --portal 102
.168.2.100:3260 --login
Logging in to [iface: default, target: iqn.liushunyi, portal: 192.168.2.100,3260
] (multiple)
Login to [iface: default, target: iqn.liushunyi, portal: 192.168.2.100,3260] suc
cessful.
[root@localhost ~]# fdisk -l
WARNING: GPT (GUID Partition Table) detected on '/dev/sde'! The util fdisk doesn
't support GPT. Use GNU Parted.
WARNING: The size of this disk is 3.3 TB (3298534883328 bytes).
DOS partition table format can not be used on drives for volumes
larger than 2.2 TB (2199023255040 bytes). Use parted(1) and GUID
partition table format (GPT). 提示磁盘容量太大,使用parted工具和GPT分区表
Disk /dev/sde: 3298.5 GB, 3298534883328 bytes
255 heads, 63 sectors/track, 401024 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
[root@localhost ~]# parted parted的欢迎界面
GNU Parted 1.8.1
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) select /dev/sde 选择使用/dev/sde设备
Using /dev/sde
(parted) mklabel 创建分区表
Warning: The existing disk label on /dev/sde will be destroyed and all data on
this disk will be lost. Do you want to continue?
html文件格式化Yes/No? y 警告用户磁盘数据会丢失,是否继续
New disk label type? [gpt]? gpt 选择分区格式
(parted) p 查看分区情况
Model: FreeBSD iSCSI Disk (scsi)
Disk /dev/sde: 3299GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number Start End Size File system Name Flags
(parted) mkpart 创建分区
Partition name? []? 可以指定分区名字
File system type? [ext2]? 可以指定文件系统类型/假如ext2这里指定ext3时可能导致数据丢失,具体见第二个文档!!!!
Start? 0 开始位置
End? 3299GB 结束位置 -1表示使用剩余所有空间
(parted) p 查看创建的分区
Model: FreeBSD iSCSI Disk (scsi)
Disk /dev/sde: 3299GB
Sector size (logical/physical): 512B/512B
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论