Vnc
vnc 後不顯示 xterm 視窗
當我為我的 linux 機器創建 vnc 時,它會在我登錄時顯示桌面。我只想要 xterm 視窗。我在 /bin/xterm 下看到了 xterm。請幫忙。
我們需要使用以下內容編輯文件 $HOME/.vnc/xstartup:
#!/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" & #twm & /opt/fvwm/bin/fvwm2 &
這將關閉桌面並僅顯示 xterm 視窗。