목록Command (2)
잡동사니
[CentOS 6] 명령어 모음
안녕하세요. yeTi입니다.오늘은 CentOS 6 에서 시스템 관리시에 유용한 명령어를 모아보고자 합니다. 1. 디렉토리별 디스크 용량 확인- du -sh * 2. Command not found 처리- ] export PATH=%PATH:/bin:/usr/local/bin:/usr/bin- ] vi ~/.bash_profile- ] source ~/.bash_profile 3. CPU 확인- 모델명 및 수 확인grep ^'model name' /proc/cpuinfo 4. 메모리 확인- cat /proc/meminfo- free-m- 명목 및 실질 사용률 확인TOTAL=`free | grep ^Mem | awk '{print $2}'`USED1=`free | grep ^Mem | awk '{print ..
IT/Linux
2018. 8. 30. 09:46
[Linux] Command not found 해결하기
안녕하세요. yeTi입니다.오늘은 Linux 계열의 운영체제를 사용하다가 직면하는 command not found를 해결하는 방법에 대해 알아보고자 합니다. which 를 활용하여 명령어의 위치를 확인합니다. EX) which /bin/ls 명령어가 존재하면 해당 경로를 추가합니다.> vi .bach_profileexport PATH=$PATH:/bin:/usr/local/bin:/usr/bin 변경한 설정을 저장합니다.> source .bach_profile
IT/Linux
2018. 7. 6. 10:41