Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- context
- Windows
- 네트워크
- ssh
- GIT
- plugin
- import
- Eclipse
- Windows 10
- Source
- VirtualBox
- netsh
- lsof
- vscode
- bash
- Quartz
- xargs
- IntelliJ
- web.xml
- grep
- 줄바꿈 문자
- JavaScript
- 단축키
- Mac
- tomcat
- profile
- port
- resource
- find
- maVen
Archives
- Today
- Total
develog
[HP-UX] 파일 명령어 본문
파티션 확인
## 파티션 확인
bdf
find
## 파일 갯수 세기
find . -type f | wc -l
## core 파일 조회
find / -name core
find / -name core -print
find / -name core -exec ls -al {} \;
find / -name core -exec ls -al {} \; -print
du
## du 기본 사용
du -s # 합산해서 출력
du -k # 용량을 kb 바이트로 출력
## 대상 디렉토리의 전체 용량을 합산해서 출력
du -sk ./
## 대상 디렉토리의 하위 디렉토리별 용량을 출력
du -sk ./*
## 용량 오름차순 정렬
du -sk ./* | sort -n
## 용량 내림차순 정렬
du -sk ./* | sort -nr
tar
## 압축하기
tar cvf batch-backup_230406.tar batch
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=mathee96&logNo=50039997903
[HP-UX] Root File System Full
(1) 현상시스템이 제 역할을 하지 못하며, 심한 경우 모든 서비스가 멈춰서 고객의 요청을 거부할 수 있음....
blog.naver.com
Comments