<?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/"
	>

<channel>
	<title>@ramgad.com! &#187; linux</title>
	<atom:link href="http://www.ramgad.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ramgad.com</link>
	<description>Patience is bitter, but its fruit is sweet. (Aristotle)</description>
	<pubDate>Sat, 03 Jan 2009 06:38:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to learn linux</title>
		<link>http://www.ramgad.com/2008/10/05/how-to-learn-linux/</link>
		<comments>http://www.ramgad.com/2008/10/05/how-to-learn-linux/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 23:13:04 +0000</pubDate>
		<dc:creator>Jeannot Muller</dc:creator>
		
		<category><![CDATA[learning]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.ramgad.com/?p=125</guid>
		<description><![CDATA[I&#8217;m often asked how someone can easily learn linux, the shell, and all the fancy stuff, which makes linux or unix based operating systems much easier than working with windows.
First their is no easy way to learn something new, you need experience and yes, you need good tutorials as well. I personally believe that linuxcommand.org [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>I&#8217;m often asked how someone can easily learn linux, the shell, and all the fancy stuff, which makes linux or unix based operating systems much easier than working with windows.</p>
<p>First their is no easy way to learn something new, you need experience and yes, you need good tutorials as well. I personally believe that <a href="http://linuxcommand.org/" target="_blank">linuxcommand.org</a> is one of the best ressource these days to get a well explained overwiew on linux and the shell commands. </p>
<p>I&#8217;ll add more resource I know in the future. Promised.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://www.ramgad.com/2008/10/05/how-to-learn-linux/')" href="http://www.sphere.com/search?q=sphereit:http://www.ramgad.com/2008/10/05/how-to-learn-linux/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.ramgad.com/2008/10/05/how-to-learn-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Migrating from Debian Etch to Lenny</title>
		<link>http://www.ramgad.com/2008/08/03/migrating-from-debian-etch-to-lenny/</link>
		<comments>http://www.ramgad.com/2008/08/03/migrating-from-debian-etch-to-lenny/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 09:32:16 +0000</pubDate>
		<dc:creator>Jeannot Muller</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[operating systems]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[etch]]></category>

		<category><![CDATA[lenny]]></category>

		<category><![CDATA[migration]]></category>

		<guid isPermaLink="false">http://www.ramgad.com/?p=61</guid>
		<description><![CDATA[Lenny will be the next stable release after Debian Etch. It has today still the status unstable, but worked for me without any issues in a virtual machine on my mac. Hence, I decided today to move my servers on Lenny. Upgrade on a 1&#38;1 AMD Rootserver is quite easy.
Juste replace in your /etc/apt/sources.list all [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Lenny will be the next stable release after Debian Etch. It has today still the status unstable, but worked for me without any issues in a virtual machine on my mac. Hence, I decided today to move my servers on Lenny. Upgrade on a 1&amp;1 AMD Rootserver is quite easy.</p>
<p>Juste replace in your /etc/apt/sources.list all &#8216;etch&#8217; statements with &#8216;lenny&#8217;.</p>
<p>then type the following:</p>
<pre class="syntax-highlight:bash">
aptitude update
aptitude dist-upgrade
aptitude upgrade
aptitude update
aptitude upgrade</pre>
<p>Upgrade worked for my without any major issues within a couple of minutes. However mySQL will not start properly and Apache2 will reset your may-be redirect commands (e.g. AllowOverride All to AllowOverride None in apache2.conf or httpd.conf). Please correct the Apache2 conf files and restart your server with /etc/init.d/apache2 restart.</p>
<p>As for the mySQL Error, the error message is self-explaining:</p>
<pre class="syntax-highlight:bash">
/etc/init.d/mysql:ERROR: Using expire_logs_days without log_bin crashes
</pre>
<p>Just go to your /etc/myqsl/my.conf file. The parameter &#8216;expire_logs_days&#8217; requires now the &#8216;log_bin&#8217; parameter be turned on. Open the file and turn &#8216;log_bin&#8217; on (e.g, removing the &#8216;#&#8217; character infront of it).</p>
<p>Afterwards you only need to restart your mysql server with /etc/initd./mysql restart, and you whole rootserver should now run smoothly on Debian Lenny.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://www.ramgad.com/2008/08/03/migrating-from-debian-etch-to-lenny/')" href="http://www.sphere.com/search?q=sphereit:http://www.ramgad.com/2008/08/03/migrating-from-debian-etch-to-lenny/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.ramgad.com/2008/08/03/migrating-from-debian-etch-to-lenny/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Outsource DNS server for rootserver</title>
		<link>http://www.ramgad.com/2008/05/19/outsource-dns-server-for-rootserver/</link>
		<comments>http://www.ramgad.com/2008/05/19/outsource-dns-server-for-rootserver/#comments</comments>
		<pubDate>Mon, 19 May 2008 21:07:23 +0000</pubDate>
		<dc:creator>Jeannot Muller</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[operating systems]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[dns]]></category>

		<category><![CDATA[dns-server]]></category>

		<category><![CDATA[rootserver]]></category>

		<guid isPermaLink="false">http://www.ramgad.com/?p=121</guid>
		<description><![CDATA[If you&#8217;re running an own rootserver you often are in the situation that you need to make changes on your DNS settings mainly through a web interface of your provider. One main issue is that worldwide update of all DNS servers can easily take over 48 hours.
Zoneedit.com solves this issue. Just connect once your DNS [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>If you&#8217;re running an own rootserver you often are in the situation that you need to make changes on your DNS settings mainly through a web interface of your provider. One main issue is that worldwide update of all DNS servers can easily take over 48 hours.</p>
<p><a href="http://www.zoneedit.com/">Zoneedit.com </a>solves this issue. Just connect once your DNS server settings to zoneedit and you&#8217;re done. Make all necessary changes then on your <a href="http://www.zoneedit.com/">zoneedit.com</a> account (for instance rooting of emails to google.com etc.). All these changes are updated in a minute and give you all the freedem you need for all your plans you have with your dedicated rootserver.</p>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://www.ramgad.com/2008/05/19/outsource-dns-server-for-rootserver/')" href="http://www.sphere.com/search?q=sphereit:http://www.ramgad.com/2008/05/19/outsource-dns-server-for-rootserver/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.ramgad.com/2008/05/19/outsource-dns-server-for-rootserver/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kernel 2.6.25.1 For 1and1 XXL Server</title>
		<link>http://www.ramgad.com/2008/05/15/kernel-26251-for-1and1-xxl-server/</link>
		<comments>http://www.ramgad.com/2008/05/15/kernel-26251-for-1and1-xxl-server/#comments</comments>
		<pubDate>Wed, 14 May 2008 23:14:49 +0000</pubDate>
		<dc:creator>Jeannot Muller</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[operating systems]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://www.ramgad.com/?p=127</guid>
		<description><![CDATA[Alexander Kasper from Hockwald-ITcompiled a 2.6.25.1 Kernel for 1&#38;1 AMD64-Bit Server.
After downloading (i.e. to /tmp/ folder), you can install your brand new kernel with the following command:
Now we have to install the kernel by the following command.
dpkg --install linux-image-26251_custom10002052008_amd64.deb
Please check /boot/grub/menu.lst for the correct settings.
Either you check the pointer of vmlinuz to your new kernel [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p>Alexander Kasper from <a href="http://www.hochwald-it.de/blog/" target="_blank">Hockwald-IT</a>compiled a <a href="http://www.hochwald-it.de/blog/2008/kernel-26251-fur-1und1-xxl-server-amd-64-bit.html" target="_blank">2.6.25.1 Kernel</a> for 1&amp;1 AMD64-Bit Server.</p>
<p>After downloading (i.e. to /tmp/ folder), you can install your brand new kernel with the following command:<br />
Now we have to install the kernel by the following command.</p>
<pre class="syntax-highlight:php">dpkg --install linux-image-26251_custom10002052008_amd64.deb</pre>
<p>Please check /boot/grub/menu.lst for the correct settings.</p>
<p>Either you check the pointer of vmlinuz to your new kernel in /boot/</p>
<pre class="syntax-highlight:php">ln -sf /boot/vmlinuz-2.6.25.1 /boot/vmlinuz</pre>
<p>or you change /boot/grub/menu.lst accordingly. For the above mentioned kernel it has to look somehow like this:</p>
<blockquote><p>serial &#8211;unit=0 &#8211;speed=57600<br />
terminal &#8211;timeout=10 serial console</p>
<p>default=0<br />
timeout=5</p>
<p>title linux with serial console<br />
root (hd0,0)<br />
kernel /boot/vmlinuz-2.6.25.1 ro root=/dev/md1 console=tty0 console=ttyS0,57600</p>
<p>title linux.old<br />
root (hd0,0)<br />
kernel /boot/vmlinuz.old ro root=/dev/md1 console=tty0 console=ttyS0,57600</p>
<p>### BEGIN AUTOMAGIC KERNELS LIST<br />
## lines between the AUTOMAGIC KERNELS LIST markers will be modified<br />
## by the debian update-grub script except for the default options below</p>
<p>## DO NOT UNCOMMENT THEM, Just edit them to your needs</p>
<p>## ## Start Default Options ##<br />
## default kernel options<br />
## default kernel options for automagic boot options<br />
## If you want special options for specific kernels use kopt_x_y_z</p></blockquote>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://www.ramgad.com/2008/05/15/kernel-26251-for-1and1-xxl-server/')" href="http://www.sphere.com/search?q=sphereit:http://www.ramgad.com/2008/05/15/kernel-26251-for-1and1-xxl-server/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.ramgad.com/2008/05/15/kernel-26251-for-1and1-xxl-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rootserver kernel upgrading</title>
		<link>http://www.ramgad.com/2008/04/10/rootserver-kernel-upgrading/</link>
		<comments>http://www.ramgad.com/2008/04/10/rootserver-kernel-upgrading/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 20:47:07 +0000</pubDate>
		<dc:creator>Jeannot Muller</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[operating systems]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[kernel]]></category>

		<category><![CDATA[rootserver]]></category>

		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.ramgad.com/?p=144</guid>
		<description><![CDATA[Last Update: 2nd November 2008
Connect to your server via ssh and then download the latest kernel version. Best practice is to look first via ftp for the correct file.
Type within your terminal: 
ftp update.onlinehome-server.com
User: anonymous
Password: guest
cd local-updates/kernel/deb/
ls
exit

The filename of the latest version is: linux-image-2.6.27.4-20081028a_rootserver.1_amd64.deb
Let&#8217;s download this version:
wget ftp://update.onlinehome-server.com/local-updates/kernel/deb/linux-image-2.6.27.4-20081028a_rootserver.1_amd64.deb
Now we have to install the kernel by [...]]]></description>
			<content:encoded><![CDATA[<!-- sphereit start --><p><strong>Last Update: 2nd November 2008</strong></p>
<p>Connect to your server via ssh and then download the latest kernel version. Best practice is to look first via ftp for the correct file.</p>
<p>Type within your terminal: </p>
<blockquote><p>ftp update.onlinehome-server.com<br />
User: anonymous<br />
Password: guest<br />
cd local-updates/kernel/deb/<br />
ls<br />
exit
</p></blockquote>
<p>The filename of the latest version is: linux-image-2.6.27.4-20081028a_rootserver.1_amd64.deb<br />
Let&#8217;s download this version:</p>
<pre class="syntax-highlight:sh">wget ftp://update.onlinehome-server.com/local-updates/kernel/deb/linux-image-2.6.27.4-20081028a_rootserver.1_amd64.deb</pre>
<p>Now we have to install the kernel by the following command.</p>
<pre class="syntax-highlight:sh">dpkg --install linux-image-2.6.27.4-20081028a_rootserver.1_amd64.deb</pre>
<p>Either you check the pointer of vmlinuz to your new kernel in /boot/</p>
<pre class="syntax-highlight:sh">ln -sf /boot/vmlinuz-2.6.27.4-20081028a /boot/vmlinuz</pre>
<p><b>Please replace vmlinuz-2.x.y.z by the release you want to add!</b></p>
<p>or you change /boot/grub/menu.lst accordingly. For the above mentioned kernel it has to look somehow like this:</p>
<blockquote><p>serial &#8211;unit=0 &#8211;speed=57600<br />
terminal &#8211;timeout=10 serial console</p>
<p>default=0<br />
timeout=5</p>
<p>title linux with serial console<br />
root (hd0,0)<br />
kernel /boot/vmlinuz-2.6.27.4-20081028a ro root=/dev/md1 console=tty0 console=ttyS0,57600</p>
<p>title linux.old<br />
root (hd0,0)<br />
kernel /boot/vmlinuz.old ro root=/dev/md1 console=tty0 console=ttyS0,57600</p>
<p>### BEGIN AUTOMAGIC KERNELS LIST<br />
## lines between the AUTOMAGIC KERNELS LIST markers will be modified<br />
## by the debian update-grub script except for the default options below</p>
<p>## DO NOT UNCOMMENT THEM, Just edit them to your needs</p>
<p>## ## Start Default Options ##<br />
## default kernel options<br />
## default kernel options for automagic boot options<br />
## If you want special options for specific kernels use kopt_x_y_z</p></blockquote>
<!-- sphereit end --><span style="margin-bottom:40px; border-bottom:none;"><a class="iconsphere" title="Sphere: Related Content" onclick="return Sphere.Widget.search('http://www.ramgad.com/2008/04/10/rootserver-kernel-upgrading/')" href="http://www.sphere.com/search?q=sphereit:http://www.ramgad.com/2008/04/10/rootserver-kernel-upgrading/">Sphere: Related Content</a></span><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.ramgad.com/2008/04/10/rootserver-kernel-upgrading/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
