DevOps/Linux

[Linux] CLI로 Disk의 파티션 및 파일시스템 생성하기

IT록흐 2025. 3. 13. 17:41
반응형

 

 

부팅디스크로 Linux OS를 설치하는 과정에서 파티션을 나누거나 파일시스템을 생성할 수 있으나,

이미 설치된 환경에서 새로이 파티션과 파일시스템을 생성해야 하는 경우도 있다. 

 

이런 경우,

CLI로 Disk의 파티션과 파일시스템을 생성해주어야 한다. 

 

 

  • Device 조회하기

Device : /dev/nvme0n1, Partition : /dev/nvme0n1p1

Device : /dev/nvme1n1, Partition : /dev/nvme1n1p1, /dev/nvme1n1p2, /dev/nvme1n1p3,

 

root@infra-test2:/# fdisk -l

// loop device 생략 ...

Disk /dev/nvme0n1: 476.94 GiB, 512110190592 bytes, 1000215216 sectors
Disk model: SOLIDIGM SSDPFKNU512GZ
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: FCC1FC8E-C777-4332-8FE6-ACE038716990

Device         Start        End    Sectors   Size Type
/dev/nvme0n1p1  2048 1000212479 1000210432 476.9G Linux filesystem

Disk /dev/nvme1n1: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk model: CT500P3PSSD8
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: 2FD01767-2FC3-4D2C-8FEB-DA9A5E86936C

Device           Start       End   Sectors   Size Type
/dev/nvme1n1p1    2048   2203647   2201600     1G EFI System
/dev/nvme1n1p2 2203648   4300799   2097152     1G Linux filesystem
/dev/nvme1n1p3 4300800 976771071 972470272 463.7G Linux filesystem

 

 

  • 파티션을 생성할 Device 안으로 들어가기
root@infra-test2:/# fdisk /dev/nvme0n1

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

This disk is currently in use - repartitioning is probably a bad idea.
It's recommended to umount all file systems, and swapoff all swap
partitions on this disk.


Command (m for help): m

 

'm’을 입력하면 수행가능한 명령어 리스트를 확인할 수 있다.

 

  • 이전 파티션 제거하기
Command (m for help): d

Selected partition 1
Partition 1 has been deleted.

 

 

  • 새로운 파티션 생성하기
Command (m for help): n
Partition number (1-128, default 1):
First sector (34-1000215182, default 2048):
Last sector, +/-sectors or +/-size{K,M,G,T,P} (2048-1000215182, default 1000215182):

Created a new partition 1 of type 'Linux filesystem' and of size 476.9 GiB.
Partition #1 contains a ext4 signature.

Do you want to remove the signature? [Y]es/[N]o: y

The signature will be removed by a write command.

 

 

파티션 넘버를 지정하고 첫번째 섹터와, 마지막 섹터를 설정하여 파티션의 크기를 설정한다. 모두 default로 설정하여 Disk 전체를 하나의 파티션으로 설정하였다.

 

Partition #1 contains a ext4 signature.

 

앞에서 Partition1을 제거했지만, 포맷은 되지 않아서 데이터가 남아있다. 파티션 생성 후 포맷을 할 것이므로 yes로 설정한다.

 

Command (m for help): w

 

설정 저장하고 나간다.

 

root@infra-test2:/# blkid
/dev/nvme1n1p2: UUID="143e634d-e85a-49e8-9ce5-40cfa914feb7" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="1b56b821-af50-4d91-8c53-c755023c9641"
/dev/nvme1n1p3: UUID="1f3fe2a4-71e6-4acf-a6b9-a4921224d64a" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="429efe6f-5027-46bd-8a01-32e2a7306f33"
/dev/nvme1n1p1: UUID="04CB-C826" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="97197b2c-a921-4d4b-a38b-fa181163fdc3"
/dev/nvme0n1p1: PARTUUID="85d38260-01"

 

blkid 명령어로 파티션을 조회하면 /dev/nvme0n1p1 가 생성되었음을 확인할 수 있다.

 

  • 파일시스템 생성하기 ( 포맷하기 )
