리눅스 명령어 위치 확인

리눅스 명령어 설치 위치 확인
리눅스 프로그램 설치 위치 알아내기
리눅스 프로그램 설치 경로 알아보기

1 방법 1: type[ | ]

[root@zetawiki ~]# type ifconfig
ifconfig is /sbin/ifconfig
[root@zetawiki ~]# type cd
cd is a shell builtin
[root@zetawiki ~]# type which
which is aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

2 방법 2: which[ | ]

[root@zetawiki ~]# which ifconfig
/sbin/ifconfig
[root@zetawiki ~]# which httpd
/usr/sbin/httpd

ifconfig는 /sbin에, httpd는 /usr/sbin에 설치되어 있다.

3 방법 3: whereis[ | ]

[root@zetawiki ~]# whereis ifconfig
ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz
[root@zetawiki ~]# whereis httpd
httpd: /usr/sbin/httpd /usr/sbin/httpd.worker /usr/sbin/httpd.event /etc/httpd /usr/lib64/httpd /usr/include/httpd /usr/share/man/man1/httpd.1.gz /usr/share/man/man8/httpd.8.gz

4 방법 4: find[ | ]

  • 실제 명령어가 아닌 다른 파일을 찾게 될 수도 있다.
  • 모든 폴더를 다 찾아보기 때문에 위 방법들에 비해 오래 걸린다.
[root@zetawiki ~]# find / -name ifconfig
/sbin/ifconfig

5 같이 보기[ | ]

6 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}