<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dragkh's Blog</title>
	<atom:link href="http://dragkh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dragkh.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 25 Jan 2012 00:39:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dragkh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dragkh's Blog</title>
		<link>http://dragkh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dragkh.wordpress.com/osd.xml" title="Dragkh&#039;s Blog" />
	<atom:link rel='hub' href='http://dragkh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PostgreSQL export csv from shell</title>
		<link>http://dragkh.wordpress.com/2012/01/25/postgresql-export-csv-from-shell/</link>
		<comments>http://dragkh.wordpress.com/2012/01/25/postgresql-export-csv-from-shell/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 00:34:17 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=248</guid>
		<description><![CDATA[I needed to get stats per minute for a SMS TV vote from 50 tables &#8211; one table per vote: solution 1: ============================================================== solution 2 &#8211; copy(SQL) did not work at psql -v 8.0.4 on me<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=248&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I needed to get stats per minute for a SMS TV vote from 50 tables  &#8211; one table per vote: </p>
<p>solution  1:<br />
<pre class="brush: bash;">
#!/bin/sh
op=2
op=3
ip=&quot;10.10.10.157&quot;

# NO work - version 8.0.4 ...
# op=1
# ip=&quot;10.10.10.5&quot;

dbname=&quot;vote_2012_01&quot;
for num in `seq 1 50`
do
	if (( ${num} &lt; 10 ))
	then
		num=&quot;0${num}&quot;
	fi
	
echo &quot;copy (
select 
'Pesen ${num}' as pesen
,operator_id as op
, count(*) as cntr 
, date_trunc('minute',intime) as minutes
from  vote_201201_${num}
where true 
and operator_id = ${op} 
group by minutes, op 
order by minutes, op
)
to stdout  with csv header
force quote pesen,minutes
;
&quot; | psql -U me -h ${ip} ${dbname} -F , --no-align  &gt; data.op.${op}.pesen.${num}.csv

done
</pre></p>
<p>==============================================================<br />
solution 2  &#8211; copy(SQL) did not work at psql -v 8.0.4 on me<br />
<pre class="brush: bash;">
#!/bin/sh
# done by dragkh
op=2
op=3
ip=&quot;10.10.10.157&quot;

#work - version 8.0.4 ...
op=1
ip=&quot;10.10.10.5&quot;

dbname=&quot;vote_2012_01&quot;

for num in `seq 1 50`
do
	if (( ${num} &lt; 10 ))
	then
		num=&quot;0${num}&quot;
	fi
	
echo &quot;select
'\&quot;Pesen ${num}\&quot;' as pesen
,operator_id as op
, count(*) as cntr 
, '\&quot;' || date_trunc('minute',intime) || '\&quot;' as minutes
from  vote_201201_${num}
where true 
and operator_id = ${op} 
group by minutes, op 
order by minutes, op
;
&quot; | psql -U me -h ${ip} ${dbname} -F , --no-align  &gt; data.op.${op}.pesen.${num}.csv

done
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/248/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/248/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/248/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=248&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2012/01/25/postgresql-export-csv-from-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>PostgreSQL propmt  with user, hostname , port, dbname and current timestamp</title>
		<link>http://dragkh.wordpress.com/2011/11/29/postgresql-propmt-with-user-hostname-port-dbname-and-current-timestamp/</link>
		<comments>http://dragkh.wordpress.com/2011/11/29/postgresql-propmt-with-user-hostname-port-dbname-and-current-timestamp/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 23:16:58 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=242</guid>
		<description><![CDATA[bsms=# \set PROMPT1 '%[%033[1;33;40m%]%n@%M:%&#62;::%/%R[%`date`]%[%033[0m%]%# ' bsms@[darkwater]:5432::bsms=[Wed Nov 30 01:14:48 EET 2011]# select now(); now ------------------------------- 2011-11-30 01:14:52.998601+02 (1 row) bsms@[darkwater]:5432::bsms=[Wed Nov 30 01:14:53 EET 2011]#<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=242&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code><br />
bsms=# \set PROMPT1 '%[%033[1;33;40m%]%n@%M:%&gt;::%/%R[%`date`]%[%033[0m%]%# '<br />
bsms@[darkwater]:5432::bsms=[Wed Nov 30 01:14:48 EET 2011]# select now();<br />
              now<br />
-------------------------------<br />
 2011-11-30 01:14:52.998601+02<br />
(1 row)</p>
<p>bsms@[darkwater]:5432::bsms=[Wed Nov 30 01:14:53 EET 2011]#<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=242&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/11/29/postgresql-propmt-with-user-hostname-port-dbname-and-current-timestamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 15 Gnome3 add compiled from git pgadmin3 to applications menu</title>
		<link>http://dragkh.wordpress.com/2011/07/04/fedora-15-gnome3-add-compiled-from-git-pgadmin3-to-applications-menu/</link>
		<comments>http://dragkh.wordpress.com/2011/07/04/fedora-15-gnome3-add-compiled-from-git-pgadmin3-to-applications-menu/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 19:54:19 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Fedora 15 64 bit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=238</guid>
		<description><![CDATA[compile pgadmin3 from git in /opt/installs/ &#8211; use the instruction at the git pgadmin repository when you have it compiled : the trick of adding custom app at Gnome3 application menu is taken from here: http://forums.fedoraforum.org/showthread.php?p=1480880 done<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=238&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>compile pgadmin3 from git in /opt/installs/ &#8211; use the instruction at the git pgadmin repository<br />
when you have it compiled :<br />
<pre class="brush: bash;">
cp /opt/installs/pgadmin3/pkg/pgadmin3.desktop /usr/share/applications
ln -s /usr/local/bin/pgadmin3 /usr/bin/
mkdir /usr/share/pgadmin3/
cp /opt/installs/pgadmin3/pgadmin/include/images/pgAdmin3.png /usr/share/pgadmin3/
root@darkstar:[Mon Jul 04 15:48:06]:[/usr/share/applications]$ cat pgadmin3.desktop 
[Desktop Entry]
Encoding=UTF-8
Name=pgAdmin III
Exec=/usr/bin/pgadmin3
Icon=/usr/share/pgadmin3/pgAdmin3.png
Type=Application
Categories=Application;Development;
MimeType=text/html
DocPath=/usr/share/pgadmin3/docs/en_US/index.html
Comment=PostgreSQL Tools
</pre></p>
<p>the trick of adding custom app at Gnome3 application menu is taken from here:<br />
<a href="http://forums.fedoraforum.org/showthread.php?p=1480880" title=" Create custom application launcher in Gnome 3 General Support" target="_blank">http://forums.fedoraforum.org/showthread.php?p=1480880</a></p>
<p>done</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/238/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=238&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/07/04/fedora-15-gnome3-add-compiled-from-git-pgadmin3-to-applications-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora release 15 (Lovelock) 64 bit Picasa 3</title>
		<link>http://dragkh.wordpress.com/2011/06/19/fedora-release-15-lovelock-64-bit-picasa-3/</link>
		<comments>http://dragkh.wordpress.com/2011/06/19/fedora-release-15-lovelock-64-bit-picasa-3/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 21:47:00 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Fedora 15 64 bit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Picasa3]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=233</guid>
		<description><![CDATA[Picasa wont run after that ERRORS: fix : original source of the fix : http://www.fedoraforum.org/forum/showthread.php?t=222601&#38;page=2 Note : if you have the issue with the following error : HttpOpenRequest failed (12157) - https://www.google.com/accounts/ClientAuth [13] use this work around : original source of the fix : http://www.google.com/support/forum/p/Picasa/thread?tid=6eb9c7d06d5aa10c&#38;hl=en<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=233&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: bash;">
yum install wine.x86_64 -y
yum localinstall picasa-2.7.3736-15.i386.rpm -y
</pre><br />
Picasa wont run after that<br />
ERRORS:<br />
<pre class="brush: bash;">
[Sun Jun 19 23:21:37]:[~]$ picasa
/usr/bin/picasa: line 139:  4304 Segmentation fault      (core dumped) &quot;$PIC_BINDIR&quot;/wrapper check_dir.exe.so
/usr/bin/picasa: line 175:  4414 Segmentation fault      (core dumped) &quot;$PIC_BINDIR/wrapper&quot; regedit /E $registry_export HKEY_USERS\\S-1-5-4\\Software\\Google\\Picasa\\Picasa2\\Preferences\\
istoykov@T400:[Sun Jun 19 23:22:52]:[~]$ picasa
/usr/bin/picasa: line 189:  5154 Segmentation fault      (core dumped) &quot;$PIC_BINDIR&quot;/wrapper check_dir.exe.so
/usr/bin/picasa: line 248:  5268 Segmentation fault      (core dumped) &quot;$PIC_BINDIR&quot;/wrapper set_lang.exe.so
</pre><br />
fix :<br />
<pre class="brush: bash;">
cp /usr/bin/wine-preloader /opt/google/picasa/3.0/wine/bin/wine-preloader
</pre></p>
<p>original source of the fix : <a href="http://www.fedoraforum.org/forum/showthread.php?t=222601&amp;page=2" title=" Picasa won't start, fedoraforum,fedora support,fedora tech,fedora,fedora linux,fedora project,linux,,linux operating system,linux software,learn linux,linux hosting,linux server,linux driver,linux support,linux kernel,linux distribution,linux command,fedora core,linux tutorial,linux security,linux gallery,linux wallpaper,linux help,fedora help,fedora forums,fedora discussions,gnome,kde,xfree,xorg,samba,apt,firefox,mozilla,mplayer,konqueror,bluecurve,xine,xmms,bittorrent,torrent,linux tutorial,linux reviews,fc8,fc9,fc10,fc11,fc12,f8,f9,f10,f11,f12" target="_blank">http://www.fedoraforum.org/forum/showthread.php?t=222601&amp;page=2</a></p>
<p>Note :<br />
if you have the issue with the following error :<br />
HttpOpenRequest failed (12157) -<br />
https://www.google.com/accounts/ClientAuth [13]</p>
<p>use this work around :<br />
<pre class="brush: bash;">
cp /usr/lib/wine/wininet.dll.so /opt/google/picasa/3.0/wine/lib/wine/wininet.dll.so
</pre><br />
original source of the fix : <a href="http://www.google.com/support/forum/p/Picasa/thread?tid=6eb9c7d06d5aa10c&amp;hl=en" title="Picasa">http://www.google.com/support/forum/p/Picasa/thread?tid=6eb9c7d06d5aa10c&amp;hl=en</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=233&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/06/19/fedora-release-15-lovelock-64-bit-picasa-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora release 15 (Lovelock) 64 bit PgAdmin3 latest from git</title>
		<link>http://dragkh.wordpress.com/2011/06/12/fedora-release-15-lovelock-64-bit-pgadmin3-latest-from-git/</link>
		<comments>http://dragkh.wordpress.com/2011/06/12/fedora-release-15-lovelock-64-bit-pgadmin3-latest-from-git/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 13:36:23 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=227</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=227&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: bash;">
yum localinstall postgresql-upgrade-9.0.4-2.fc15.x86_64.rpm
yum install postgresql-devel
yum install libxslt-devel
yum install wxGTK-devel
yum install perl-Wx
yum install qt3.i686
yum install automake
echo &quot;/usr/lib/qt-3.3/lib&quot; &gt;&gt; /etc/ld.so.conf.d/qt-x86.conf 
ldconfig
service postgresql initdb
service postgresql start
git clone git://git.postgresql.org/git/pgadmin3.git
cd pgadmin3
bash bootstrap
./configure
make -j3 install 
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=227&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/06/12/fedora-release-15-lovelock-64-bit-pgadmin3-latest-from-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora 15 Lovelock 64 bit Quanta Plus install</title>
		<link>http://dragkh.wordpress.com/2011/06/12/fedora-15-lovelock-64-bit-quanta-plus-install/</link>
		<comments>http://dragkh.wordpress.com/2011/06/12/fedora-15-lovelock-64-bit-quanta-plus-install/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 13:21:07 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=225</guid>
		<description><![CDATA[yum install kdewebdev kdewebdev-libs kdewebdev-devel -y<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=225&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>yum install kdewebdev kdewebdev-libs kdewebdev-devel -y</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=225&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/06/12/fedora-15-lovelock-64-bit-quanta-plus-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux bash: get the Apache PID with high CPU consumtion and extract the URL</title>
		<link>http://dragkh.wordpress.com/2011/04/06/linux-bash-get-the-apache-pid-with-high-cpu-consumtion-and-extract-the-url/</link>
		<comments>http://dragkh.wordpress.com/2011/04/06/linux-bash-get-the-apache-pid-with-high-cpu-consumtion-and-extract-the-url/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 15:22:32 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[Slackware]]></category>
		<category><![CDATA[match apache pid to url]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=217</guid>
		<description><![CDATA[make sure you have the extended status on and the http://localhost/server-status is accessible<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=217&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>make sure you have the extended status on and the http://localhost/server-status is accessible </p>
<p><pre class="brush: bash;">
#!/bin/sh
# by dragkh
# Wed Apr 06 12:33:56

# Config
CPU_LIMIT=10
TOP_PROCESSES=10
LOG_FILE=/var/log/high.CPU.apache.URLs.log

top -b -U apache  -n 1 | \
grep -v grep | \
grep apache  | \
sort -rn -k9 | \
head  -${TOP_PROCESSES} | \
awk -v CPU_LIMIT=${CPU_LIMIT} '($9 &gt; CPU_LIMIT){print $0}' | \
while read PID USER      PR  NI  VIRT  RES  SHR S CPU MEM    TIME  COMMAND
do 
  echo -n &quot;$(date) :[$HOSTNAME]: PID[${PID}]:CPU[${CPU}] : Apache =&gt; &quot; &gt;&gt; ${LOG_FILE}
  links -dump http://localhost/server-status | grep -v grep | grep &quot;${PID}&quot; &gt;&gt; ${LOG_FILE}
done

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=217&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/04/06/linux-bash-get-the-apache-pid-with-high-cpu-consumtion-and-extract-the-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux bash: check exicting IP in the active vhost configs</title>
		<link>http://dragkh.wordpress.com/2011/04/06/linux-bash-check-exicting-ip-in-the-active-vhost-configs/</link>
		<comments>http://dragkh.wordpress.com/2011/04/06/linux-bash-check-exicting-ip-in-the-active-vhost-configs/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 15:17:01 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[Slackware]]></category>
		<category><![CDATA[vhost IP match active]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=215</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=215&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: bash;">
ifconfig  | grep &quot;inet addr:&quot; | grep -v grep | awk '{print $2}' | sed 's/^addr://' | sort | uniq | while read IP; do echo -n &quot;checking $IP &quot;; echo $(fgrep $IP /etc/httpd/conf.d/sites/*conf | tr '\n' ' ') ;  done
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=215&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/04/06/linux-bash-check-exicting-ip-in-the-active-vhost-configs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux : Slackware : PostgreSQL  8.3.7 find the duplicates in a table</title>
		<link>http://dragkh.wordpress.com/2011/03/16/linux-slackware-postgresql-8-3-7-find-the-duplicates-in-a-table/</link>
		<comments>http://dragkh.wordpress.com/2011/03/16/linux-slackware-postgresql-8-3-7-find-the-duplicates-in-a-table/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:56:47 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Slackware]]></category>
		<category><![CDATA[duplicates]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=207</guid>
		<description><![CDATA[&#8220;PostgreSQL 8.3.7 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 4.1.2&#8243; ext_id should be unique, but its not, so to get all the records with duplicate ext_id :<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=207&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;PostgreSQL 8.3.7 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 4.1.2&#8243;</p>
<p>ext_id should be unique, but its not, so to get all the records with duplicate ext_id :<br />
<pre class="brush: sql;">
select 
ext_id 
from dd_out dd 
where true 
and ext_id in 
(
  select ext_id  as ddd from (
    select count(s.ext_id) as cnt, s.ext_id from dd_out s where true group by s.ext_id 
  ) as cra  
  where cnt &gt; 1 
)
;
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=207&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/03/16/linux-slackware-postgresql-8-3-7-find-the-duplicates-in-a-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux Slackware 13.1 : install VBoxGuestAdditions_4.0.4</title>
		<link>http://dragkh.wordpress.com/2011/03/06/linux-slackware-13-1-install-vboxguestadditions_4-0-4/</link>
		<comments>http://dragkh.wordpress.com/2011/03/06/linux-slackware-13-1-install-vboxguestadditions_4-0-4/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 12:52:05 +0000</pubDate>
		<dc:creator>dragkh</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Slackware]]></category>
		<category><![CDATA[VBoxGuestAdditions]]></category>
		<category><![CDATA[virtual box]]></category>

		<guid isPermaLink="false">http://dragkh.wordpress.com/?p=203</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=203&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: bash;">
cd /opt/downloads/
wget http://dlc.sun.com.edgesuite.net/virtualbox/4.0.4/VBoxGuestAdditions_4.0.4.iso
mkdir /mnt/VBoxGuestAdditions_4.0.4
mount -t iso9660 -o loop /opt/downloads/VBoxGuestAdditions_4.0.4.iso  /mnt/VBoxGuestAdditions_4.0.4/
cd /mnt/VBoxGuestAdditions_4.0.4/
root@7932:[Sun Mar 06 13:45:40]:[/mnt/VBoxGuestAdditions_4.0.4]$ ./VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 4.0.4 Guest Additions for Linux.........
VirtualBox Guest Additions installer
Removing existing VirtualBox DKMS kernel modules ...done.
Removing existing VirtualBox non-DKMS kernel modules ...done.
Building the VirtualBox Guest Additions kernel modules
Building the main Guest Additions module ...done.
Building the shared folder support module ...done.
Building the OpenGL support module ...done.
Doing non-kernel setup of the Guest Additions ...done.
Starting the VirtualBox Guest Additions ...fail!
(modprobe vboxguest failed)
Installing the Window System drivers
Installing X.Org Server 1.7 modules ...done.
Setting up the Window System to use the Guest Additions ...done.
You may need to restart the hal service and the Window System (or just restart
the guest system) to enable the Guest Additions.

Installing graphics libraries and desktop services components ...done.
root@7932:[Sun Mar 06 13:46:38]:[/mnt/VBoxGuestAdditions_4.0.4]$ /etc/rc.d/rc.hald  restart
Starting HAL daemon:  /usr/sbin/hald --daemon=yes

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dragkh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dragkh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dragkh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dragkh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dragkh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dragkh.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dragkh.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dragkh.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dragkh.wordpress.com&amp;blog=5720958&amp;post=203&amp;subd=dragkh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dragkh.wordpress.com/2011/03/06/linux-slackware-13-1-install-vboxguestadditions_4-0-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d2f1d38166797eef1430aa13c1fb7ed3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dragkh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
