I want to install ubuntu-desktop gui to my server and connect it to via vnc. I read a lot of articles but I couldn’t make any success. I installed apt-get install ubuntu-desktop and thinvncserver but when i connect only thing i see is a grey screen. I don’t know how to deal with this and idk how to use “nano” to edit files.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
@Fattur Actually, I need to seperately install sudo apt-get install ubuntu-gnome-desktop
And install this: sudo apt-get install gnome-core
Okey I think I’ve done it by these steps. Thank’s a lot to @sierracircle .
create new user by writing these: (vnc is username. you can choose whatever you want)
adduser vnc
enter a password
reboot
then login as new user
then write su and get root access then install those packges
sudo apt-get update
sudo apt-get install gnome-shell && ubuntu-gnome-desktop && ubuntu-core -y
sudo apt-get install vnc4server -y
after installed these exit and be back to vnc(get rid of root rights) start vnc server by writing
vncserver
it should be asked for a password. Define a password. You will use it to connect your server.
go to ftp manager and connect to your files find this file and make the changes that told at below
/etc/init/gdm.conf
comment out these by #
#start on ((filesystem
# and runlevel [!06]
# and started dbus
# and plymouth-ready)
# or runlevel PREVLEVEL=S)
this will prevent gnome from starting at your console
then again in file manager goto your home direction and find the folder of the newly created user. in my case it was: /home/vnc in that folder you must see a folder as “.vnc” inside of that there is a file named “xstartup” . Exact path is :
/home/vnc/.vnc/xstartup
Edit it with the following changes:
#!/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 &
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
#export XKL_XMODMAP_DISABLE=1
#unset SESSION_MANAGER
#unset DBUS_SESSION_BUS_ADDRESS
#gnome-session --session=ubuntu -geometry 1024x768 -ls -title "$VNCDESKTOP Desktop" &
metacity &
gnome-settings-daemon &
gnome-panel &
save the file and reboot your droplet then login with newly created user (vnc) and start vncserver again with
vncserver
command. then connect to it by a vnc program. To address write your droplets ip and add vnc port. It should be like
192.168.1.1:5901 and login with your vnc password. That’s all. Happy end :)
http://i.imgur.com/5CxLVGR.png
Edit: Oh there is a little problem which is System Settings under System Tools is inaccessible
This comment has been deleted
you need to kill your vncserver and start as your user:
then restart(logged in as a regular user:
have you installed vnc4server?
also, try running vnc4server once…it might create the folder. log in as your user and:
should be in your users home directory. So if your username is fattur, it would be /home/fattur/.vnc
There is also a DO Tutorial
https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-14-04
ubuntu desktop is a little heavy for vnc (and slow)
I recommend this:
then, sftp into your home-directory, and find your .vnc directory. Inside there you will find a file named xstartup. Edit it with the following:
save. reboot.
start a vnc session with this (you can set the screen-size to whatever you want to fit your monitors better):
now login with your vnc client…it takes a minute for everything to load, but you should have a classic gnome interface that is much snappier than ubuntu desktop
ubuntu desktop is a little heavy for vnc (and slow)
I recommend this:
then, sftp into your home-directory, and find your .vnc directory. Inside there you will find a file named xstartup. Edit it with the following:
save. reboot.
start a vnc session with this (you can set the screen-size to whatever you want to fit your monitors better):
now login with your vnc client…it takes a minute for everything to load, but you should have a classic gnome interface that is much snappier than ubuntu desktop
@sierracircle thank’s. Could you look at my answer below? I’ve done it by those steps. I want to learn your thoughts about it :D Thank’s a lot. Really. Only problem is I can’t access the System Settings under System Tools. I didn’t checked a lot of things but that was the first thing i noticed.
I logged in with another user and i made the file edits but result is the same: http://imgur.com/AVbyv33
I’m using root account and I make the changes on root account
when you start vnc, and when you log in, are you using your root account? or are you using a different user?