<?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>wanna-be-a-Debian-system-administrator</title>
	<atom:link href="http://debian.kitaj.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://debian.kitaj.net</link>
	<description></description>
	<lastBuildDate>Wed, 31 Aug 2011 15:03:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Squeeze LXC container in Debian Squeeze</title>
		<link>http://debian.kitaj.net/2011/08/squeeze-lxc-container-in-debian-squeeze/</link>
		<comments>http://debian.kitaj.net/2011/08/squeeze-lxc-container-in-debian-squeeze/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 15:03:22 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=100</guid>
		<description><![CDATA[In Debian Squeeze, the default lxc-debian script installs a Lenny container. The bug was reported and fixed in version 0.7.4 of LXC. To install Squeeze container first download Syd&#8217;s version of LXC (currently 0.7.5-1), unpack it and find the lxc-debian file (lxc_0.7.5-1_amd64.deb —&#62; data.tar.gz -&#62; /usr/lib/lxc/templates/lxc-debian). Copy the file to your machine/server, make it executable [...]]]></description>
			<content:encoded><![CDATA[<p>In Debian Squeeze, the default <code>lxc-debian</code> script installs a Lenny container. The bug was <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600456">reported and fixed</a> in version 0.7.4 of LXC.<br />
To install Squeeze container first download Syd&#8217;s version of LXC (currently 0.7.5-1), unpack it and find the lxc-debian file (lxc_0.7.5-1_amd64.deb —&gt; data.tar.gz -&gt; /usr/lib/lxc/templates/lxc-debian). Copy the file to your machine/server, make it executable and in the same folder run:</p>
<p><code>./lxc-debian -p /var/lib/lxc/name_of_container</code></p>
<p>Useful resource:<br />
<a href="http://blog.foaa.de/2010/05/lxc-on-debian-squeeze/">blog.foaa.de/2010/05/lxc-on-debian-squeeze</a></p>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2011/08/squeeze-lxc-container-in-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding duplicate entries in MySQL database</title>
		<link>http://debian.kitaj.net/2011/07/finding-duplicate-entries-in-mysql-database/</link>
		<comments>http://debian.kitaj.net/2011/07/finding-duplicate-entries-in-mysql-database/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 10:04:17 +0000</pubDate>
		<dc:creator>mitja</dc:creator>
				<category><![CDATA[Moodle]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=89</guid>
		<description><![CDATA[On upgrading my Moodle installation from version 1.9 to 2.1 the upgrade process (initiated from command line) exited with the following error: !!! Error reading from database !!! !! Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '=' SELECT po.id AS oldpage_id, po.pagename AS oldpage_pagename, po.version, po.flags, po.content, po.author, po.userid AS oldpage_userid, po.created, po.lastmodified, [...]]]></description>
			<content:encoded><![CDATA[<p>On upgrading my Moodle installation from version 1.9 to 2.1 the upgrade process (initiated from command line) exited with the following error:</p>
<pre>
!!! Error reading from database !!!
!! Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '='
SELECT po.id AS oldpage_id, po.pagename AS oldpage_pagename, po.version, po.flags,
                   po.content, po.author, po.userid AS oldpage_userid, po.created, po.lastmodified, po.refs, po.meta, po.hits, po.wiki,
                   p.id AS newpage_id, p.subwikiid, p.title, p.cachedcontent, p.timecreated, p.timemodified AS newpage_timemodified,
                   p.timerendered, p.userid AS newpage_userid, p.pageviews, p.readonly, e.id AS entry_id, e.wikiid, e.course AS entrycourse,
                   e.groupid, e.userid AS entry_userid, e.pagename AS entry_pagename, e.timemodified AS entry_timemodified,
                   w.id AS wiki_id, w.course AS wiki_course, w.name, w.summary AS summary, w.pagename AS wiki_pagename, w.wtype,
                   w.ewikiprinttitle, w.htmlmode, w.ewikiacceptbinary, w.disablecamelcase, w.setpageflags, w.strippages, w.removepages,
                   w.revertchanges, w.initialcontent, w.timemodified AS wiki_timemodified,
                   cm.id AS cmid
              FROM wiki_pages_old po
              LEFT OUTER JOIN wiki_entries_old e ON e.id = po.wiki
              LEFT OUTER JOIN wiki w ON w.id = e.wikiid
              LEFT OUTER JOIN wiki_subwikis s ON e.groupid = s.groupid AND e.wikiid = s.wikiid AND e.userid = s.userid
              LEFT OUTER JOIN wiki_pages p ON po.pagename = p.title AND p.subwikiid = s.id
              JOIN modules m ON m.name = 'wiki'
              JOIN course_modules cm ON (cm.module = m.id AND cm.instance = w.id)
</pre>
<p>Summed up — an &#8220;Illegal mix of collations&#8221; was occurring while querying the table <em>wiki_pages_old</em>. A quick search found a <a href="http://moodle.org/mod/forum/discuss.php?d=167193" target="_blank">possible solution</a>. Unfortunately (for now) I&#8217;m not really sure if it helped, since the error persisted, but it is worth of making a note of it until being sure (by migrating the production server).</p>
<p>So I went in with phpMyAdmin and changed the collation on the table manually, which didn&#8217;t help either, since it didn&#8217;t change the collation of the individual fields. So I changed the fields&#8217; collation manually, except for one field, which — after changing the collation — started to report a duplicate entry. After some trial and error I&#8217;ve found a solution.</p>
<p>From the table dump file I&#8217;ve deleted the offending key and after importing the table into the database I&#8217;ve searched for the offending duplicate entries.</p>
<p>The following MySQL query, from <a href="http://forums.mysql.com/read.php?10,180556,180572#msg-180572">MySQL forum</a>, finds the duplicate entries.</p>
<p><code>SELECT t1.* FROM t1 INNER JOIN (<br />
SELECT colA,colB,COUNT(*) FROM t1 GROUP BY colA,colB HAVING COUNT(*)>1) as t2<br />
ON t1.cola = t2.cola and t1.colb = t2.colb;</code></p>
<p>In my case the upper query changes into this:</p>
<p><code>SELECT wiki_pages_old.* FROM wiki_pages_old INNER JOIN (<br />
SELECT pagename,version,wiki,COUNT(*) FROM wiki_pages_old GROUP BY pagename,version,wiki HAVING COUNT(*)>1) as wiki_t2<br />
ON wiki_pages_old.pagename = wiki_t2.pagename and wiki_pages_old.version = wiki_t2.version and wiki_pages_old.wiki = wiki_t2.wiki;</code></p>
<p>I&#8217;ll write some more details after migrating the production server.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2011/07/finding-duplicate-entries-in-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audio and Video Manipulation With ffmpeg</title>
		<link>http://debian.kitaj.net/2011/07/audio-and-video-manipulation-with-ffmpeg/</link>
		<comments>http://debian.kitaj.net/2011/07/audio-and-video-manipulation-with-ffmpeg/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 18:31:20 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=85</guid>
		<description><![CDATA[In order to avoid always re-learning same things I&#8217;m listing few useful commands. For more detail and information go here. Any video/audio to OGG/Vorbis fmpeg -i source.file -vn -acodec libvorbis -aq 6 audio.ogg The -vn option disables video recording — omit if source is audio file. The -aq option stands for audio quality. The value [...]]]></description>
			<content:encoded><![CDATA[<p>In order to avoid always re-learning same things I&#8217;m listing few useful commands. For more detail and information <a href="http://howto-pages.org/ffmpeg/">go here</a>.</p>
<h3>Any video/audio to OGG/Vorbis</h3>
<p><code>fmpeg -i source.file -vn -acodec libvorbis -aq 6 audio.ogg</code></p>
<p>The <code>-vn</code> option disables video recording — omit if source is audio file. The <code>-aq</code> option stands for audio quality. The value of 6 results roughly at 192 kbit/s. For other values check <a href="http://en.wikipedia.org/wiki/Vorbis#Technical_details">this table</a>.</p>
<h3>Any audio/video to mp3</h3>
<p><code>ffmpeg -i source.file -vn -ar 44100 -ac 2 -ab 192 -f mp3 sound.mp3</code></p>
<p>The <code>-vn</code> option disables video recording — omit if source is audio file; <code>-ar</code> sets the audio sampling frequency; <code>-ac</code> number of audio channels; <code>-ab</code> audio bitrate in bit/s; <code>-f</code> forces mp3 format.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2011/07/audio-and-video-manipulation-with-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instaling from source with Checkinstall</title>
		<link>http://debian.kitaj.net/2011/01/instaling-from-source-with-checkinstall/</link>
		<comments>http://debian.kitaj.net/2011/01/instaling-from-source-with-checkinstall/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 13:44:50 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=45</guid>
		<description><![CDATA[If everything goes well, all you need to do is run the commands below. $ ./configure $ make # checkinstall -D make install You&#8217;ll end up with installed package or deb package to install with dpkg. In either case you can simply remove the package and all it&#8217;s files with apt-get or other package manager.. [...]]]></description>
			<content:encoded><![CDATA[<p>If everything goes well, all you need to do is run the commands below.</p>
<p><code>$ ./configure</code><br />
<code>$ make</code><br />
<code># checkinstall -D make install</code></p>
<p>You&#8217;ll end up with installed package or <em>deb</em> package to install with <em>dpkg</em>. In either case you can simply remove the package and all it&#8217;s files with <em>apt-get</em> or other package manager..</p>
<p><em><strong>References:</strong></em></p>
<ul>
<li><a href="http://www.linuxquestions.org/questions/debian-26/build-a-debian-package-deb-from-tar.bz2-680385/">www.linuxquestions.org</a></li>
</ul>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=51003">ubuntuforums.org</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2011/01/instaling-from-source-with-checkinstall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up Logwatch</title>
		<link>http://debian.kitaj.net/2011/01/setting-up-logwatch/</link>
		<comments>http://debian.kitaj.net/2011/01/setting-up-logwatch/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 09:25:00 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[logs]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=73</guid>
		<description><![CDATA[Checking logs is the only way to know what&#8217;s happening with your servers and one way to check them is using Logwatch. Installing it on Debian is easy: apt-get install logwatch On my virtual Debian host there was no configuration file in the expected place so I copied it from /usr/share/logwatch/default.conf folder: cp /usr/share/logwatch/default.conf/logwatch.conf /etc/logwatch/conf/ [...]]]></description>
			<content:encoded><![CDATA[<p>Checking logs is the only way to know what&#8217;s happening with your servers and one way to check them is using <a title="Logwatch" href="http://www.logwatch.org" target="_blank">Logwatch</a>.</p>
<p>Installing it on Debian is easy:<br />
<code>apt-get install logwatch</code></p>
<p>On my virtual Debian host there was no configuration file in the expected place so I copied it from <em>/usr/share/logwatch/default.conf</em> folder:<br />
<code>cp /usr/share/logwatch/default.conf/logwatch.conf /etc/logwatch/conf/</code></p>
<p>Things you must change in this file are:</p>
<ul>
<li><code>Output = mail</code></li>
<li><code>MailTo = your.mail@example.com</code></li>
<li><code>Detail = High</code></li>
</ul>
<p>The rest is optional and subject to your needs. The <em>logwatch.conf</em> is well documented.</p>
<p>Create folder <em>/var/cache/logwatch</em> needed by <i>logwatch</i> as specified in <em>logwatch.conf</em>.<br />
<code># mkdir /var/cache/logwatch</em></p>
<p>Test the setup by running:<br />
<code># logwatch</code></p>
<p>To finish the automatism edit the <em>/etc/cron.daily/00logwatch</em> file, removing <em>--mailto: root</em> option to receive mails to the address we specified in <em>logwatch.conf</em> file.</p>
<p><em><strong>References:</strong></em></p>
<ul>
<li><a title="Logwatch Configuration in Debian" href="http://www.debianhelp.co.uk/logwatch1.htm" target="_blank">www.debianhelp.co.uk</a></li>
<li><a title="Configure Logwatch Log Monitoring Tool on Debian 5.x (Stable)" href="http://enhancedlinux.com/2009/12/25/configure-logwatch-log-monitoring-tool-on-debian-5-x-stable/" target="_blank">enhancedlinux.com</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2011/01/setting-up-logwatch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrade Debian over slow Internet connection</title>
		<link>http://debian.kitaj.net/2010/10/upgrade-debian-over-slow-internet-connection/</link>
		<comments>http://debian.kitaj.net/2010/10/upgrade-debian-over-slow-internet-connection/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 17:57:54 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=68</guid>
		<description><![CDATA[It was a moderately cold fall evening when I finally decided to do upgrade to Squeeze on my home computer. I have a 2MB line at home, sharing it with two other users. Apt-get dist-upgrade announced two and half hours of downloading at full speed and as it was evening I didn&#8217;t want to cut [...]]]></description>
			<content:encoded><![CDATA[<p>It was a moderately cold fall evening when I finally decided to do upgrade to Squeeze on my home computer. I have a 2MB line at home, sharing it with two other users. <em>Apt-get dist-upgrade</em> announced two and half hours of downloading at full speed and as it was evening I didn&#8217;t want to cut off other users. I have an 1GB optical line straight from my office to one of Debian mirrors, so I&#8217;ve decide to do downloading at work.</p>
<p>After short googling I&#8217;ve came accross this <a href="http://embraceubuntu.com/2005/09/22/upgrade-install-ubuntu-on-slow-internet/#comment-39287" target="_blank">comment</a> and <a href="http://batmat.net/apt-offline/ch3.html" target="_blank">this manual</a>. The steps below are a combination of both.</p>
<ol>
<li> At home I&#8217;ve run the following command:<br />
<code>apt-get --print-uris -y dist-upgrade | grep "^'" | gawk '{ print $1 }' | sed "s/'//g" &gt; packages.lst</code></li>
<li> Sent myself the <em>packages.lst</em> to the office with fast connection and there run the command below  in an empty folder on a portable device. You can use <code>-P</code> option to specify the destination folder.<br />
<code>wget -i packages.lst</code></li>
<li> Back at home I&#8217;ve run:<br />
<code>apt-get -o dir::cache::archives="/folder/on/portable/disc/" dist-upgrade</code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2010/10/upgrade-debian-over-slow-internet-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Package and Install PHP extension</title>
		<link>http://debian.kitaj.net/2010/05/package-and-install-php-extension/</link>
		<comments>http://debian.kitaj.net/2010/05/package-and-install-php-extension/#comments</comments>
		<pubDate>Mon, 17 May 2010 10:02:50 +0000</pubDate>
		<dc:creator>mitja</dc:creator>
				<category><![CDATA[installation]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=66</guid>
		<description><![CDATA[No need to use too many words. Go to wwwdotdeb.org and follow step-by-step instruction for downloading PECL extension, making DEB package and installing it with dpkg.]]></description>
			<content:encoded><![CDATA[<p>No need to use too many words.<br />
Go to <a href="http://www.dotdeb.org/2008/09/25/how-to-package-php-extensions-by-yourself/">wwwdotdeb.org</a>  and follow step-by-step instruction for downloading PECL extension, making DEB package and installing it with <em>dpkg</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2010/05/package-and-install-php-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Grub in Debian Rescue Mode</title>
		<link>http://debian.kitaj.net/2009/12/fixing-grub-in-debian-rescue-mode/</link>
		<comments>http://debian.kitaj.net/2009/12/fixing-grub-in-debian-rescue-mode/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 10:40:41 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[reinstall]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=59</guid>
		<description><![CDATA[Today Grub experienced a hiccup which left me with crippled Grub rescue mode complaining about &#8220;symbol &#8216;grub_printf_&#8217; not found&#8220;. Searching Google gave me just one hit — an German forum page from yesterday bearing no solution yet. After trying many known things I eventually created a satisfiable solution — bootable system. Not knowing how to [...]]]></description>
			<content:encoded><![CDATA[<p>Today Grub experienced a hiccup which left me with crippled Grub rescue mode complaining about &#8220;<em>symbol &#8216;grub_printf_&#8217; not found</em>&#8220;. Searching Google gave me just one hit — an German forum page from yesterday bearing no solution yet.</p>
<p>After trying many known things I eventually created a satisfiable solution — bootable system. Not knowing how to fix Grub I decided to downgrade Grub 2 to Grub 1 and the only way to do this is using rescue mode on Debian install disc. The procedure goes as follows:</p>
<ul>
<li>Boot from Debian install disc for architecture you use (i.e. amd64). In the boot menu choose <em>help</em> option as it offers you the option to use the &#8220;old-style&#8221; command line boot options. The default rescue-mode shell lacks some variables needed for installing/removing packages form the system, so it is useful to start rescue-mode with the following boot option (it enables the user input needed during some instal/remove processes): <code>rescue debian-installer/framebuffer=false</code><br />
It is also possible to do this later by running <code>TERM=vt100; export TERM</code> in command-line.</li>
<li>Follow the procedure that looks pretty much as installation procedure, but after certain point it offers you the option to choose the partition to use as a root system. At this point it is good if you know which one is it. Next menu lets you enter the command line in which you can alter your system.</li>
<li>Using apt-get I first removed the Grub 2 installation (just in case leaving behind configuration files) and then installed the <em>grub-legacy</em> package. After some configuring<code><br />
#grub<br />
grub&gt; find /boot/grub/stage1<br />
(hd0,1)<br />
(hd1,0)<br />
grub&gt;root (hd1,0)<br />
grub&gt;setup (hd1)<br />
grub&gt;quit<br />
</code><br />
and<br />
<code><br />
#update-grub<br />
</code><br />
the new &#8220;good-old&#8221; Grub 1 installation was ready for reboot.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2009/12/fixing-grub-in-debian-rescue-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java plugin on 64 bit Debian</title>
		<link>http://debian.kitaj.net/2009/04/java-plugin-on-64-bit-debian/</link>
		<comments>http://debian.kitaj.net/2009/04/java-plugin-on-64-bit-debian/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 07:19:55 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[Java Plugin]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=51</guid>
		<description><![CDATA[Well, finaly I did it. After installing everything I could imagine it might help and trying out all possible solutions I have Java plugin finally working in Iceweasel. The solution was found on Java bug #4802695 first reported on 14-JAN-2003. The helpful comment #514 made by cava on 14-DEC-2008 said: It works finally !!! Just [...]]]></description>
			<content:encoded><![CDATA[<p>Well, finaly I did it. After installing everything I could imagine it might help and trying out all possible solutions I have Java plugin finally working in Iceweasel.</p>
<p>The solution was found on Java bug <span>#4802695 first reported on </span><span>14-JAN-2003. The helpful comment #514 made by <em>cava </em>on 14-DEC-2008 said:</span></p>
<blockquote><p><span>It works finally !!! Just need to link java-6-sun-1.6.0.12/jre/lib/amd64/libnpjp2.so in the Firefox plugins directory and we have it !!!!!!!!!!!!!!!!!!!</span></p></blockquote>
<p><span>The command needed was:</span><br />
<code>ln -s /usr/lib/jvm/java-6-sun-1.6.0.12/jre/lib/amd64/libnpjp2.so ~/.mozilla/plugins/libjavaplugin.so<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2009/04/java-plugin-on-64-bit-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash player for 64 bit Debian</title>
		<link>http://debian.kitaj.net/2009/03/flash-player-for-64-bit-debian/</link>
		<comments>http://debian.kitaj.net/2009/03/flash-player-for-64-bit-debian/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 08:45:41 +0000</pubDate>
		<dc:creator>Mitja</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[flash player]]></category>

		<guid isPermaLink="false">http://debian.kitaj.net/?p=48</guid>
		<description><![CDATA[Quoting Frederik Kriewitz&#8217;s reply on debian-user mailing list: Download the 64 Bit plugin from http://labs.adobe.com/downloads/flashplayer10.html extract it and copy and copy libflashplayer.so to /usr/lib/iceweasel/plugins/ Update (11/25/2009): The new link to 64-bit version is: http://labs.adobe.com/technologies/flashplayer10/64bit.html]]></description>
			<content:encoded><![CDATA[<p>Quoting Frederik Kriewitz&#8217;s reply on debian-user mailing list:</p>
<blockquote><p>Download the 64 Bit plugin from<br />
<a class="moz-txt-link-freetext" href="http://labs.adobe.com/downloads/flashplayer10.html">http://labs.adobe.com/downloads/flashplayer10.html</a><br />
extract it and copy and copy libflashplayer.so to <em class="moz-txt-slash"><span class="moz-txt-tag">/</span>usr/lib/iceweasel/plugins<span class="moz-txt-tag">/</span></em></p></blockquote>
<p>Update (11/25/2009):<br />
The new link to 64-bit version is:<br />
<a href="http://labs.adobe.com/technologies/flashplayer10/64bit.html">http://labs.adobe.com/technologies/flashplayer10/64bit.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://debian.kitaj.net/2009/03/flash-player-for-64-bit-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

