Red Hat Enterprise Linux 7.2在安装的时候,会默认生成主机名:localhost. 那么如何修改成自己想要的自己名?

//格式为:用户名@主机名

比如: [root@localhost ~]#  修改成[root@xiaolyu ~]#

我的目前已经是[root@xiaolyu ~]# 主机名(hostname)为xiaolyu ,可以修改为lyu。

方法一: 用图像界面修改(永久性修改)

在终端输入命令 nutui :[root@xiaolyu ~]# nmtui

进入如下图形界面:

选择第三行:Set system hostname

按回车键,进入:

然后直接进行编辑修改即可:

选中《OK>按回车键即可。

OK 即可!

重新打开一个新的终端,既可以发现主机名已经修改过来了:

[root@lyu ~]#

方法二:用命令行模式修改主机名:(永久修改,静态模式)

比如这里讲lyu改成xiaolyu:

[root@lyu ~]# hostnamectl
Static hostname: lyu
Icon name: computer-vm
Chassis: vm
Machine ID: 41395788ce5a4b3f93805203ebf82245
Boot ID: 02c90c2e76784d1293358ab6bc509f78
Virtualization: vmware
Operating System: Red Hat Enterprise Linux Server 7.2 (Maipo)
CPE OS Name: cpe:/o:RedHat:enterprise_linux:7.2:GA:server
Kernel: Linux 3.10.0-327.el7.x86_64
Architecture: x86-64

[root@lyu ~]# hostname --help
Usage: hostname [-b] {hostname|-F file} set host name (from file)
hostname [-a|-A|-d|-f|-i|-I|-s|-y] display formatted name
hostname display host name

{yp,nis,}domainname {nisdomain|-F file} set NIS domain name (from file)
{yp,nis,}domainname display NIS domain name

dnsdomainname display dns domain name

hostname -V|--version|-h|--help print info and exit

Program name:
{yp,nis,}domainname=hostname -y
dnsdomainname=hostname -d

Program options:
-a, --alias alias names
-A, --all-fqdns all long host names (FQDNs)
-b, --boot set default hostname if none available
-d, --domain DNS domain name
-f, --fqdn, --long long host name (FQDN)
-F, --file read host name or NIS domain name from given file
-i, --ip-address addresses for the host name
-I, --all-ip-addresses all addresses for the host
-s, --short short host name
-y, --yp, --nis NIS/YP domain name

Description:
This command can get or set the host name or the NIS domain name. You can
also get the DNS domain or the FQDN (fully qualified domain name).
Unless you are using bind or NIS for host lookups you can change the
FQDN (Fully Qualified Domain Name) and the DNS domain name (which is
part of the FQDN) in the /etc/hosts file.

[root@lyu ~]# hostnamectl --static set-hostname xiaolyu

再次打开一个新终端,可以发现@后面的用户名已经修改。

[root@lyu ~]# hostname
xiaolyu
[root@lyu ~]# hostnamectl
Static hostname: xiaolyu
Icon name: computer-vm
Chassis: vm
Machine ID: 41395788ce5a4b3f93805203ebf82245
Boot ID: 02c90c2e76784d1293358ab6bc509f78
Virtualization: vmware
Operating System: Red Hat Enterprise Linux Server 7.2 (Maipo)
CPE OS Name: cpe:/o:redhat:enterprise_linux:7.2:GA:server
Kernel: Linux 3.10.0-327.el7.x86_64
Architecture: x86-64
[root@lyu ~]#

(init6或者reboot之后也可以,但是比较麻烦)。

而且是永久修改。

如何让@后面显示的主机名也跟着变呢?重启! reboot或者init 6

再次查看:

搞定!

最新文章

  1. 【JavaScript】JS 中 原始字符串 和 HTML 字符转换
  2. MySQL 主从配置
  3. gedit 没有preference项,使preference回归,并用命令行设置行号,text wrapping等
  4. Senparc.Weixin.MP SDK 微信公众平台开发教程(十六):AccessToken自动管理机制
  5. IOS 非常流畅的滑动tableView
  6. background-position控制背景位置
  7. mysql已有数据字符集转换
  8. Qt开发环境中使用报表控件FastReport遇到的一些问题(一)
  9. kuangbin_SegTree A (HDU 1166)
  10. sql order by 排序多个字段
  11. codevs-1447取出整数的一部分
  12. SharePoint咨询师之路:设计之前的那些事二:规模
  13. java 简单搜索算法
  14. XMPPFrameWork IOS 开发(二)- xcode配置
  15. 配置Apacheserver
  16. 转:Oracle弃用sun.reflect.Reflection.getCallerClass
  17. js中的回调函数的理解
  18. RSS阅读器“阅读原文”报错400
  19. linux常用命令以及快捷键
  20. Linux shell 执行修改配置文件中的内容

热门文章

  1. maven之---资源过滤 在java/main/resourse/*.xml ,*.properties引用maven属性${db.username}
  2. Maven的属性,${project.basedir},${project.build.directory}:项目构件输出目录,默认为 target/
  3. spring Data Rest 远程命令执行漏洞(CVE-2017-8046)
  4. noip模拟测试22
  5. D. 旅游景点 Tourist Attractions 状压DP
  6. awk文本
  7. JUC学习笔记(一)
  8. 密码三次就会锁掉 while 循环
  9. .Net Core+分布式配置中心(AgileConfig)
  10. 5.1 剑指 Offer 03. 数组中重复的数字