代码和输出
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
文件夹。 Debian 8.1 中肯定还adduser
添加了其他位置。
adduser
Debian 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 之外,并且其中许多命令需要 root 权限才能运行。/etc/sudoers
当您首选带有 的命令时,两者都会添加到您的路径中sudo
。