Created
December 9, 2014 02:08
-
-
Save ricardoanguiano/7be79d650856ae4c7188 to your computer and use it in GitHub Desktop.
lightdm vncserver setup on ubuntu 12.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# apt-get install gnome-panel | |
# apt-get install tightvncserver | |
# vncpasswd /etc/vncpasswd | |
/etc/lightdm/lightdm.conf addition | |
[VNCServer] | |
enabled=true | |
greeter-session=lightdm-gtk-greeter | |
user-session=gnome | |
command=/usr/bin/Xvnc -rfbauth /etc/vncpasswd | |
port=5901 | |
width=1920 | |
# height=1080 | |
# add pixels to height for toolbars so applications get 1080 height | |
height=1128 # shooting for 1080 | |
depth=24 | |
Connect via VNC using ip::5901 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks for sharing .