Ubuntu 18.04 上出现“未找到命令‘gksu’”错误

Ubuntu 18.04 上出现“未找到命令‘gksu’”错误

在跑步的时候

gksu gedit /etc/udev/rules.d/somefile.rules

我收到了这个建议。

Command 'gksu' not found, did you mean:

  command 'gosu' from deb gosu
  command 'ksu' from deb heimdal-clients
  command 'ksu' from deb krb5-user

Try: sudo apt install <deb name>

答案1

gksu已被弃用。

它已从 Ubuntu 18.04 以及 Debian 和其他较新的 Linux 发行版中删除。如果您使用短语“Ubuntu man gksu”进行网络搜索,您会发现没有可用的 18.04 版本。以下是替代方案:

  1. 使用sudo -H

    sudo -H nautilus
    
  2. 使用admin://

    gedit admin:///etc/udev/rules.d/somefile.rules
    
  3. 使用pkexec

    pkexec gedit
    

相关内容