NordeN Asked:2020-08-15 13:01:49 +0000 UTC2020-08-15 13:01:49 +0000 UTC 2020-08-15 13:01:49 +0000 UTC 带有 ctl 后缀的 Linux 实用程序 772 我在哪里或如何在终端中看到它们?我只知道 sysctl、systemctl、hostnamectl、localectl 和 timedatectl,不知道是不是全部。 linux 2 个回答 Voted Best Answer Total Pusher 2020-08-15T21:51:49Z2020-08-15T21:51:49Z 如果你想*ctl*在所有萝卜中找到所有东西,Debian 上有一个很棒的实用程序apt-file 首先安装它并更新它的数据库: sudo apt install apt-file sudo apt-file update 然后我们正在寻找: apt-file search ctl | grep bin | grep -v "/usr/share/" 我有 373 个文件。包的名称也显示在那里。 ... ekeyd: /usr/sbin/ekeydctl emboss: /usr/bin/jembossctl encfs: /usr/bin/encfsctl ... Sergey 2020-08-16T09:48:14Z2020-08-16T09:48:14Z $ locate *ctl | grep bin /bin/journalctl /bin/keyctl /bin/loginctl /bin/networkctl /bin/systemctl /bin/wdctl /sbin/initctl /sbin/mntctl /sbin/pccardctl /sbin/sysctl /sbin/zramctl /usr/bin/bluetoothctl /usr/bin/bootctl /usr/bin/busctl /usr/bin/hostnamectl /usr/bin/localectl /usr/bin/obexctl /usr/bin/pactl /usr/bin/timedatectl /usr/bin/udisksctl /usr/sbin/alsactl /usr/sbin/cupsctl /usr/sbin/rtkitctl /usr/sbin/smartctl
如果你想
*ctl*在所有萝卜中找到所有东西,Debian 上有一个很棒的实用程序apt-file首先安装它并更新它的数据库:
然后我们正在寻找:
我有 373 个文件。包的名称也显示在那里。