nc4server配置过程:
1. 配置远程控制权限
打开 系统->系统管理->登陆窗口
点击<远程>页面,在样式中选择"与本地相同"
点击"配置XDMCP"按钮,将"遵从非直接请求"的选中状态取消
编辑 /etc/X11/gdm/gdm.conf
代码:
sudo gedit /etc/X11/gdm/gdm.conf
找到[xdmcp]节,将enable改为true
代码:
Enable=True
找到行,# RemoteGreeter=/usr/lib/gdm/gdmlogin 去掉注释
代码:
RemoteGreeter=/usr/lib/gdm/gdmlogin
2. 安装所需软件
sudo apt-get install vnc4server xinetd
3. 设置VNC口令
sudo vncpasswd /root/.vncpasswd
4. 在xinetd中增加VNC服务
代码:
sudo vi /etc/xinetd.d/Xvnc
Xvnc内容如下
代码:
service Xvnc
{
type = UNLISTED
disable = no
socket_type = stream
protocol = tcp
wait = yes
user = root
server = /usr/bin/Xvnc
server_args = -inetd :1 -query localhost -geometry 1024x768 -depth 16 -once -fp /usr/share/fonts/X11/misc -DisconnectClients=0 -NeverShared passwordFile=/root/.vncpasswd -extension XFIXES
port = 5901
}
5. 启动xinetd服务
sudo /etc/init.d/xinetd stop
sudo killall Xvnc
sudo /etc/init.d/xinetd start
1. 配置远程控制权限
打开 系统->系统管理->登陆窗口
点击<远程>页面,在样式中选择"与本地相同"
点击"配置XDMCP"按钮,将"遵从非直接请求"的选中状态取消
编辑 /etc/X11/gdm/gdm.conf
代码:
sudo gedit /etc/X11/gdm/gdm.conf
找到[xdmcp]节,将enable改为true
代码:
Enable=True
找到行,# RemoteGreeter=/usr/lib/gdm/gdmlogin 去掉注释
代码:
RemoteGreeter=/usr/lib/gdm/gdmlogin
2. 安装所需软件
sudo apt-get install vnc4server xinetd
3. 设置VNC口令
sudo vncpasswd /root/.vncpasswd
4. 在xinetd中增加VNC服务
代码:
sudo vi /etc/xinetd.d/Xvnc
Xvnc内容如下
代码:
引用
service Xvnc
{
type = UNLISTED
disable = no
socket_type = stream
protocol = tcp
wait = yes
user = root
server = /usr/bin/Xvnc
server_args = -inetd :1 -query localhost -geometry 1024x768 -depth 16 -once -fp /usr/share/fonts/X11/misc -DisconnectClients=0 -NeverShared passwordFile=/root/.vncpasswd -extension XFIXES
port = 5901
}
5. 启动xinetd服务
sudo /etc/init.d/xinetd stop
sudo killall Xvnc
sudo /etc/init.d/xinetd start