centos6.6下vnc的详细设置的实践总结

更新时间:2023-10-21 22:02:01 阅读量: 综合文库 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

1. 安装

tigervnc-server-module x86_64 1.1.0-16.el6.centos

Installing:

tigervnc x86_64 1.1.0-16.el6.centos updates 185 k tigervnc-server x86_64 1.1.0-16.el6.centos updates 1.0M

Installing for dependencies:

xorg-x11-fonts-misc noarch 7.2-9.1.el6

2. root 用户 vncserver

在用户下,vncsever,在用户目录下出现.vnc目录。同时提示输入密码

3. 进入 .vnc目录,配置xstartup

gedit xstartup

添加

xsetroot -solid grey

xterm -geometry 80x24+10+10 -ls -title \gnome-session &

gedit /etc/sysconfig/vncservers

VNCSERVERS=\

VNCSERVERARGS[1]=\

4. 启动

/sbin/service vncserver start

或者 # service vncserver restart

5. 添加防火墙 192.168.137.3:1 gedit /etc/sysconfig/iptables

-A RH-Firewall-l-INPUT -p tcp -m tcp --dport 5901 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT

/etc/init.d/iptables restart

6. vnc 链接即可

7. 切换 新用户

命令 vncserver 提示输入新密码

在/etc/sysconfig/vncservers 添加桌面号,需要在su权限下 在/etc/sudoers里添加 xxx ALL=(ALL) ALL

export DISPLAY=:0 xhost +

解决Gtk-WARNING **: cannot open display: :0.0 8.用户

添加组,groupadd -g 501 test

添加用过 useradd -u 601 -G 501 user01

user01 uid = 601 同时在 601组和501 组里

linux下强制新用户首次登陆修改密码 1. 使用useradd添加用户 2. 使用passwd配置用户密码 3. 使用usermod -L来锁密码

4. 强制用户帐号过期chage -d 0 username 5. 解锁用户帐号

1. vi /etc/pam.d/system-auth as root.

2. Look for the following two lines:

password requisite pam_cracklib.so try_first_pass retry=3

password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok 3. Comment out the first of the two lines:

#password requisite pam_cracklib.so try_first_pass retry=3

4. Remove use_authtok on the second line. Otherwise you’ll get “passwd: Authentication information cannot be recovered” error.

password sufficient pam_unix.so md5 shadow nullok try_first_pass

5. That’s it. Try changing your password again. 1. 安装

tigervnc-server-module x86_64 1.1.0-16.el6.centos

Installing:

tigervnc x86_64 1.1.0-16.el6.centos updates 185 k tigervnc-server x86_64 1.1.0-16.el6.centos updates 1.0M

Installing for dependencies:

xorg-x11-fonts-misc noarch 7.2-9.1.el6

2. root 用户 vncserver

在用户下,vncsever,在用户目录下出现.vnc目录。同时提示输入密码

3. 进入 .vnc目录,配置xstartup

gedit xstartup

添加

xsetroot -solid grey

xterm -geometry 80x24+10+10 -ls -title \gnome-session &

gedit /etc/sysconfig/vncservers

VNCSERVERS=\

VNCSERVERARGS[1]=\

4. 启动

/sbin/service vncserver start

或者 # service vncserver restart

5. 添加防火墙 192.168.137.3:1 gedit /etc/sysconfig/iptables

-A RH-Firewall-l-INPUT -p tcp -m tcp --dport 5901 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT

/etc/init.d/iptables restart

6. vnc 链接即可

7. 切换 新用户

命令 vncserver 提示输入新密码

在/etc/sysconfig/vncservers 添加桌面号,需要在su权限下 在/etc/sudoers里添加 xxx ALL=(ALL) ALL

export DISPLAY=:0

xhost +

解决Gtk-WARNING **: cannot open display: :0.0

8.用户

添加组,groupadd -g 501 test

添加用过 useradd -u 601 -G 501 user01

user01 uid = 601 同时在 601组和501 组里

linux下强制新用户首次登陆修改密码 1. 使用useradd添加用户 2. 使用passwd配置用户密码 3. 使用usermod -L来锁密码

4. 强制用户帐号过期chage -d 0 username 5. 解锁用户帐号

1. vi /etc/pam.d/system-auth as root.

2. Look for the following two lines:

password requisite pam_cracklib.so try_first_pass retry=3

password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok 3. Comment out the first of the two lines:

#password requisite pam_cracklib.so try_first_pass retry=3

4. Remove use_authtok on the second line. Otherwise you’ll get “passwd: Authentication information cannot be recovered” error.

password sufficient pam_unix.so md5 shadow nullok try_first_pass

5. That’s it. Try changing your password again.

本文来源:https://www.bwwdw.com/article/mrgf.html

Top