sudo コマンドを使用するたびに、次のエラーが発生します。
sudo: unable to resolve host josphh-pop-os: Name or service not known
通常、同様のコマンドの場合はsudo apt install
エラーが表示された後に実行されますが、他のコマンドの場合はそのエラーのみが生成され、それ以上は生成されません。役に立つ場合は、現在Pop_OSを実行しています。よろしくお願いします。
編集:ファイルの内容/etc/sudoers
:
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:>
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
答え1
通常、これはホスト名がないためです(おそらくインストールが壊れていますか?)。/etc/hostname
進行中に編集しsudo nano /etc/hostname
てコンピュータ名を作成してみてください。
答え2
コマンドの出力hostname
(またはStatic hostname
コマンドのフィールドhostnamectl
)は、ファイルに書き込まれたホスト名と一致する必要があります/etc/hostname
。
ファイルには/etc/hosts
次のコンテンツも含める必要があります。
127.0.0.1 localhost
::1 localhost
127.0.1.1 yourHostName.localdomain yourHostName
これらのファイルの一部のエラーが原因で問題が発生する可能性があります。
この問題を解決するには、sudo 権限が必要な場合があります。ただし、実際に実行することはできません。sudo
選択肢がある場合は、rootとしてログインしてみてください。
su