<?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:media="http://search.yahoo.com/mrss/">

<channel>
	<title>coolchevy&#039;s blog &#124; Life and experience &#187; linux</title>
	<atom:link href="http://coolchevy.org.ua/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://coolchevy.org.ua</link>
	<description>мій особистий блог &#124; нотатки</description>
	<lastBuildDate>Mon, 19 Mar 2012 21:37:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>etc snapshots with git</title>
		<link>https://coolchevy.org.ua/2011/08/01/etc-snapshots-with-git/</link>
		<comments>https://coolchevy.org.ua/2011/08/01/etc-snapshots-with-git/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 21:48:29 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=814</guid>
		<description><![CDATA[You can track your /etc directory with git, and have apt update it automatically each time a package is installed. install git apt-get install git-core initialize /etc to be a git repo cd /etc git init-db chmod og-rwx .git commit the current state git add . git commit -a -m"initial import" install a snapshot script [...]]]></description>
		<wfw:commentRss>https://coolchevy.org.ua/2011/08/01/etc-snapshots-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Translate API From The Command Line</title>
		<link>https://coolchevy.org.ua/2011/06/17/google-translate-api-from-the-command-line/</link>
		<comments>https://coolchevy.org.ua/2011/06/17/google-translate-api-from-the-command-line/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 20:43:36 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[translate]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=802</guid>
		<description><![CDATA[Simple wrapper for google translate api #!/bin/bash if [ $# == 3 ] then echo "From: $1 To: $2" lynx -dump "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&#038;q=$3&#038;langpair=$1&#124;$2"&#124;awk -F'"' '{print $6}' else lynx -dump "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&#038;q=$1&#038;langpair=&#124;ar"&#124;awk -F'"' '{print "From: "$10" To: ar \n"$6}';echo lynx -dump "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&#038;q=$1&#038;langpair=&#124;en"&#124;awk -F'"' '{print "From: "$10" To: en \n"$6}';echo fi Example: $ ./gtranslate.sh ru en "тест" From: ru [...]]]></description>
		<wfw:commentRss>https://coolchevy.org.ua/2011/06/17/google-translate-api-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ssh daemon on Android with dropbear</title>
		<link>https://coolchevy.org.ua/2011/06/06/android-ssh-server-with-dropbear/</link>
		<comments>https://coolchevy.org.ua/2011/06/06/android-ssh-server-with-dropbear/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 23:38:00 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[dropbear]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=794</guid>
		<description><![CDATA[The following procedures have been tested on my Motorola milestone with CyanogenMod v7. We will use RSA key authentication only. Dropbear is installed on CyanogenMod by default. If it is not present, you can download and install it manually http://matt.ucc.asn.au/dropbear/ Copy your private rsa-key to /sdcard/ cp ~/.ssh/id_rsa.pub /sdcard/authorized_keys Open terminal on your phone and [...]]]></description>
		<wfw:commentRss>https://coolchevy.org.ua/2011/06/06/android-ssh-server-with-dropbear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="https://coolchevy.org.ua/wp-content/uploads/2011/06/andr1-300x95.png" length="14092" type="image/jpg" /><media:content url="https://coolchevy.org.ua/wp-content/uploads/2011/06/andr1-300x95.png" width="300" height="95" medium="image" type="image/png" />	</item>
		<item>
		<title>Upgrade postgresql-8.3 to postgresql-9.0</title>
		<link>https://coolchevy.org.ua/2011/05/08/upgrade-postgresql-8-3-to-postgresql-9-0/</link>
		<comments>https://coolchevy.org.ua/2011/05/08/upgrade-postgresql-8-3-to-postgresql-9-0/#comments</comments>
		<pubDate>Sun, 08 May 2011 10:36:33 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=791</guid>
		<description><![CDATA[Howto upgrade your postgresql-8.3 to postgresql-9.0 Install postgresql-9.0 #pg_dropcluster --stop 9.0 main #pg_upgradecluster 9.0 main #pg_dropcluster --stop 8.3 main #apt-get remove postgresql-8.3]]></description>
		<wfw:commentRss>https://coolchevy.org.ua/2011/05/08/upgrade-postgresql-8-3-to-postgresql-9-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/usr/bin/ld: cannot find -lstdc++ Debian libreadline5-dev package bug</title>
		<link>https://coolchevy.org.ua/2011/04/16/usrbinld-cannot-find-lstdc-debian-libreadline5-dev-package-bug/</link>
		<comments>https://coolchevy.org.ua/2011/04/16/usrbinld-cannot-find-lstdc-debian-libreadline5-dev-package-bug/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 10:38:39 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=783</guid>
		<description><![CDATA[I found bug on my Debian Linux with libstdc++.so library. This is maintainers bug of libreadline5-dev package. Simple creating symlink: $ sudo ln -s /usr/lib/libstdc++.so.VERSION /usr/lib/libstdc++.so solved this problem.]]></description>
		<wfw:commentRss>https://coolchevy.org.ua/2011/04/16/usrbinld-cannot-find-lstdc-debian-libreadline5-dev-package-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

