Contents
see ListLinux Create 3TB partition size
To create a partition start GNU parted as follows:# parted /dev/sdb
Output:
GNU Parted 2.3 Using /dev/sdb Welcome to GNU Parted! Type 'help' to view a list of commands. (parted)
Creates a new GPT disklabel i.e. partition table:
(parted) mklabel gptSample outputs:
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/No? yes
(parted)Next, set the default unit to TB, enter:
(parted) unit TBTo create a 3TB partition size, enter:
(parted) mkpart primary 0.00TB 3.00TBTo print the current partitions, enter:
(parted) printSample outputs:
Model: ATA ST33000651AS (scsi) Disk /dev/sdb: 3.00TB Sector size (logical/physical): 512B/512B Partition Table: gpt Number Start End Size File system Name Flags 1 0.00TB 3.00TB 3.00TB ext4 primary
Quit and save the changes, enter:
(parted) quitSample outputs:
Information: You may need to update /etc/fstab.
Use the mkfs.ext4 command to format the file system, enter:# mkfs.ext4 /dev/sdb1
Sample outputs:
mkfs.ext4 /dev/sdb1 mke2fs 1.41.12 (17-May-2010) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks 183148544 inodes, 732566272 blocks 36628313 blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks=4294967296 22357 block groups 32768 blocks per group, 32768 fragments per group 8192 inodes per group 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 Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 31 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override.
Type the following commands to mount /dev/sdb1, enter:# mkdir /data
# mount /dev/sdb1 /data
# df -H
Sample outputs:
Filesystem Size Used Avail Use% Mounted on /dev/sdc1 16G 819M 14G 6% / tmpfs 1.6G 0 1.6G 0% /lib/init/rw udev 1.6G 123k 1.6G 1% /dev tmpfs 1.6G 0 1.6G 0% /dev/shm /dev/sdb1 3.0T 211M 2.9T 1% /data
Make sure you replace /dev/sdb1 with actual RAID or Disk name or Block Ethernet device such as /dev/etherd/e0.0. Do not forget to update /etc/fstab, if necessary. Also note that booting from a GPT volume requires support in your BIOS / firmware. This is not supported on non-EFI platforms. I suggest you boot server from another disk such as IDE / SATA / SSD disk and store data on /data.
Further readings:
- How Basic Disks and Volumes Work (little outdated but good to understand basic concept)
- GUID Partition Table from the Wikipedia
- man pages parted
Updated for accuracy!
mkdir /backup
[root@localhost ~]# mount /dev/s
os
| No | 작성일 | Title |
|---|---|---|
| 2342 | 2026. 04. 06. | macOS 터미널 보안 기능과 필수 시스템 관리 명령어 2026 총정리 |
| 2328 | 2026. 04. 05. | Linux systemd 실전 마스터: 서비스 관리부터 타이머, 리소스 제한까지 |
| 2308 | 2026. 04. 05. | macOS 터미널 자동화 완벽 가이드: launchd, Automator, 셸 스크립트 실전 |
| 2307 | 2026. 04. 05. | Linux 시스템 모니터링 완벽 가이드: 성능 병목 찾기부터 자동 알림까지 |
| 2282 | 2026. 04. 04. | macOS 개발자를 위한 터미널 완벽 가이드: Homebrew, CLI 도구, 시스템 관�� |
| 2281 | 2026. 04. 04. | Linux 시스템 성능 분석 실전 가이드: top부터 perf, strace까지 완벽 정리 |
| 2211 | 2026. 02. 11. | systemd 서비스 관리와 저널 로그 분석 실전 |
| 2210 | 2026. 02. 11. | macOS 개발환경 자동화: Homebrew와 Dotfiles 관리 |
| 2209 | 2026. 02. 11. | Nginx 리버스 프록시와 로드밸런싱 고급 설정 |
| 2208 | 2026. 02. 11. | Kubernetes 1.31 신기능과 클러스터 운영 팁 |