CentOS 7.6 配置VNC远程访问服务器图形界面
1. 安装VNC
1.1 安装图形界面
- yum groupinstall "development tools"
- yum groupinstall "gnome desktop"
1.2 安装配置vnc
- yum install tigervnc tigervnc-server -y
- vncserver :n
- #这里的n是 sessionnumber,不指定默认为1,也可以是2、3等等。第一次会提示输入密码,以后可以使用 vncpasswd 命令修改密码。
具体如下:
- [root@oracle ~]# vncserver :1
- You will require a password to access your desktops.
- Password:
- Verify:
- Would you like to enter a view-only password (y/n)? y
- Password:
- Verify:
- xauth: file /root/.Xauthority does not exist
- New 'oracle.sysit.cn:1 (root)' desktop is oracle.sysit.cn:1
- Creating default startup script /root/.vnc/xstartup
- Creating default config /root/.vnc/config
- Starting applications specified in /root/.vnc/xstartup
- Log file is /root/.vnc/oracle.sysit.cn:1.log
- [root@oracle ~]# netstat -antlp | grep vnc
- tcp 0 0 0.0.0.0:5901 0.0.0.0:* LISTEN 31009/Xvnc
- tcp 0 0 0.0.0.0:6001 0.0.0.0:* LISTEN 31009/Xvnc
- tcp6 0 0 :::5901 :::* LISTEN 31009/Xvnc
- tcp6 0 0 :::6001 :::* LISTEN 31009/Xvnc
1.3 关闭vncserver
- [root@oracle ~]# vncserver -kill :1
- Killing Xvnc process ID 31009
1.4 指定分辨率和色深
默认参数,vncserver 显示会图标分辨率会比较小,我们可以指定参数。
- vncserver :1 -geometry 1366x768 -alwaysshared -depth 24
- -geometry 指定分辨率,-alwaysshared代表允许多用户同时登录, -depth代为色深,参数有8,16,24,32。
2. 使用vnc-viewer访问
vnc-viewer下载地址:http://www.canadiancontent.net/tech/download/VNC_Viewer.html
至此可以远程操作。
文章摘自:CentOS 7.6 配置VNC远程访问服务器图形界面 - 云+社区 - 腾讯云 (tencent.com)
Comments NOTHING