728x90
리눅스에서 대용량 파일 생성하는 명령어는 fallocate를 사용합니다.
fallocate -l 크기 파일명 |
예시로 100 byte 파일을 생성해보겠습니다.
[root@Centos7 test]# fallocate -l 100 test.txt [root@Centos7 test]# ll test.txt -rw-r--r--. 1 root root 100 Feb 5 08:37 test.txt |
다음으로 10G 파일을 생성해보겠습니다.
[root@Centos7 test]# fallocate -l 10G test.txt [root@Centos7 test]# ll -h test.txt -rw-r--r--. 1 root root 10G Feb 5 08:37 test.txt |
728x90
'Server > Linux' 카테고리의 다른 글
[Linux] Haproxy & keepalived VIP 구성하기 (0) | 2022.11.26 |
---|---|
[Linux] Network Interface 우선 순위 변경하기 (0) | 2022.10.09 |
[Linux] df, du 명령어 사용법 (0) | 2022.05.09 |
[Ubuntu] ShellinaBox (웹 기반 SSH) 설치하기 (0) | 2022.02.08 |
[Ubuntu,CentOS] L2TP, IPsec VPN 서버 구축하기 (0) | 2021.08.13 |