btrfs BTRFS 파일 시스템 생성

2015. 5. 3. 00:20 - mr.november11
[rhel 7]rhel 7 레드햇 리눅스 7.0 btrfs BTRFS 파일 시스템 생성]

BTRFS 는 차세대 리눅스 파일 시스템이다. 
관리, 신뢰성, 확장성 측면에서 기존의 파일 시스템보다 개선된 특징을 가진다 .

btrfs 시스템은 mkfs.btrfs 커맨드를 통해 실행한다. 
# mkfs.btrfs /dev/device
mkfs 커맨드를 통해 해당 파일 시스템을 생성한 이후에 기존 파일 시스템과 같이 mount 커맨드로 마운트 시킨다. 
# mount /dev/device /mount-point
btrfs 파일 시스템 용량 늘리기 

# btrfs filesystem resize amount /mount-point
The amount can be a set size, such as "+2g" for an increase in 2 GiB, or it can be "max" to grow the file system to fill the whole block device. ( +2g, +2G 와 같이 대소문자 구별을 하지 않는다. )
btrfs 파일 시스템 용량 줄이기 
# btrfs filesystem resize amount /mount-point
Set the amount to the required size to shrink by, such as "-2g" for a decrease of 2 GiB.
btrfs 파일 시스템의 크기를 +, -  뿐만 아니라 특정 크길 지정할 수도 있다. 
#btrfs filesystem resize amount /mount-point
Set the amount to the required size of the file system, such as "20g" to make the file system 20 GiB.
amount 값 지정에 따라 확장, 축소, 용량 지정이 설정된다. 


다른 카테고리의 글 목록

Linux 카테고리의 포스트를 톺아봅니다