코드와 출력
apt-cache search adduser
adduser - add and remove users and groups
$ sudo apt-get install adduser
Reading package lists... Done
Building dependency tree
Reading state information... Done
adduser is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
$ add
add-apt-repository addpart addr2line
$ which adduser
$ echo $PATH
/home/masi/bin:/sbin/:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
폴더가 있다고 나와 있는데 대부분의 폴더가 adduser
있는데도 경로에 없기 때문에 이해가 안 됩니다. bin
데비안 8.1에는 확실히 adduser
다른 위치가 추가되었습니다 .
adduser
데비안 8.1은 어디에 설치되어 있나요?
답변1
나는 도구를 찾을 때 먼저 그것이 내 길에 있는지 확인합니다.
type adduser
bash: type: adduser: not found
찾지 못하면 다음을 사용하겠습니다.apropos
apropos adduser
add.user.conf (5) - configuration file for adduser (8) and addgroup (8) .
adduser (8) - add a user or group to the system
파트 8은 시스템 관리 명령 및 데몬입니다. 그래서 저는 /sbin
or 을 살펴보겠습니다 /usr/sbin
. 보안상의 이유로 /sbin
이러한 /usr/sbin
명령은 일반 사용자의 PATH에서 제외되며 대부분의 명령을 실행하려면 루트 권한이 필요합니다. /etc/sudoers
를 사용하여 명령을 선호하는 경우 둘 다 경로에 추가됩니다 sudo
.