<?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>Gentoo Blog &#187; Stuff</title>
	<atom:link href="http://gentoo-blog.de/category/stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://gentoo-blog.de</link>
	<description>The ultimate Gentoo Blog</description>
	<lastBuildDate>Sun, 25 Dec 2011 10:48:06 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Compare two fields in Mysql</title>
		<link>http://gentoo-blog.de/stuff/compare-two-fields-in-mysql/</link>
		<comments>http://gentoo-blog.de/stuff/compare-two-fields-in-mysql/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 13:50:37 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/uncategorized/</guid>
		<description><![CDATA[To compare the content of two fields in mysql and print the matching results do the following:
 select * from user where username=password;
This would match all users that have the same username and password
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>To compare the content of two fields in mysql and print the matching results do the following:</p>
<p><code> select * from user where username=password;</code></p>
<p>This would match all users that have the same username and password</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fcompare-two-fields-in-mysql%2F&amp;t=Compare%20two%20fields%20in%20Mysql" id="facebook_share_link_4731">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_4731') || document.getElementById('facebook_share_icon_4731') || document.getElementById('facebook_share_both_4731') || document.getElementById('facebook_share_button_4731');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_4731') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/compare-two-fields-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Update Crypt Field</title>
		<link>http://gentoo-blog.de/stuff/mysql-update-crypt-field/</link>
		<comments>http://gentoo-blog.de/stuff/mysql-update-crypt-field/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 13:47:35 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/uncategorized/</guid>
		<description><![CDATA[This is our mysql table for proftpd with two users. One user has a clear text password &#8216;Clear_text&#8217; and the other user has a Crypt password. The passwords are stored in the field passwd. Which we need to update for the user ftp.
mysql> select * from ftpuser;
+----+----------+-------------------------------------------+-----+------+---------------+---------------+-------+---------------------+---------------------+
&#124; id &#124; userid   &#124; passwd  [...]]]></description>
			<content:encoded><![CDATA[<p>This is our mysql table for proftpd with two users. One user has a clear text password &#8216;Clear_text&#8217; and the other user has a Crypt password. The passwords are stored in the field passwd. Which we need to update for the user ftp.</p>
<p><code>mysql> select * from ftpuser;<br />
+----+----------+-------------------------------------------+-----+------+---------------+---------------+-------+---------------------+---------------------+<br />
| id | userid   | passwd                                    | uid | gid  | homedir       | shell         | count | accessed            | modified            |<br />
+----+----------+-------------------------------------------+-----+------+---------------+---------------+-------+---------------------+---------------------+<br />
| 10 | ftp| *BD0359A2B6ZZHHA6A35B8D06DC1114D92CE3101 | 108 | 1002 | /storage/data | /sbin/nologin |    23 | 2011-01-19 13:07:33 | 2011-01-19 11:47:54 |<br />
| 11 | upload   | Clear_text                              | 108 | 1002 | /storage/data | /sbin/nologin |   529 | 2011-01-19 10:06:28 | 2011-01-06 16:01:30 |<br />
+----+----------+-------------------------------------------+-----+------+---------------+---------------+-------+---------------------+---------------------+</code></p>
<p>We want to update the crypt password from the mysql shell. The following command will update the user ftp with a new crypt password:</p>
<p><code>update ftpuser set passwd=PASSWORD('KLatttGuya') where userid='ftp';</code></p>
<p>You can see the password in clear text here &#8216;KLatttGuya&#8217; because of the option PASSWORD mysql knows that it must store a crypt password.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fmysql-update-crypt-field%2F&amp;t=Mysql%20Update%20Crypt%20Field" id="facebook_share_link_4681">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_4681') || document.getElementById('facebook_share_icon_4681') || document.getElementById('facebook_share_both_4681') || document.getElementById('facebook_share_button_4681');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_4681') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/mysql-update-crypt-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chmod change files or directories recursively to the same value</title>
		<link>http://gentoo-blog.de/stuff/chmod-change-files-or-directories-recursively-to-the-same-value/</link>
		<comments>http://gentoo-blog.de/stuff/chmod-change-files-or-directories-recursively-to-the-same-value/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 13:27:11 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=2642</guid>
		<description><![CDATA[Recursively change all files in your current working directory including files in subdirectories to 644: 
find . -type f -print0 &#124; xargs -0 chmod 644
Recursively change all directories in your current working directory including subdirectories to 755:
find . -type d -print0 &#124; xargs -0 chmod 755
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>Recursively change all files in your current working directory including files in subdirectories to 644: </p>
<p><code>find . -type f -print0 | xargs -0 chmod 644</code></p>
<p>Recursively change all directories in your current working directory including subdirectories to 755:</p>
<p><code>find . -type d -print0 | xargs -0 chmod 755</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fchmod-change-files-or-directories-recursively-to-the-same-value%2F&amp;t=chmod%20change%20files%20or%20directories%20recursively%20to%20the%20same%20value" id="facebook_share_link_2642">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_2642') || document.getElementById('facebook_share_icon_2642') || document.getElementById('facebook_share_both_2642') || document.getElementById('facebook_share_button_2642');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_2642') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/chmod-change-files-or-directories-recursively-to-the-same-value/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Useful Mysql Commands</title>
		<link>http://gentoo-blog.de/stuff/useful-mysql-commands/</link>
		<comments>http://gentoo-blog.de/stuff/useful-mysql-commands/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 06:47:21 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=2382</guid>
		<description><![CDATA[when you see  a # it means use the command from the unix shell. When you see mysql&#62; it means from a MySQL prompt after logging into MySQL.
To login (from unix shell) use -h only if needed.
# [mysql dir]/bin/mysql -h hostname -u root -p
Create a database on the sql server.
mysql&#62; create database [databasename];
List all databases [...]]]></description>
			<content:encoded><![CDATA[<h4>when you see  a # it means use the command from the unix shell. When you see mysql&gt; it means from a MySQL prompt after logging into MySQL.</h4>
<h4>To login (from unix shell) use -h only if needed.</h4>
<p><code># [mysql dir]/bin/mysql -h hostname -u root -p</code></p>
<h4>Create a database on the sql server.</h4>
<p><code>mysql&gt; create database [databasename];</code></p>
<h4>List all databases on the sql server.</h4>
<p><code>mysql&gt; show databases;</code></p>
<h4>Switch to a database.</h4>
<p><code>mysql&gt; use [db name];</code></p>
<h4>To see all the tables in the db.</h4>
<p><code>mysql&gt; show tables;</code></p>
<h4>To see database&#8217;s field formats.</h4>
<p><code>mysql&gt; describe [table name];</code></p>
<h4>To delete a db.</h4>
<p><code>mysql&gt; drop database [database name];</code></p>
<h4>To delete a table.</h4>
<p><code>mysql&gt; drop table [table name];</code></p>
<h4>Show all data in a table.</h4>
<p><code>mysql&gt; SELECT * FROM [table name];</code></p>
<h4>Returns the columns and column information pertaining to the designated table.</h4>
<p><code>mysql&gt; show columns from [table name];</code></p>
<h4>Show certain selected rows with the value &#8220;whatever&#8221;.</h4>
<p><code>mysql&gt; SELECT * FROM [table name] WHERE [field name] = "whatever";</code></p>
<h4>Show all records containing the name &#8220;Bob&#8221; AND the phone number &#8217;3444444&#8242;.</h4>
<p><code>mysql&gt; SELECT * FROM [table name] WHERE name = "Bob" AND phone_number = '3444444';</code></p>
<h4>Show all records not containing the name &#8220;Bob&#8221; AND the phone number &#8217;3444444&#8242; order by the phone_number field.</h4>
<p><code>mysql&gt; SELECT * FROM [table name] WHERE name != "Bob" AND phone_number = '3444444' order by phone_number;</code></p>
<h4>Show all records starting with the letters &#8216;bob&#8217; AND the phone number &#8217;3444444&#8242;.</h4>
<p><code>mysql&gt; SELECT * FROM [table name] WHERE name like "Bob%" AND phone_number = '3444444';</code></p>
<h4>Show all records starting with the letters &#8216;bob&#8217; AND the phone number &#8217;3444444&#8242; limit to records 1 through 5.</h4>
<p><code>mysql&gt; SELECT * FROM [table name] WHERE name like "Bob%" AND phone_number = '3444444' limit 1,5;</code></p>
<h4>Use a regular expression to find records. Use &#8220;REGEXP BINARY&#8221; to force case-sensitivity. This finds any record beginning with a.</h4>
<p><code>mysql&gt; SELECT * FROM [table name] WHERE rec RLIKE "^a";</code></p>
<h4>Show unique records.</h4>
<p><code>mysql&gt; SELECT DISTINCT [column name] FROM [table name];</code></p>
<h4>Show selected records sorted in an ascending (asc) or descending (desc).</h4>
<p><code>mysql&gt; SELECT [col1],[col2] FROM [table name] ORDER BY [col2] DESC;</code></p>
<h4>Return number of rows.</h4>
<p><code>mysql&gt; SELECT COUNT(*) FROM [table name];</code></p>
<h4>Sum column.</h4>
<p><code>mysql&gt; SELECT SUM(*) FROM [table name];</code></p>
<h4>Join tables on common columns.</h4>
<p><code>mysql&gt; select lookup.illustrationid, lookup.personid,person.birthday from lookup left join person on  lookup.personid=person.personid=statement to join birthday in person table with primary illustration id;</code></p>
<h4>Creating a new user. Login as root. Switch to the MySQL db. Make the user. Update privs.</h4>
<p><code># mysql -u root -p<br />
mysql&gt; use mysql;<br />
mysql&gt; INSERT INTO user (Host,User,Password) VALUES('%','username',PASSWORD('password'));<br />
mysql&gt; flush privileges;</code></p>
<h4>Change a users password from unix shell.</h4>
<p><code># [mysql dir]/bin/mysqladmin -u username -h hostname.blah.org -p password 'new-password'</code></p>
<h4>Change a users password from MySQL prompt. Login as root. Set the password. Update privs.</h4>
<p><code># mysql -u root -p<br />
mysql&gt; SET PASSWORD FOR 'user'@'hostname' = PASSWORD('passwordhere');<br />
mysql&gt; flush privileges;</code></p>
<h4>Recover a MySQL root password. Stop the MySQL server process. Start again with no grant tables.  Login to MySQL as root. Set new password. Exit MySQL and restart MySQL server.</h4>
<p><code># /etc/init.d/mysql stop<br />
# mysqld_safe --skip-grant-tables &amp;<br />
# mysql -u root<br />
mysql&gt; use mysql;<br />
mysql&gt; update user set password=PASSWORD("newrootpassword") where User='root';<br />
mysql&gt; flush privileges;<br />
mysql&gt; quit<br />
# /etc/init.d/mysql stop<br />
# /etc/init.d/mysql start</code></p>
<h4>Set a root password if there is on root password.</h4>
<p><code># mysqladmin -u root password newpassword</code></p>
<h4>Update a root password.</h4>
<p><code># mysqladmin -u root -p oldpassword newpassword</code></p>
<h4>Allow the user &#8220;bob&#8221; to connect to the server from localhost using the password &#8220;passwd&#8221;. Login as root. Switch to the MySQL db. Give privs. Update privs.</h4>
<p><code># mysql -u root -p<br />
mysql&gt; use mysql;<br />
mysql&gt; grant usage on *.* to bob@localhost identified by 'passwd';<br />
mysql&gt; flush privileges;</code></p>
<h4>Give user privilages for a db. Login as root. Switch to the MySQL db. Grant privs. Update privs.</h4>
<p><code># mysql -u root -p<br />
mysql&gt; use mysql;<br />
mysql&gt; INSERT INTO user (Host,Db,User,Select_priv,Insert_priv,Update_priv,Delete_priv,Create_priv,Drop_priv) VALUES  ('%','databasename','username','Y','Y','Y','Y','Y','N');<br />
mysql&gt; flush privileges;</code></p>
<p>or</p>
<p><code>mysql&gt; grant all privileges on databasename.* to username@localhost;<br />
mysql&gt; flush privileges;</code></p>
<h4>To update info already in a table.</h4>
<p><code>mysql&gt; UPDATE [table name] SET Select_priv = 'Y',Insert_priv = 'Y',Update_priv = 'Y' where [field name] = 'user';</code></p>
<h4>Delete a row(s) from a table.</h4>
<p><code>mysql&gt; DELETE from [table name] where [field name] = 'whatever';</code></p>
<h4>Update database permissions/privilages.</h4>
<p><code>mysql&gt; flush privileges;</code></p>
<h4>Delete a column.</h4>
<p><code>mysql&gt; alter table [table name] drop column [column name];</code></p>
<h4>Add a new column to db.</h4>
<p><code>mysql&gt; alter table [table name] add column [new column name] varchar (20);</code></p>
<h4>Change column name.</h4>
<p><code>mysql&gt; alter table [table name] change [old column name] [new column name] varchar (50);</code></p>
<h4>Make a unique column so you get no dupes.</h4>
<p><code>mysql&gt; alter table [table name] add unique ([column name]);</code></p>
<h4>Make a column bigger.</h4>
<p><code>mysql&gt; alter table [table name] modify [column name] VARCHAR(3);</code></p>
<h4>Delete unique from table.</h4>
<p><code>mysql&gt; alter table [table name] drop index [colmn name];</code></p>
<h4>Load a CSV file into a table.</h4>
<p><code>mysql&gt; LOAD DATA INFILE '/tmp/filename.csv' replace INTO TABLE [table name] FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' (field1,field2,field3);</code></p>
<h4>Dump all databases for backup. Backup file is sql commands to recreate all db&#8217;s.</h4>
<p><code># [mysql dir]/bin/mysqldump -u root -ppassword --opt &gt;/tmp/alldatabases.sql</code></p>
<h4>Dump one database for backup.</h4>
<p><code># [mysql dir]/bin/mysqldump -u username -ppassword --databases databasename &gt;/tmp/databasename.sql</code></p>
<h4>Dump a table from a database.</h4>
<p><code># [mysql dir]/bin/mysqldump -c -u username -ppassword databasename tablename &gt; /tmp/databasename.tablename.sql</code></p>
<h4>Restore database (or database table) from backup.</h4>
<p><code># [mysql dir]/bin/mysql -u username -ppassword databasename &lt; /tmp/databasename.sql</code></p>
<h4>Create Table Example 1.</h4>
<p><code>mysql&gt; CREATE TABLE [table name] (firstname VARCHAR(20), middleinitial VARCHAR(3), lastname VARCHAR(35),suffix VARCHAR(3),officeid VARCHAR(10),userid VARCHAR(15),username VARCHAR(8),email VARCHAR(35),phone VARCHAR(25), groups VARCHAR(15),datestamp DATE,timestamp time,pgpemail VARCHAR(255));</code></p>
<h4>Create Table Example 2.</h4>
<p><code>mysql&gt; create table [table name] (personid int(50) not null auto_increment primary key,firstname varchar(35),middlename varchar(50),lastnamevarchar(50) default 'bato');</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fuseful-mysql-commands%2F&amp;t=Useful%20Mysql%20Commands" id="facebook_share_link_2382">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_2382') || document.getElementById('facebook_share_icon_2382') || document.getElementById('facebook_share_both_2382') || document.getElementById('facebook_share_button_2382');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_2382') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/useful-mysql-commands/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu Jaunty Counter</title>
		<link>http://gentoo-blog.de/stuff/ubuntu-jaunty-counter/</link>
		<comments>http://gentoo-blog.de/stuff/ubuntu-jaunty-counter/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 08:24:12 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=822</guid>
		<description><![CDATA[The Countdown begins

Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>The Countdown begins</p>
<p><a href="http://www.ubuntu.com/"><img src="http://www.the-pc-board.com/jauntycounter/?/banner.png" border="0" alt="(Count down Ubuntu 9.04 (jaunty jackalope)" /></a></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fubuntu-jaunty-counter%2F&amp;t=Ubuntu%20Jaunty%20Counter" id="facebook_share_link_822">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_822') || document.getElementById('facebook_share_icon_822') || document.getElementById('facebook_share_both_822') || document.getElementById('facebook_share_button_822');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_822') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/ubuntu-jaunty-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell Vostro 1500</title>
		<link>http://gentoo-blog.de/stuff/dell-vostro-1500/</link>
		<comments>http://gentoo-blog.de/stuff/dell-vostro-1500/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 18:24:01 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=10</guid>
		<description><![CDATA[My new Dell Vostro 1500 was delivered this week.  So i am busy installing Gentoo on it. I will get a howto up once i&#8217;m finished. With a Kernel .config and  a few config files.
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>My new Dell Vostro 1500 was delivered this week.  So i am busy installing Gentoo on it. I will get a howto up once i&#8217;m finished. With a Kernel .config and  a few config files.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fdell-vostro-1500%2F&amp;t=Dell%20Vostro%201500" id="facebook_share_link_10">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_10') || document.getElementById('facebook_share_icon_10') || document.getElementById('facebook_share_both_10') || document.getElementById('facebook_share_button_10');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_10') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/dell-vostro-1500/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gentoo Wallpapers</title>
		<link>http://gentoo-blog.de/stuff/gentoo-wallpapers/</link>
		<comments>http://gentoo-blog.de/stuff/gentoo-wallpapers/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 23:14:02 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=5</guid>
		<description><![CDATA[Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-1-5">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://gentoo-blog.de/stuff/gentoo-wallpapers/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://gentoo-blog.de/wp-content/gallery/linux/gentoo1280x1024.jpg" title=" " class="thickbox" rel="set_1"  rel="lightbox[5]">
								<img title="gentoo1280x1024.jpg" alt="gentoo1280x1024.jpg" src="http://gentoo-blog.de/wp-content/gallery/linux/thumbs/thumbs_gentoo1280x1024.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://gentoo-blog.de/wp-content/gallery/linux/gentoo-box-1280x1024.png" title=" " class="thickbox" rel="set_1"  rel="lightbox[5]">
								<img title="gentoo-box-1280x1024.png" alt="gentoo-box-1280x1024.png" src="http://gentoo-blog.de/wp-content/gallery/linux/thumbs/thumbs_gentoo-box-1280x1024.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://gentoo-blog.de/wp-content/gallery/linux/gentoo.jpg" title=" " class="thickbox" rel="set_1"  rel="lightbox[5]">
								<img title="gentoo.jpg" alt="gentoo.jpg" src="http://gentoo-blog.de/wp-content/gallery/linux/thumbs/thumbs_gentoo.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fgentoo-wallpapers%2F&amp;t=Gentoo%20Wallpapers" id="facebook_share_link_5">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_5') || document.getElementById('facebook_share_icon_5') || document.getElementById('facebook_share_both_5') || document.getElementById('facebook_share_button_5');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_5') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/gentoo-wallpapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Gentoo Blog</title>
		<link>http://gentoo-blog.de/stuff/hello-world/</link>
		<comments>http://gentoo-blog.de/stuff/hello-world/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 12:53:54 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is my first post on gentoo-blog.de. My new blog presenting you with interesting hacks and tricks around the great linux distro gentoo.

Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>This is my first post on gentoo-blog.de. My new blog presenting you with interesting hacks and tricks around the great linux distro gentoo.</p>
<p><a href="http://www.gentoo.org"></a></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fstuff%2Fhello-world%2F&amp;t=Welcome%20to%20Gentoo%20Blog" id="facebook_share_link_1">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_1') || document.getElementById('facebook_share_icon_1') || document.getElementById('facebook_share_both_1') || document.getElementById('facebook_share_button_1');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_1') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/stuff/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