root@infra-test2:/# mkfs.ext4 /dev/nvme0n1p1
mke2fs 1.46.5 (30-Dec-2021)
Discarding device blocks: done
Creating filesystem with 125026646 4k blocks and 31260672 inodes
Filesystem UUID: 573b9b63-2cea-41a4-9211-ef1d9dbf0978
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
        102400000

Allocating group tables: done
Writing inode tables: done
Creating journal (262144 blocks): done
Writing superblocks and filesystem accounting information: done

 

 

  • 특정 디렉토리에 마운트하기

kubernetes를 돌리면 /var/lib 공간에 데이터가 많이 쌓이므로 해당 디렉토리에 파티션을 마운트하려고 한다. /var/lib의 데이터를 다른 곳으로 백업시킨 후 디스크 파티션을 /var/lib 디렉토리에 마운트하고, 다시 백업한 데이터를 복사해놓을 것이다.

# 백업용 디렉토리 생성
root@infra-test2:/var# mkdir lib_backup

# 데이터 옮기기
root@infra-test2:/var# mv ./lib/* ./lib_backup

# 마운트 하기
root@infra-test2:/var# mount /dev/nvme0n1p1 /var/lib

# 마운트 되었는지 확인하기
root@infra-test2:/var# df -h
Filesystem      Size  Used Avail Use% Mounted on
// 중략...
/dev/nvme0n1p1  469G   28K  445G   1% /var/lib

# 백업된 데이터 복사하기
root@infra-test2:/var# cp -r /var/lib_backup/* /var/lib

 

 

  • 영구적으로 마운트 해놓기

지금 해놓은 마운트는 서버가 reboot 되면 다시 풀린다. 그러므로 /etc/fstab 파일에 설정하여 부팅시 자동으로 /var/lib 디렉토리로 마운트 하도록 설정해야 한다.

root@infra-test2:/dev/disk/by-uuid# ls -rlt
total 0
lrwxrwxrwx 1 root root 15 Jan 21 01:00 1f3fe2a4-71e6-4acf-a6b9-a4921224d64a -> ../../nvme1n1p3
lrwxrwxrwx 1 root root 15 Jan 21 01:00 04CB-C826 -> ../../nvme1n1p1
lrwxrwxrwx 1 root root 15 Jan 21 01:00 143e634d-e85a-49e8-9ce5-40cfa914feb7 -> ../../nvme1n1p2
lrwxrwxrwx 1 root root 15 Feb 12 01:16 573b9b63-2cea-41a4-9211-ef1d9dbf0978 -> ../../nvme0n1p1

 

 

파티션을 지정할 때, UUID로 지정하려면 /dev/disk/by-uuid로 가서 nvme0n1p1 파티션의 uuid를 확인하면 된다.

root@infra-test2:/dev/disk/by-uuid# cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/nvme1n1p3 during curtin installation
/dev/disk/by-uuid/1f3fe2a4-71e6-4acf-a6b9-a4921224d64a / ext4 defaults 0 1
# /data was on /dev/nvme0n1p1 during curtin installation
# 마운트 설정
/dev/disk/by-uuid/573b9b63-2cea-41a4-9211-ef1d9dbf0978 /var/lib ext4 defaults 0 1
# /boot was on /dev/nvme1n1p2 during curtin installation
/dev/disk/by-uuid/143e634d-e85a-49e8-9ce5-40cfa914feb7 /boot ext4 defaults 0 1
# /boot/efi was on /dev/nvme1n1p1 during curtin installation
/dev/disk/by-uuid/04CB-C826 /boot/efi vfat defaults 0 1
/swap.img       none    swap    sw      0       0

 

 

/dev/disk/by-uuid/573b9b63-2cea-41a4-9211-ef1d9dbf0978 /var/lib ext4 defaults 0 1

해당 설정을 /etc/fstab 파일에 추가하고 reboot를 하여 제대로 마운트 되는 지 확인한다.

반응형

'DevOps > Linux' 카테고리의 다른 글

[Linux] 좀비 프로세스란? ( Zombie Process, Defunct Process )  (0) 2025.03.11