Author Topic: Ubuntu 9.10 Karmic + FreeNX server  (Read 1666 times)

Whitenoise

  • Administrator
  • Full Member
  • *****
  • Posts: 149
    • View Profile
Ubuntu 9.10 Karmic + FreeNX server
« on: March 07, 2010, 02:17:57 pm »
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:

Code: [Select]
cd /root
touch install_freenx
chmod u+x install_freenx

Ora editiamo in file con:

Code: [Select]
nano install_freenx
e copiamo quanto segue:

Code: [Select]
#!/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 --auto

Infine eseguiamo:

Code: [Select]
./install_freenx
« Last Edit: March 08, 2010, 12:48:31 am by Whitenoise »

carlino1994

  • Newbie
  • *
  • Posts: 42
    • View Profile
    • phpBBItalia.net
Re: Ubuntu 9.10 Karmic + FreeNX server
« Reply #1 on: March 07, 2010, 03:30:34 pm »
Per installare Gnome, io invece ho eseguito questo semplice comando:
Code: [Select]
apt-get install gnome

Whitenoise

  • Administrator
  • Full Member
  • *****
  • Posts: 149
    • View Profile
Re: Ubuntu 9.10 Karmic + FreeNX server
« Reply #2 on: March 07, 2010, 04:39:36 pm »
non basta in quanto in quel modo installi solo le basi di gnome e non un intero desktop gnome/ubuntu.