<?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>Knowledge base</title>
	<atom:link href="http://droid.lv/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://droid.lv/blog</link>
	<description>Large hints</description>
	<lastBuildDate>Wed, 22 Feb 2012 13:47:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Fix print 4x scaling</title>
		<link>http://droid.lv/blog/?p=65</link>
		<comments>http://droid.lv/blog/?p=65#comments</comments>
		<pubDate>Wed, 22 Feb 2012 13:47:21 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=65</guid>
		<description><![CDATA[My Linux printer was scaling down 4x times each printout, except ones from &#8220;document viewer&#8221;. Turned out that default option &#8220;Pages per sheet&#8221; in CUPS was reset to 4. In order to set default value of &#8220;Pages per sheet&#8221; in CUPS to 1: 1)Stop cups: /etc/init.d/cups stop 2)edit file /etc/cups/printers.conf and set Option number-up 1 [...]]]></description>
			<content:encoded><![CDATA[<p>My Linux printer was scaling down 4x times each printout, except ones from &#8220;document viewer&#8221;. Turned out that default option &#8220;Pages per sheet&#8221; in CUPS was reset to 4. </p>
<p>In order to set default value of  &#8220;Pages per sheet&#8221; in CUPS to 1:<br />
1)Stop cups: <code>/etc/init.d/cups stop</code><br />
2)edit file <b>/etc/cups/printers.conf</b> and set<br />
<code>Option number-up 1</code><br />
3)Start cups: <code>/etc/init.d/cups start</code></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=65</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Adobe Reader appear in GNOME3 applications</title>
		<link>http://droid.lv/blog/?p=58</link>
		<comments>http://droid.lv/blog/?p=58#comments</comments>
		<pubDate>Sat, 11 Feb 2012 15:02:05 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=58</guid>
		<description><![CDATA[Edit file /usr/share/applications/AdobeReader.desktop Change line: Exec=acroread to Exec=acroread %U Run: sudo update-desktop-database]]></description>
			<content:encoded><![CDATA[<p>Edit file <code>/usr/share/applications/AdobeReader.desktop</code><br />
Change line: <code>Exec=acroread</code> to <code>Exec=acroread %U</code><br />
Run: <code>sudo update-desktop-database</code></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=58</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make to work keyboard volume keys in Gnome</title>
		<link>http://droid.lv/blog/?p=55</link>
		<comments>http://droid.lv/blog/?p=55#comments</comments>
		<pubDate>Sat, 19 Nov 2011 18:57:14 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=55</guid>
		<description><![CDATA[Using gconf-editor it is necessary to modify /desktop/gnome/sound/default_mixer_device to value: alsamixer:default Full info here]]></description>
			<content:encoded><![CDATA[<p>Using gconf-editor it is necessary to modify<br />
<code>/desktop/gnome/sound/default_mixer_device</code></p>
<p>to value:<br />
<code>alsamixer:default</code></p>
<p>Full info <a href="http://www.stderr.nl/Blog/Software/Debian/SqueezeVolumePulse.html">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=55</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase rouncube attachment limit</title>
		<link>http://droid.lv/blog/?p=44</link>
		<comments>http://droid.lv/blog/?p=44#comments</comments>
		<pubDate>Tue, 04 Oct 2011 09:37:16 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=44</guid>
		<description><![CDATA[1)Set global limits in file /etc/php5/apache2/php.ini: upload_max_filesize = 32M post_max_size = 32M 2)Set local limits in /usr/share/roundcube/.htaccess php_value upload_max_filesize 16M php_value post_max_size 17M php_value memory_limit 256M P.S. Perhaps you will need to adjust your Postfix SMTP server message size limit in /etc/postfix/main.cf message_size_limit = 33554432]]></description>
			<content:encoded><![CDATA[<p>1)Set global limits in file <strong>/etc/php5/apache2/php.ini</strong>:<br />
<code><br />
upload_max_filesize = 32M<br />
post_max_size = 32M<br />
</code><br />
2)Set local limits in <strong>/usr/share/roundcube/.htaccess</strong><br />
<code><br />
php_value	upload_max_filesize	16M<br />
php_value	post_max_size		17M<br />
php_value	memory_limit		256M<br />
</code></p>
<p>P.S. Perhaps you will need to adjust your Postfix SMTP server message size limit in <strong>/etc/postfix/main.cf</strong><br />
<code><br />
message_size_limit = 33554432<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=44</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing unopkg in Meneley desktop</title>
		<link>http://droid.lv/blog/?p=40</link>
		<comments>http://droid.lv/blog/?p=40#comments</comments>
		<pubDate>Mon, 03 Oct 2011 13:55:41 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=40</guid>
		<description><![CDATA[If Mendeley desktop for linux shows warning about OpenOffice plugin and &#8220;unopkg&#8221; then you have to reinstall Mendeleywith Open Office / Libre Office runnng in the background.]]></description>
			<content:encoded><![CDATA[<p>If Mendeley desktop for linux shows warning about  OpenOffice plugin and &#8220;unopkg&#8221; then you have to <em>reinstall Mendeley</em>with Open Office / Libre Office runnng in the background.</p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=40</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restore icons necessary for mail-notification</title>
		<link>http://droid.lv/blog/?p=37</link>
		<comments>http://droid.lv/blog/?p=37#comments</comments>
		<pubDate>Mon, 26 Sep 2011 07:14:22 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=37</guid>
		<description><![CDATA[Seems that program mail-notification lacks some gnome icons. For theme &#8220;clearlooks&#8221; they can be created using script: cd /usr/share/icons/gnome for f in 8 16 22 24 256 32 48 do cp $f'x'$f/status/stock_mail.png $f'x'$f/status/stock_unknown.png done update-icon-caches ./]]></description>
			<content:encoded><![CDATA[<p>Seems that program mail-notification lacks some gnome icons. For theme &#8220;clearlooks&#8221; they can be created using script:<br />
<code><br />
cd /usr/share/icons/gnome<br />
for f in 8 16 22 24 256 32 48<br />
        do cp $f'x'$f/status/stock_mail.png $f'x'$f/status/stock_unknown.png<br />
done<br />
update-icon-caches ./<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=37</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CUDA acceleration in Adobe Premiere</title>
		<link>http://droid.lv/blog/?p=33</link>
		<comments>http://droid.lv/blog/?p=33#comments</comments>
		<pubDate>Sun, 18 Sep 2011 15:12:05 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[MacOS]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=33</guid>
		<description><![CDATA[add card name to /Applications/Adobe Premiere Pro CS5.5/Adobe Premiere Pro CS5.5.app/Contents/cuda_supported_cards.txt verify acceleration (and get card name) via command: /Applications/Adobe Premiere Pro CS5.5/Adobe Premiere Pro CS5.5.app/Contents/GPUSniffer.app/Contents/MacOS/GPUSniffer]]></description>
			<content:encoded><![CDATA[<p>add card name to<br />
<code>/Applications/Adobe Premiere Pro CS5.5/Adobe Premiere Pro CS5.5.app/Contents/cuda_supported_cards.txt</code></p>
<p>verify acceleration (and get card name) via command:<br />
<code><br />
/Applications/Adobe Premiere Pro CS5.5/Adobe Premiere Pro CS5.5.app/Contents/GPUSniffer.app/Contents/MacOS/GPUSniffer<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switch system Linux clock to/from GMT</title>
		<link>http://droid.lv/blog/?p=31</link>
		<comments>http://droid.lv/blog/?p=31#comments</comments>
		<pubDate>Fri, 16 Sep 2011 12:22:44 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=31</guid>
		<description><![CDATA[edit /etc/default/rcS]]></description>
			<content:encoded><![CDATA[<p>edit /etc/default/rcS</p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rebuild all VMWare modules</title>
		<link>http://droid.lv/blog/?p=29</link>
		<comments>http://droid.lv/blog/?p=29#comments</comments>
		<pubDate>Fri, 16 Sep 2011 12:22:02 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=29</guid>
		<description><![CDATA[vmware-modconfig &#8211;console &#8211;install-all]]></description>
			<content:encoded><![CDATA[<p>vmware-modconfig &#8211;console &#8211;install-all</p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=29</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apt-get via proxy</title>
		<link>http://droid.lv/blog/?p=27</link>
		<comments>http://droid.lv/blog/?p=27#comments</comments>
		<pubDate>Fri, 16 Sep 2011 12:21:18 +0000</pubDate>
		<dc:creator>arturs</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://droid.lv/blog/?p=27</guid>
		<description><![CDATA[apt-get -o Acquire::http::No-Cache=True -o Acquire::BrokenProxy=true update --fix-missing]]></description>
			<content:encoded><![CDATA[<p><code><br />
apt-get -o Acquire::http::No-Cache=True -o Acquire::BrokenProxy=true update --fix-missing<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://droid.lv/blog/?feed=rss2&#038;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

