ubuntua安装VNC Server

来源:互联网 发布:超级优化主角的女人 编辑:程序博客网 时间:2024/05/12 20:29

安装文件
sudo apt-get install vnc4server
修改VNC Password,不能太短
root@ubuntu:~# vncserver :1
root@ubuntu100:~# vncserver :1

You will require a password to access your desktops.

Password:
Verify:
设置期待文件使用gnome
#!/bin/sh

 # Uncomment the following two lines for normal desktop:
  unset SESSION_MANAGER
  exec /etc/X11/xinit/xinitrc

 [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
 [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
 xsetroot -solid grey
 vncconfig -iconic &
 xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
 gnome-session &
 #twm &
# startx &

原创粉丝点击