데비안 8.1 adduser를 어디에 설치하나요?

데비안 8.1 adduser를 어디에 설치하나요?

코드와 출력

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은 시스템 관리 명령 및 데몬입니다. 그래서 저는 /sbinor 을 살펴보겠습니다 /usr/sbin. 보안상의 이유로 /sbin이러한 /usr/sbin명령은 일반 사용자의 PATH에서 제외되며 대부분의 명령을 실행하려면 루트 권한이 필요합니다. /etc/sudoers를 사용하여 명령을 선호하는 경우 둘 다 경로에 추가됩니다 sudo.

관련 정보