환경 - CentOS8
[cd] directory 이동 명령어
ex) cd /home/test
[cp] 파일 복사(copy) 명령어
ex) cp {복사할 파일} {복사할 위치}
[df] Disk 사용량 확인(df -option filesystem)
ex) df -h(h 옵션은 단위표시로 K, M, G 로 변환하여 보여줌)
Filesystem Size Used Avail Use% Mounted on
rootfs 477G 240G 238G 51% /
C:\ 477G 240G 238G 51% /mnt/c
D:\ 932G 183M 932G 1% /mnt/d
[du] Disk 사용량 요약
ex) du -h
4.0K ./.landscape
0 ./.vim
2.0M ./bts_sw/airscale5g-xeon/ABIL
5.7M ./bts_sw/airscale5g-xeon/ASIK
469M ./bts_sw/airscale5g-xeon
0 ./bts_sw/ASCB
48K ./bts_sw/ASCE
[free] 메모리 사용량 확인
ex) free -h
total used free shared buff/cache available
Mem: 15Gi 11Gi 3.9Gi 17Mi 223Mi 4.0Gi
Swap: 48Gi 429Mi 47Gi
[ip] [ifconfig] ip 정보 확인
[date] 현재 시간 및 날짜 확인
[info] man 페이지보다 상세하게 매뉴얼 확인
[ls] 파일 목록 출력
[mkdir] Directory 생성 명령어
[mount] USB 나 CD 등 Device Mount 명령어
[umount] Device Unmount 명령어
[mv] 파일 이동 명령어
[passwd] 패스워드 변경 명령어
[ps] 프로세스 정보 확인 명령어
[cat] 파일 내용을 확인만 하는 명령어
[chown] 파일 소유자/그룹을 변경하는 명령어
[chmod] 파일의 권한을 변경하는 명령어
[chkconfig] Runlevel 에 따라 신규 서비스 등록 및 등록 서비스 조회 명령어
[find] 파일 검색 명령어
[locate] 파일 색인을 검색하는 명령어
[grep] 입력으로 전달된 파일 내용에서 특정 문자열 찾고자 할때 사용하는 명령어
ex) ls -lrt | grep test
-rwxr-xr-x 1 ryu ryu 683 Mar 22 17:45 test.sh
-rw-r--r-- 1 ryu ryu 133 Apr 6 15:10 test.txt
drwxr-xr-x 1 root root 4096 Apr 6 15:18 test
[history] 명령어 실행 이력 확인하는 명령어
[rm] 파일 삭제 명령어
[rmdir] Directory 삭제 명령어
[ssh] ssh 접속을 위한 명령어
[telnet] telnet 접속을 위한 명령어
[rpm] RPM 패키지를 관리(설치/업데이트/조회)하는 명령어
ex) rpm -qa | grep chrony
chrony-4.1-1.el8.x86_64
[tail] 파일의 끝 부분을 출력하는 명령어
[touch] 0byte 의 파일을 생성하는 명령어
[top] 시스템 사용량을 실시간으로 표시해주는 명령어
[uname] Linux System 정보확인 명령어
[hostname] 시스템 host name 확인 명령어
[unzip] 압축 파일 압축해제 명령어
[pwd] 현재 사용자의 Directory 위치 확인하는 명령어
[ftp] 파일 전송/수신 프로토콜 ftp 사용 명령어
[scp] 파일 전송/수신 프로토콜 scp 사용 명령어
'Linux' 카테고리의 다른 글
[Linux] Vi Vim 차이 (0) | 2022.05.11 |
---|---|
[Linux] E325 Attention (0) | 2022.05.11 |
[Linux] ifconfig (0) | 2022.04.22 |
[Linux] Chrony 설정 (0) | 2022.04.22 |
[Linux] sha256sum 유효성 검증 (0) | 2022.04.22 |