赞
踩
$ sudo apt install tightvncserver // 命令过后并没有启动服务器
// 这个包没有 systemd 脚本,其不被 systemd 管理!!!
$ cat ~/.vnc/xstartup
#!/bin/sh
xrdb "$HOME/.Xresources"
xsetroot -solid grey
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
# Fix to make GNOME work
export XKL_XMODMAP_DISABLE=1
/etc/X11/Xsession
$ vncserver // 启动服务器(过程中设置密码) , // listen 端口 5901
// 此时用vnc 连接 (192.168.1.250:5901) , 获得灰色画面
$ vncserver -kill :1 // 销毁服务器
#!/bin/sh
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
export XKL_XMODMAP_DISABLE=1
export XDG_CURRENT_DESKTOP="GNOME-Flashback:GNOME"
export XDG_MENU_PREFIX="gnome-flashback-"
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#gnome-terminal &
#nautilus &
gnome-session --session=gnome-flashback-metacity --disable-acceleration-check &
vncserver // 还是监听 5901
Real VNC Viewer 连接 192.168.1.xxx:5901
获得了桌面,但是并不好看,TODO!
安卓侧, AVNC 也可以 连接 192.168.1.xxx:5901 获得桌面
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。