[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' 카테고리의 다른 글
Redhat 7.0 에서만 사용되는 특수 filesystem 경로 location (0) | 2015.05.03 |
---|---|
/proc/ 가상 파일 시스템 공간 /PROC VIRTUAL FILE SYSTEM (0) | 2015.05.03 |
NFS 네트워크 파일 시스템 (0) | 2015.05.03 |
[rhel 7]rhel7 Linux 7 FTP vftpd 설명 및 구현 설정 (0) | 2015.05.03 |
[rhel]linux 리눅스에서 vsftp ftp 계정별 접속 시 home directory 위치 설정 (0) | 2015.05.03 |