ubuntu vnc key d show desktop

3  solutions: 1) dbconf   org > gnome > desktop > wm > keybindings change show-desktop = [‘<Alt>d’] 2) 1. sudo apt-get install compizconfig-settings-manager 2. Run the compiz config manager: ccsm (no sudo) 3. In the compiz config manager: General (left side) -> General Options (right side) -> Key bindings (tab) -> Show Desktop (with the […]

ubuntu vncserver on boot

Install vncserver and run it to set up password. Create file as /etc/init.d/vncserver (DONT FORGET TO MODIFY PARAMS LIKE USER). #!/bin/sh -e ### BEGIN INIT INFO # Provides: vncserver # Required-Start: networking # Default-Start: S # Default-Stop: 0 6 ### END INIT INFO PATH=”$PATH:/usr/X11R6/bin/” # The Username:Group that will run VNC export USER=”MYUSER” #${RUNAS} # […]

tightvncserver ubuntu no menu

sudo apt-get install gnome-panel /home/user/.vnc/xstartup #!/bin/sh # Uncomment the following two lines for normal desktop: unset SESSION_MANAGER unset DBUS_SESSION_BUS_ADDRESS #exec /etc/X11/xinit/xinitrc gnome-session –session=gnome & [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & #x-terminal-emulator -geometry 1280×1024+10+10 -ls -title “$VNCDESKTOP Desktop” & #x-window-manager & gnome-panel […]

vnc server on raspberry pi

Install tight VNC: “sudo apt-get install tightvncserver” Run : “tightvncserver” Start a  VNC session with following params : “vncserver :1 -geometry 1024×728 -depth 24”