<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Florian Jensen&#039;s Weblog &#187; nx</title>
	<atom:link href="http://florianjensen.com/tag/nx/feed/" rel="self" type="application/rss+xml" />
	<link>http://florianjensen.com</link>
	<description>making the world a better place!</description>
	<lastBuildDate>Mon, 14 Feb 2011 12:19:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Howto: Install a frontend on your Server with NX</title>
		<link>http://florianjensen.com/2007/12/31/howto-install-a-frontend-on-your-server-with-nx/</link>
		<comments>http://florianjensen.com/2007/12/31/howto-install-a-frontend-on-your-server-with-nx/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 02:39:24 +0000</pubDate>
		<dc:creator>Florian Jensen</dc:creator>
				<category><![CDATA[Flosoft.biz]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[flexserv]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[nx]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">https://florianjensen.com/2007/12/31/howto-install-a-frontend-on-your-server-with-nx/</guid>
		<description><![CDATA[This howto will explain to you how to install a frontend on your server which is accessible via NX. This tutorial is for Debian based systems, and has been tested on an Flosoft.biz FlexServ (RPS).
1. Check the basic Debian setup.
We need to modify the sources.list
vi /etc/apt/sources.list
Add the following 2 lines:
deb http://ftp.debian.org/debian etch main contrib non-free
deb-src [...]]]></description>
			<content:encoded><![CDATA[<p>This howto will explain to you how to install a frontend on your server which is accessible via NX. This tutorial is for Debian based systems, and has been tested on an Flosoft.biz FlexServ (RPS).</p>
<p><strong>1. Check the basic Debian setup.</strong></p>
<p>We need to modify the sources.list</p>
<blockquote><p>vi /etc/apt/sources.list</p></blockquote>
<p>Add the following 2 lines:</p>
<blockquote><p>deb http://ftp.debian.org/debian etch main contrib non-free<br />
deb-src http://ftp.debian.org/debian etch main contrib non-free</p></blockquote>
<p>Close and save (:wq) and run this command to update:</p>
<blockquote><p>apt-get update</p></blockquote>
<p>Then check if your system is up to date, and if necessary install updates.</p>
<blockquote><p>apt-get dist-upgrade</p></blockquote>
<p><strong>2. Installing the X window manager xorg.</strong></p>
<p>Just type in:</p>
<blockquote><p>apt-get install xserver-xorg-core xorg</p></blockquote>
<p>There will be a few questions at the end, for now just go with the defaults.</p>
<p><strong>3. The Login Manager</strong></p>
<p>Now you have 3 options. You can install any of the following Login Manager&#8217;s. Your options are:</p>
<ol>
<li>KDM<br />
KDM is probably the best if you want to use KDE</li>
<li>GDM<br />
GDM is probably the best if you want to use Gnome</li>
<li>XDM<br />
XDM is probably the best if you want to use Fluxbox or XFCE</li>
</ol>
<p>Once you have chosen one of the GUIs run <em>one</em> of the following three commands:</p>
<blockquote><p>apt-get install kdm<br />
apt-get install gdm<br />
apt-get install xdm</p></blockquote>
<p><strong>4. The GUI</strong></p>
<p>Now again, you have a choice of different Graphical User Interfaces.</p>
<ol>
<li>KDE<br />
Personally my favourite on Debian</li>
<li>Gnome<br />
My favourite on Ubuntu</li>
<li>Fluxbox<br />
Never used it</li>
<li>XFCE4<br />
Never used it</li>
</ol>
<p>Once you have chosen one of the GUIs run <em>one</em> of the following three commands:</p>
<blockquote><p>apt-get install kde<br />
apt-get install gnome<br />
apt-get install xfce4<br />
apt-get install fluxbox</p></blockquote>
<p>Thats all for the base setup.</p>
<p><strong>5. Reboot</strong></p>
<p>You should reboot to make sure the X server starts.</p>
<blockquote><p>shutdown -r now</p></blockquote>
<p>6. Create your user</p>
<p>Once your server has rebooted, and you have relogged in, you should create a user which you will use for the GUI.</p>
<blockquote><p>adduser mynewusername</p></blockquote>
<p><strong>6. Getting the NX packages</strong></p>
<p>Now we need to setup the NX server, so that you are able to connect to the server from your home. So you need to download the NX server pacakges:</p>
<blockquote><p>wget http://64.34.161.181/download/3.1.0/Linux/nxclient_3.1.0-2_i386.deb<br />
wget http://64.34.161.181/download/3.1.0/Linux/nxnode_3.1.0-3_i386.deb<br />
wget http://64.34.161.181/download/3.1.0/Linux/FE/nxserver_3.1.0-2_i386.deb</p></blockquote>
<p><strong>7. Installing the NX packages</strong></p>
<p>As you have the packages now in your directory, you need to install them via dpkg.</p>
<blockquote><p>  dpkg -i nxclient_3.1.0-2_i386.deb<br />
dpkg -i nxnode_3.1.0-3_i386.deb<br />
dpkg -i nxserver_3.1.0-2_i386.deb</p></blockquote>
<p><strong>8. The Services</strong></p>
<p>Now we need to make sure the services are running.</p>
<blockquote><p>/etc/init.d/ssh restart<br />
/etc/init.d/nxserver restart</p></blockquote>
<p><strong>9. The Browser</strong></p>
<p>Last, but not least&#8230; well actually least &#8230; Firefox! You will need a nice Browser, so Firefox is the way to go.</p>
<blockquote><p>apt-get install firefox</p></blockquote>
<p>Now you&#8217;re system is setup and you&#8217;re ready to use it. Simply setup your NX Client and have fun!</p>
<p>If you have any questions, don&#8217;t hesitate to ask me or just leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://florianjensen.com/2007/12/31/howto-install-a-frontend-on-your-server-with-nx/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

