Linux

1. DNS配置

运行 system-config-network ,然后到 DNS标签下设置

 

2. VNC Server配置

执行命令

#  service vncserver start

启动后提示:

Starting VNC server: no displays configured  [ FAILED ]

解决方法:
执行命令

#  vim /etc/sysconfig/vncservers

修改最后两行如:

VNCSERVERS = " 1:root "
VNCSERVERARGS
[ 1 ] = " -geometry 1024x768 "

说明:
第 一行为服务配置,当前只配置了一个VNC服务,使用用户root启动,如果还需要使用其他用户登陆,可以修改VNCSERVERS的值如:“1:root 2:tiger”(tiger为系统另一存在用户)。第二行可以注释,是配置窗口分辨率的,需要去掉后面的-localhost

VNC Server随系统自动启动
执行命令

#  sudo chkconfig --level 345 vncserver on

 

[root@test log]# service vncserver start
Starting VNC server: 2:root [FAILED]
[root@test log]# vncserver
You will require a password to access your desktops.
Password:
Verify:
xauth:creating new authority file /root/.Xauthority
New 'test.test.com:1 (root)' desktop is test.test.com:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/test.test.com:1.log

更改密码:

service vncserver stop
rm -rf /root/.vnc

 

3. 设置Hostname

永久设置:

RedHat的hostname,就修改/etc/sysconfig/network文件,将里面的HOSTNAME这一行修改成HOSTNAME=NEWNAME

临时设置:

#hostname newname

Note:
很多人人一提到更改hostname首先就想到修改/etc/hosts文件,认为hostname的配置文件就是/etc/hosts。其实不是的。hosts文件的作用相当如DNS,提供IP地址到hostname的对应。

你可能感兴趣的:(linux)