ubuntu使用Parted GPT 创建大于2TB的的分区

问题

加购了一个4TB的ssd用于装载数据,使用fdisk挂载时候遇到一下warning:

复制代码
$ sudo fdisk /dev/sdb

Welcome to fdisk (util-linux 2.34).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table.
The size of this disk is 3.7 TiB (4096805658624 bytes). DOS partition table format cannot be used on drives for volumes larger than 2199023255040 bytes for 512-byte sectors. Use GUID partition table format (GPT).

解决办法

复制代码
$ sudo parted /dev/sdb
GNU Parted 3.3
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.

(parted) print                                                            
Error: /dev/sdb: unrecognised disk label
Model: ATA GLOWAY STK4TS3-S (scsi)                                        
Disk /dev/sdb: 4097GB
Sector size (logical/physical): 512B/512B
Partition Table: unknown
Disk Flags: 

(parted) mklabel gpt 

(parted) print                                                            
Model: ATA GLOWAY STK4TS3-S (scsi)
Disk /dev/sdb: 4097GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags: 

Number  Start  End  Size  File system  Name  Flags

(parted) mkpart primary 0GB 4097GB 

(parted) print                                                            
Model: ATA GLOWAY STK4TS3-S (scsi)
Disk /dev/sdb: 4097GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags: 

Number  Start   End     Size    File system  Name     Flags
 1      1049kB  4097GB  4097GB               primary

这时候再使用fdisk就可以看刚才的分区了

复制代码
Disk /dev/sdb: 3.74 TiB, 4096805658624 bytes, 8001573552 sectors
Disk model: GLOWAY STK4TS3-S
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 9B8B4FC7-7B68-4835-A611-DE53D8887EB8

Device     Start        End    Sectors  Size Type
/dev/sdb1   2048 8001572863 8001570816  3.7T Linux filesystem

然后正常挂载硬盘

格式化:

复制代码
$ sudo mkfs /dev/sdb
[sudo] password for cedric: 
mke2fs 1.45.5 (07-Jan-2020)
Found a gpt partition table in /dev/sdb
Proceed anyway? (y,N) y
Discarding device blocks: done                            
Creating filesystem with 1000196694 4k blocks and 250052608 inodes
Filesystem UUID: 65456d56-4637-4493-96ed-1445eba38583
Superblock backups stored on blocks: 
	32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
	4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968, 
	102400000, 214990848, 512000000, 550731776, 644972544

Allocating group tables: done                            
Writing inode tables: done                            
Writing superblocks and filesystem accounting information:            
done

挂载:

复制代码
$ mkdir /data
$ mount /dev/sdb /data

检查:

复制代码
$ df -h
Filesystem      Size  Used Avail Use% Mounted on

/dev/sdb        3.7T   24K  3.5T   1% /data

完工!

相关推荐
草上爬1 小时前
OpenWrt:使用ALSA实现边录边播
ubuntu·openwrt·record·alsa·play
藥瓿亭8 小时前
K8S认证|CKS题库+答案| 6. 创建 Secret
运维·ubuntu·docker·云原生·容器·kubernetes·cks
舰长1158 小时前
Ubuntu挂载本地镜像源(像CentOS 一样挂载本地镜像源)
linux·ubuntu·centos
Theodore_10228 小时前
大数据(2) 大数据处理架构Hadoop
大数据·服务器·hadoop·分布式·ubuntu·架构
Unpredictable22210 小时前
【VINS-Mono算法深度解析:边缘化策略、初始化与关键技术】
c++·笔记·算法·ubuntu·计算机视觉
姓刘的哦13 小时前
ubuntu中使用docker
linux·ubuntu·docker
MrWang.13 小时前
Ubuntu中SSH服务器安装使用
服务器·ubuntu·ssh
_lizhiqiang13 小时前
联想拯救者R9000P 网卡 Realtek 8852CE Ubuntu/Mint linux 系统睡眠后,无线网卡失效
linux·运维·ubuntu·r9000p·无线网卡·8852ce
笑醉踏歌行15 小时前
NVM,Node.Js 管理工具
运维·ubuntu·node.js
bbsh209918 小时前
WebFuture:Ubuntu 系统上在线安装.NET Core 8 的步骤
linux·ubuntu·.netcore·webfuture