Ubuntu 终端使用 sudo 执行命令需要一段时间

Ubuntu 终端使用 sudo 执行命令需要一段时间

当我使用 sudo 命令时,我的终端需要一段时间才能响应。有什么想法吗?

我看到之前的帖子说可能是这样,/etc/nsswitch.conf但没有说那个文件里可能是什么。只是说这可能是问题所在。所以这是我的/etc/nsswitch.conf文件:

# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd:         compat systemd
group:          compat systemd
shadow:         compat
gshadow:        files

hosts:          files mdns4_minimal [NOTFOUND=return] dns myhostname
networks:       files

protocols:      db files
services:       db files
ethers:         db files
rpc:            db files

netgroup:       nis

答案1

这可能是安装过程中更改主机名的效果。

使用以下方法打开hosts文件:

sudo gedit /etc/hosts

之后,按照以下内容进行编辑:

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 <ADD_YOURS_HERE> 
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 <ADD_YOURS_HERE>

相关内容