Questo è un breve script per installare Gnome e
FreeNX server sulla nostra distribuzione base Ubuntu Karmic.
Loggatevi alla vps tramite ssh.
Create un file per lo script:
cd /root
touch install_freenx
chmod u+x install_freenxOra editiamo in file con:
nano install_freenxe copiamo quanto segue:
#!/bin/bash
apt-get update
echo dictionaries-common dictionaries-common/default-ispell select "english (Webster's Second International English wordlist)" | debconf-set-selections
echo dictionaries-common dictionaries-common/default-wordlist select "english (Webster's Second International English wordlist)" | debconf-set-selections
apt-get install dictionaries-common
apt-get install ubuntu-desktop -y
apt-get install python-software-properties -y
add-apt-repository ppa:freenx-team
apt-get update
apt-get install freenx -y
/usr/lib/nx/nxsetup --install --auto
apt-get install ubuntu-desktop -y
apt-get install python-software-properties -y
add-apt-repository ppa:freenx-team
apt-get install freenx -y
/usr/lib/nx/nxsetup --install --autoInfine eseguiamo:
./install_freenx