<?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; flexserv</title>
	<atom:link href="http://florianjensen.com/tag/flexserv/feed/" rel="self" type="application/rss+xml" />
	<link>http://florianjensen.com</link>
	<description>making the world a better place!</description>
	<lastBuildDate>Sat, 21 Apr 2012 18:15:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Installing Lighttpd; PHP5 and MySQL on your Debian Etch</title>
		<link>http://florianjensen.com/2008/01/01/installing-lighttpd-php5-and-mysql-on-your-debian-etch/</link>
		<comments>http://florianjensen.com/2008/01/01/installing-lighttpd-php5-and-mysql-on-your-debian-etch/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 02:46:02 +0000</pubDate>
		<dc:creator>Florian Jensen</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[flexserv]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">https://florianjensen.com/2008/01/01/installing-lighttpd-php5-and-mysql-on-your-debian-etch/</guid>
		<description><![CDATA[Today&#8217;s tutorial is going to explain how to install Lighttpd; PHP5 and MySQL on your FlexServ (RPS) on Debian Etch 4.0.
This is an easy tutorial, and definetly a good place to start.
1. Update the repositories and your system

apt-get update
  apt-get dist-upgrade

2. Install lighttpd

apt-get install lighttpd

3. Install PHP5-CGI

apt-get install php5-cgi

4. Configure lighttpd to use PHP5-CGI
Modify [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s tutorial is going to explain how to install Lighttpd; PHP5 and MySQL on your FlexServ (RPS) on Debian Etch 4.0.</p>
<p>This is an easy tutorial, and definetly a good place to start.</p>
<p><strong>1. Update the repositories and your system</strong></p>
<blockquote>
<p>apt-get update<br />
  apt-get dist-upgrade</p>
</blockquote>
<p><strong>2. Install lighttpd</strong></p>
<blockquote>
<p>apt-get install lighttpd</p>
</blockquote>
<p><strong>3. Install PHP5-CGI</strong></p>
<blockquote>
<p>apt-get install php5-cgi</p>
</blockquote>
<p><strong>4. Configure lighttpd to use PHP5-CGI</strong></p>
<p>Modify the php.ini:</p>
<blockquote>
<p>vi /etc/php5/cgi/php.ini</p>
</blockquote>
<p>Add the following line to it at the end:</p>
<blockquote>
<p>cgi.fix_pathinfo = 1</p>
</blockquote>
<p>Now you need to edit the lighttpd.conf</p>
<blockquote>
<p>vi /etc/lighttpd/lighttpd.conf</p>
</blockquote>
<p>Add the following at the top (in the list):</p>
<blockquote>
<p>&#8220;mod_fastcgi&#8221;,</p>
</blockquote>
<p>Then this at the bottom:</p>
<blockquote>
<p>fastcgi.server = ( &#8220;.php&#8221; =&gt; ((<br />
  &#8220;bin-path&#8221; =&gt; &#8220;/usr/bin/php5-cgi&#8221;, <br />
  &#8220;socket&#8221; =&gt; &#8220;/tmp/php.socket&#8221;                   <br />
    )))</p>
</blockquote>
<p><strong>5. Install and configure MySQL</strong></p>
<p>Title says it all:</p>
<blockquote>
<p>apt-get install mysql-server mysql-client php5-mysql</p>
</blockquote>
<p>Then you should also set a password for the MySQL User root:</p>
<blockquote>
<p>mysqladmin -u root password yourrootsqlpassword</p>
</blockquote>
<p><strong>6. Restart your lighttpd to apply the changes</strong></p>
<blockquote>
<p>/etc/init.d/lighttpd restart</p>
</blockquote>
<p><strong>7. Test it</strong></p>
<p>Ok, the last step is to test it. For that create a new .php file:</p>
<blockquote>
<p>vi /var/www/info.php</p>
</blockquote>
<p>Add the following text to it:</p>
<blockquote>
<p>&lt;?<br />
    php  phpinfo();  <br />
    ?&gt;</p>
</blockquote>
<p>Then check the result by accessing the page in your Webbrowser: http://fs00000.flosoft-servers.net/info.php</p>
<p>If that works, you can enjoy your new Webserver!</p>
]]></content:encoded>
			<wfw:commentRss>http://florianjensen.com/2008/01/01/installing-lighttpd-php5-and-mysql-on-your-debian-etch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2008 and more!</title>
		<link>http://florianjensen.com/2008/01/01/2008-and-more/</link>
		<comments>http://florianjensen.com/2008/01/01/2008-and-more/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 02:13:53 +0000</pubDate>
		<dc:creator>Florian Jensen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[flexserv]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">https://florianjensen.com/2008/01/01/2008-and-more/</guid>
		<description><![CDATA[Hey,
just wanted to say, happy new year!
In the next few hours, you&#8217;ll also find some more tutorials for the Flosoft.biz FlexServ. If you have any request for tutorials, just post them here.
Greets,
Florian Jensen
]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>just wanted to say, happy new year!</p>
<p>In the next few hours, you&#8217;ll also find some more tutorials for the Flosoft.biz FlexServ. If you have any request for tutorials, just post them here.</p>
<p>Greets,</p>
<p>Florian Jensen</p>
]]></content:encoded>
			<wfw:commentRss>http://florianjensen.com/2008/01/01/2008-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>

