리눅스 파일 삭제에 대해 알아두자
프로그래밍/리눅스2016. 10. 6. 00:01
리눅스에서 프로그램 알게 모르게 많이 설치되는데 (잘모르는 경우)
때에 따라 알맞게 삭제하는 방법을 알아두자
sudo apt-get remove nginx nginx-common # Removes all but config files.
sudo apt-get purge nginx nginx-common # Removes everything.
sudo apt-get autoremove # After using any of the above commands, use this in order to remove dependencies used by nginx which are no longer required.
'프로그래밍 > 리눅스' 카테고리의 다른 글
fbi 사용하여 frame 이미지 framebuffer 나타내기 (0) | 2016.12.27 |
---|---|
ubuntu php apache remove 아파치 삭제 정리 (0) | 2016.10.08 |
sh shell fbi 사용 명령어 (0) | 2016.04.18 |
리눅스 모듈 버전 관련 내용 (0) | 2016.04.18 |
리눅스 우분투 고정 ip 설정 방법 (0) | 2016.04.08 |