当前位置: 首页>>技术教程>>正文


linux – 为什么“主机名–fqdn”在我的Ubuntu计算机上不起作用?

, , ,

问题描述

我正在使用Ubuntu 10.04 LTS,当我键入命令hostname --fqdn时,我收到消息:hostname: Name or service not known

因此,我无法成功安装global,并且在尝试时得到以下错误:

Setting up global (5.7.1-1) ...
hostname: Name or service not known
dpkg: error processing global (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 global
E: Sub-process /usr/bin/dpkg returned an error code (1)

我的/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
group:          compat
shadow:         compat

hosts:          files dns
networks:       files

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

netgroup:       nis

是否有人对这意味着什么以及如何解决这个问题有任何想法?

最佳方案

您可以提供/etc/nsswitch.conf的内容吗?

看起来/etc/nsswitch.conf对于”hosts”行具有错误的值。它以”files”开头吗?

否则,通过编辑/etc /hosts并将FQDN放在主机名出现的行上来设置FQDN。假设您有一个主机名”foo”,然后找到一行:

127.0.0.1 foo

您可以这样编辑它:

127.0.0.1 foo.localdomain foo

foo.localdomain将是您的新FQDN。

次佳方案

编辑/etc /hosts以添加您的FQDN

有关语法的信息位于:http://www.faqs.org/docs/securing/chap9sec95.html

更新:再次阅读您的问题,听起来好像您的路径设置不正确,或者主机名程序出了点问题。

做’which hostname’

它应返回路径’/bin/hostname’

如果可行,请再次尝试命令,

‘/bin/hostname –fqdn’

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/9469.html,未经允许,请勿转载。