đź–– Greetings, this site is prototype for low code CMS deployments: Discover MoreStar on GitHub

SKNOW.IT

Cover Image for How to Install a GUI on Ubuntu VPS

How to Install a GUI on Ubuntu VPS

A GUI or Graphical User Interface…

After you’ve purchased your VPS, and connected to to your VPS, first run apt-get update.

apt-get update

Now install desktop, vps images won’t have this by default

apt-get install ubuntu-desktop

Configure the Gnome Desktop Manager and XServer

 sudo service gdm start  sudo dpkg-reconfigure xserver-xorg 

Install VNC software

sudo apt-get install vnc4server

Setup password

vncpasswd
enter a new [password]

Start vncserver

vncserver

Now you will be able to connect to ubuntu VPS with VNC.

On ubuntu, it won’t start “vncconfig” on booting. You need to run “vncconfig” to share clip board between vnc.

vncconfig


On Ubuntu 10.04, i get a terminal window on login. You can start gui application from this window. It use less CPU. If you need genome desktop, edit file

vi /root/.vnc/xstartup

Find

x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &

Replace with

xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
gnome-session &

GET IN TOUCH

Shaun Knowles
Shaun Knowles
Wrote this on
Categrised as:
Hosting

Taggeddeployment


More Articles

How to Create a Block Pattern for WordPress

Creating Block Patterns for WordPress: A Beginner’s Guide Want to streamline your website design process? Block Patterns offer pre-designed arrangements of blocks that you can easily insert into your pages and posts. Let’s learn how to create your own. 1. Understand Block Patterns: 2. Set Up Your Development Environment: 3. Create a Block Pattern Directory: […]

Read More… from How to Create a Block Pattern for WordPress

Shaun Knowles
Shaun Knowles
Cover Image for How to Check and Update Your Git Version

How to Check and Update Your Git Version

Change is inevitable and, in the technical world, usually beneficial. Keeping your Git installation up to date is highly recommended, it gives you all the latest features, improvements, bug fixes, and more. Let’s see how to check which Git version you’re currently using and how to update it to the latest version. To stay up […]

Read More… from How to Check and Update Your Git Version

Shaun Knowles
Shaun Knowles