Page 1 of 1

Setup Scientific Linux 6 + VNC + Desktop

Posted: 2019 Aug 01, 21:08
by serveroffer
Minimal server requirements: 2GB RAM, 1 vCPU
Operating system: Setup Scientific Linux 6, Centos 6

Update system:

Code: Select all

yum update

Install base apps:

Code: Select all

yum install xorg-x11-apps

Install base desktop environment:

Code: Select all

yum groupinstall Desktop  "Desktop Platform" "X Window System"  "Internet Browser" "Graphical Administration Tools" Fonts

Install VNC server

Code: Select all

yum install vnc*

Edit VNC Server Config:

Code: Select all

nano /etc/sysconfig/vncservers

Update VNC Server settings - set display ID and resolution:

Code: Select all

VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1280x1024 -nolisten tcp"

Set VNC root password:

Code: Select all

vncpasswd
Password:
Verify:

Enable VNC Server automatic startup:

Code: Select all

chkconfig vncserver on

Start VNC Server itself:

Code: Select all

service vncserver start