<?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>Linux * Screw &#187; distros</title>
	<atom:link href="http://www.linuxscrew.com/category/distros/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxscrew.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 12:57:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=8925</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>16 GB encrypted candy file</title>
		<link>http://www.linuxscrew.com/2010/05/05/16-gb-encrypted-candy/</link>
		<comments>http://www.linuxscrew.com/2010/05/05/16-gb-encrypted-candy/#comments</comments>
		<pubDate>Wed, 05 May 2010 15:01:50 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[docs]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=994</guid>
		<description><![CDATA[Update: as far as cryptoloop is vulnerable and is not maintained I don&#8217;t recommend using below approach for creating encrypted for for those of you who require strong security. Use truecrypt to create encrypted filesystem within a file instead.
Today it came to my mind that it is time to make sensitive information stored on my [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>Update</strong></span>: as far as <a href="http://www.spiritus-temporis.com/cryptoloop/">cryptoloop</a> is vulnerable and is not maintained I don&#8217;t recommend using below approach for creating encrypted for for those of you who require strong security. Use <a href="http://www.linuxscrew.com/2010/05/08/create-encrypted-filesystem-within-a-file-truecrypt-way/">truecrypt to create encrypted filesystem within a file</a> instead.</p>
<p><img class="alignright" src="/files/passwords.txt.png" alt="passwords.txt" />Today it came to my mind that it is time to make sensitive information stored on my usb flash drive encrypted but still transportable and easy to use. But I don&#8217;t want to have whole my 32 GB usb drive fully encrypted using <em><a href="http://www.truecrypt.org/">truecrypt</a></em> or something similar. It is just toooo slow. I also don&#8217;t want to use <a href="http://en.wikipedia.org/wiki/GNU_Privacy_Guard">GPG</a> for uncompressing files and directories every time I would like to read them and then create new GPG compressed file every time I save changes. This eats too much of my time and system resources. At the same time it is necessary to be able to use  that usb drive under windows, mac, linux whatever (read/write files) but still have my directory structure with <strong>sensitive files encrypted</strong>. Here is the solution: create encrypted <strong>filesystem within a file</strong> named, say, 16GB.candy.bin that could be stored on regular windows formatted usb flash drive and then mounted under Linux <strong>using the password</strong>.</p>
<p>When it becomes necessary I can mount that 16GB.candy.bin as the regular ext3 filesystem with all those stuff like permissions, ownership etc. that is available on ext3 but not in <a href="http://en.wikipedia.org/wiki/File_Allocation_Table">FAT</a> or <a href="http://en.wikipedia.org/wiki/Ntfs">NTFS</a>. On my windows formatted flash drive candy takes only 16 GB so I can use the rest of space to store not so sensitive information like mp3, movies or photos. Moreover I <strong> </strong> on windows or linux to read it.</p>
<p>Let&#8217;s create that 16GB.candy.bin file with encrypted <strong><a href="http://en.wikipedia.org/wiki/Ext3">ext3</a></strong> filesystem (read below explanations below carefully before just to copy/paste commands into CLI):</p>
<p><code>[root@artemn root]# cd /path/to/candy/</p>
<p>[root@artemn root]# modprobe cryptoloop</p>
<p>[root@artemn root]# modprobe aes</p>
<p>[root@artemn root]# dd if=/dev/urandom of=16GB.candy.bin bs=1048576 count=16000</p>
<p>[root@artemn root]# losetup -e aes /dev/loop0 16GB.candy.bin</p>
<p>[root@artemn root]# mkfs.ext3 /dev/loop0</p>
<p>[root@artemn root]# tune2fs -i 0 -c 0 /dev/loop0</code></p>
<p>Here are some points: using above commands we create encrypted file of 16 GB so if you need to have more or less just change &#8220;count=16000&#8243; in <em>dd</em> line. &#8220;count=16000&#8243; means 16GB so &#8220;count=20&#8243; means 20MB. Path &#8216;/path/to/candy/&#8217; is for example only so you should change it to real directory that is able to host encrypted file (16 GB in above example). Command <em>losetup</em> is present in most Linux distributions (btw I recommend <strong><a href="http://www.ubuntu.com">Ubuntu</a> </strong>especially newly released <a href="http://en.wikipedia.org/wiki/Lucid_Lynx#Ubuntu_10.04_LTS_.28Lucid_Lynx.29">Lucid Lynx</a>) but if it is not use your disro&#8217;s packet manager to install it or compile from sources (for super geeks only, <a href="http://en.wikipedia.org/wiki/Stallman">Mr. Stallman</a> if you read this article &#8212; Hello). Reader, you can replace &#8220;/dev/urandom&#8221; in <em>dd</em> line with &#8220;/dev/zero&#8221; that will make that command to finish faster but will lower security level of resulting file (read about <a href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">AES</a> for better understanding). You will need to enter the password when running <em>losetup</em> command so make sure it safe and long enough like &#8216;6U2sAsR37Hn8122dGsaPrew1twt&#8217; but not &#8216;abc123&#8242; or &#8216;iloveyou&#8217;.</p>
<p>Once commands are done you will get 16GB.candy.bin containing encrypted ext3 filesystem. You can store this file where ever you want, say, on a flash drive. If you loose it nobody won&#8217;t be able to open it until he (or she!) <a href="http://aceontech.com/2008/03/29/to-crack-17-character-aes-password-100-years-and-1-billion-dollars/">cracked AES encryption</a> (use long passwords to prevent this). As the next step it is required to mount filesystem and store some files/directories in it:</p>
<p><code>[root@artemn root]# mkdir -p /mnt/candy</p>
<p>[root@artemn root]# cd /path/to/candy/</p>
<p>[root@artemn root]# mount -t ext3 -o loop,encryption=aes 16GB.candy.bin /mnt/candy</p>
<p>[root@artemn root]# cd /mnt/candy</p>
<p>[root@artemn root]# #save files, edit them, view or anything you want</p>
<p>[root@artemn root]# cd /</p>
<p>[root@artemn root]# umount /mnt/candy</code></p>
<p>When you unmount 16GB.candy.bin the changes are already saved there so it&#8217;s not required to compress and encrypt anything unlike with GPG.</p>
<p>P.S. This post is inspired by <a href="http://nst.sourceforge.net/nst/docs/user/ch04s04.html">Loopback tricks</a> article. Thanks to the author. Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2010/05/05/16-gb-encrypted-candy/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Google Chromium OS!</title>
		<link>http://www.linuxscrew.com/2009/11/20/google-chromium-os/</link>
		<comments>http://www.linuxscrew.com/2009/11/20/google-chromium-os/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:52:10 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[distros]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=862</guid>
		<description><![CDATA[Today Google has announced operating system Google Chromium OS. It still not ready to end users as is under deep development but now everyone can see its concepts, benefits and nature. Astonishing news as for me. There were a lot of rumors about Google OS (gos) before it was presented to the public in real. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Chromium OS logo" src="/files/chromium-os-logo.png" alt="" width="200" height="194" />Today <a href="http://www.google.com">Google</a> has <a href="http://googleblog.blogspot.com/2009/11/releasing-chromium-os-open-source.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+blogspot%2FMKuf+%28Official+Google+Blog%29">announced</a> operating system <strong>Google <a href="http://www.chromium.org/chromium-os">Chromium OS</a></strong>. It still not ready to end users as is under deep development but now everyone can see its concepts, benefits and nature. Astonishing news as for me. There were a lot of <a href="http://www.linuxscrew.com/2007/11/01/gos-operating-system-with-google-apps/">rumors</a> about Google OS (gos) before it was presented to the public in real. Now it&#8217;s clear that the most promising OS these days is based on <strong>Linux kernel</strong>. Let&#8217;s see what Google just have presented in details:</p>
<ol>
<li>
<blockquote><p>All apps are web apps. The entire experience takes place within the browser and there are no conventional desktop applications. This means users do not have to deal with installing, managing and updating programs.</p></blockquote>
</li>
<li>
<blockquote><p>Because all apps live within the browser, there are significant benefits to security. Unlike traditional operating systems, Chrome OS doesn&#8217;t trust the applications you run. Each app is contained within a security sandbox making it harder for malware and viruses to infect your computer. Furthermore, Chrome OS barely trusts itself. Every time you restart your computer the operating system verifies the integrity of its code.</p></blockquote>
</li>
<li>
<blockquote><p>We are obsessed with speed. We are taking out every unnecessary process, optimizing many operations and running everything possible in parallel. This means you can go from turning on the computer to surfing the web in a few seconds.</p></blockquote>
</li>
<li><a href="http://www.chromium.org/chromium-os/user-experience">Chromium OS <strong>User Interface Concepts</strong></a> (<a href="http://www.youtube.com/watch?v=hJ57xzo287U">video</a>)</li>
<p style="text-align: center;"><img class="alignnone size-full wp-image-869" title="Chromium OS screenshot" src="http://www.linuxscrew.com/wp-content/uploads/2009/11/68asd3as4d728200.png" alt="Chromium OS screenshot" width="450" height="247" /></p>
<li><a href="http://www.chromium.org/chromium-os/chromiumos-design-docs"><strong>Design Documents</strong></a>: <a href="http://sites.google.com/a/chromium.org/dev/chromium-os/chromiumos-design-docs/security-overview">Software Architecture</a>, <a href="http://sites.google.com/a/chromium.org/dev/chromium-os/chromiumos-design-docs/security-overview">Security Overview</a></li>
</ol>
<p><center><object width="425" height="344" data="http://www.youtube.com/v/0QRO3gKj3qw&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/0QRO3gKj3qw&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></center></p>
<p>VMware <strong>Virtual Machine with Chromium OS</strong> can be found <a href="http://thepiratebay.org/torrent/5170843/chromeos-image-999.999.32309.211410-a1.vmdk.bz2" class="broken_link" >here</a> (torrent).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2009/11/20/google-chromium-os/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GIMP to be removed from Ubuntu?</title>
		<link>http://www.linuxscrew.com/2009/11/19/gimp-to-be-removed-from-ubuntu/</link>
		<comments>http://www.linuxscrew.com/2009/11/19/gimp-to-be-removed-from-ubuntu/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:44:09 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=854</guid>
		<description><![CDATA[This could be an outstanding news by its significance. The next version of Ubuntu (Lucid Lynx or Ubuntu 10.04) won&#8217;t include GIMP (GNU Image Manipulation Program) by default due to its user interface that is too complex&#8230; What a #@^*?
Actually complex UI is not the only decision why GIMP should be vanished from Ubuntu so [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="GIMP to be removed from Ubuntu" src="/files/gimp-logo.png" alt="" width="128" height="128" />This could be an outstanding news by its significance. The next version of Ubuntu (Lucid Lynx or <strong>Ubuntu 10.04</strong>) won&#8217;t include <strong>GIMP</strong> (GNU Image Manipulation Program) by default due to its user interface that is too complex&#8230; What a #@^*?</p>
<p>Actually complex UI is not the only decision why GIMP should be vanished from Ubuntu so here is the full list:</p>
<ul>
<li><span style="font-size: small;">the general user doesn&#8217;t use it</span></li>
<li><span style="font-size: small;">its user-interface is too complex</span></li>
<li><span style="font-size: small;">it&#8217;s an application for professionals</span></li>
<li><span style="font-size: small;">desktop users just want to edit photos and they can do that in F-Spot</span></li>
<li><span style="font-size: small;">it&#8217;s a photoshop replacement and photoshop isn&#8217;t included by default in Windows&#8230;</span></li>
<li><span style="font-size: small;">it takes up room on the disc </span></li>
</ul>
<p>(taken from <a href="http://www.omgubuntu.co.uk/2009/11/gimp-to-be-removed-lucid.html">here</a>)</p>
<p>Still sounds like fresh nonsense? What about <a href="http://f-spot.org/">F-Spot</a> as a replacement? Well, an average user most probably claim that above mentioned reasons are true. Maybe that&#8217;s why GIMP already dropped from latest <a href="http://fedoraproject.org/wiki/Releases/12/FeatureList">Fedora 12</a>. But what should do people who use GIMP every day and loves Ubuntu???</p>
<p>Just execute &#8216;<strong>sudo aptitude install gimp</strong>&#8216; <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2009/11/19/gimp-to-be-removed-from-ubuntu/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Distribution of the week: BackTrack &#8212; Network Security Suite</title>
		<link>http://www.linuxscrew.com/2009/03/05/distribution-of-the-week-backtrack-network-security-suite/</link>
		<comments>http://www.linuxscrew.com/2009/03/05/distribution-of-the-week-backtrack-network-security-suite/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 12:23:06 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[distros]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=666</guid>
		<description><![CDATA[
BackTrack is Live distribution for penetration and security tests. This is how its developers describe it. But there are plenty of tools, utilities, programs behind this brief description. Let&#8217;s dig into.





This distribution started from the merge of two ones: WHAX (or Whoppix) and Auditor Security Collection (the swiss army knife for security assessments). The latest [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.remote-exploit.org/backtrack.html" class="broken_link" ><strong></strong></a></p>
<p><strong>BackTrack</strong> is Live distribution for penetration and security tests. This is how its developers describe it. But there are plenty of tools, utilities, programs behind this brief description. Let&#8217;s dig into.</p>
<div class="mceTemp">
<dl class="wp-caption alignright" style="width: 281px;">
<dt class="wp-caption-dt"><a><strong><strong><img title="BackTrack logo" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Backtrack_logo.png/271px-Backtrack_logo.png" alt="BackTrack logo" width="271" height="64" /></strong></strong></a></dt>
</dl>
</div>
<p>This distribution started from the merge of two ones: <a href="http://www.remote-exploit.org/backtrack.html" class="broken_link" >WHAX</a> (or Whoppix) and <a href="http://en.wikipedia.org/wiki/Auditor_Security_Collection">Auditor Security Collection</a> (<a href="http://seclists.org/bugtraq/2004/May/0239.html">the swiss army knife for security assessments</a>). The latest stable version (BackTrack 3) contains more than <strong><a href="http://backtrack.offensive-security.com/index.php/Tools">300 tools</a></strong> (including such monsters as <a href="http://wireshark.org/">wireshark</a>, <a href="http://www.insecure.org/nmap">nmap</a>, <a href="http://www.hping.org/">hping</a> and others) which will be appreciated by every <strong>security professional</strong>. All tools are categorized into:</p>
<p>1. Information gathering<br />
2. Network Mapping<br />
3. Vulnerability Identification<br />
4. Penetration<br />
5. Privilage Escalation<br />
6. Maintaining Access<br />
7. Covering Tracks<br />
8. Radio Network Analysis (Wi-Fi and Bluetooth)<br />
9. VoIP and Telephony Analysis<br />
10. Digital Forensics<br />
11. Reverse Engineering</p>
<p>The full list of tools with descriptions you can find at <a href="http://backtrack.offensive-security.com/index.php/Tools#Hping">official BackTrack wiki</a>, screenshots and documentation are <a href="http://www.remote-exploit.org/backtrack.html" class="broken_link" >here</a>.</p>
<p>Download Now: <a href="http://www.remote-exploit.org/cgi-bin/fileget?version=bt3-cd" class="broken_link" >CD Image</a>, <a href="http://www.remote-exploit.org/cgi-bin/fileget?version=bt3-usb" class="broken_link" >USB Image</a>. <a href="http://www.remote-exploit.org/backtrack_download.html" class="broken_link" >More?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2009/03/05/distribution-of-the-week-backtrack-network-security-suite/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Speedlinks &#8211; 29 December, 2008</title>
		<link>http://www.linuxscrew.com/2008/12/29/speedlinks-29-december-2008/</link>
		<comments>http://www.linuxscrew.com/2008/12/29/speedlinks-29-december-2008/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 15:48:46 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=653</guid>
		<description><![CDATA[1. Linux kernel 2.6.28 was officially released at 28 Dec, 2008: ext4, graphics execution manager (GEM), TAINTed_CRAP. See First Look by arstechnica.com.
P.S. Linus &#8220;almost Santa&#8221; Torvalds&#8217; announcement is definitely worth reading:
Listen to the cheerful grinding of your harddisk as you reboot into an all-new kernel &#8211; and I&#8217;m sure that if your computer could smile, [...]]]></description>
			<content:encoded><![CDATA[<p>1. Linux <strong>kernel <a href="http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.28.tar.bz2">2.6.28</a></strong> was officially released at 28 Dec, 2008: ext4, <a href="http://en.wikipedia.org/wiki/Graphics_Execution_Manager">graphics execution manager</a> (GEM), TAINTed_CRAP. See <a href="http://arstechnica.com/news.ars/post/20081228-first-look-linux-kernel-2-6-28-officially-released.html">First Look</a> by arstechnica.com.</p>
<p>P.S. Linus &#8220;<strong>almost Santa</strong>&#8221; Torvalds&#8217; <a href="http://lkml.org/lkml/2008/12/24/105">announcement</a> is definitely worth reading:</p>
<blockquote><p>Listen to the cheerful grinding of your harddisk as you reboot into an all-new kernel &#8211; and I&#8217;m sure that if your computer could smile, it would have a big silly grin on its non-existent face. So as you sit there in your basement, give your computer the holiday cheer too.</p></blockquote>
<p>2. <a href="http://www.crn.com/it-channel/212501022;jsessionid=CZ1JISVK3M0QYQSNDLRSKH0CJUNN2JVN?pgno=1" class="broken_link" ><strong>Top 10 Coolest</strong> Open Source <strong>Applications</strong> in 2008</a>. Well, good reading in New Year Eve.</p>
<p>3. <strong><a href="http://www.fsf.org/blogs/membership/bootablemembership">Bootable FSF membership cards</a></strong>: USB flash drive comes with pre-installed <a href="http://www.gnewsense.org/">gNewSense</a> 2.1.</p>
<p>4. <strong><a href="http://www.sabayonlinux.org/">Sabayon Linux 4.0</a></strong> is <a href="http://forum.sabayonlinux.org/viewtopic.php?f=60&amp;t=15490">realeased</a> (smart <a href="http://www.gentoo.org/">Gentoo</a> based distro): 25% boot speed gain, 8500 applications, ext4, KDE 4.1.3, Gnome 2.24.2, OpenOffice.org 3.0, Firefox 3.0 and more&#8230;</p>
<p>5. <strong><a href="http://www.pidgin.im">Pidgin 2.5.3</a></strong> is out. Best GTK based instant messenger is ready for <a href="http://pidgin.im/download/">downloading</a>. <a href="http://developer.pidgin.im/wiki/ChangeLog">Changelog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/12/29/speedlinks-29-december-2008/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Open .docx documents in Linux (OpenOffice)</title>
		<link>http://www.linuxscrew.com/2008/12/15/open-docx-documents-in-linux-openoffice/</link>
		<comments>http://www.linuxscrew.com/2008/12/15/open-docx-documents-in-linux-openoffice/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 20:13:23 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[docs]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[suse]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=623</guid>
		<description><![CDATA[Well, as for now it is not a problem anymore to open Microsoft Office 2007 .docx documents in any Linux distribution coming with OpenOffice suit. It may be Ubuntu (Feisty, Gutsy, Interpid whatever), almost any version of Fedora/RedHat/Centos, *SUSE, Mandriva and of course Debian (as per my personal opinion it&#8217;s the best one).
What is .docx [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Well, as for now it is not a problem anymore to open <a href="http://office.microsoft.com/">Microsoft Office 2007</a> .docx documents in any Linux distribution coming with <a href="http://openoffice.org">OpenOffice</a> suit. It may be Ubuntu (Feisty, Gutsy, Interpid whatever), almost any version of Fedora/RedHat/Centos, *SUSE, Mandriva and of course Debian (as per my personal opinion it&#8217;s the best one).</p>
<p style="text-align: left;">What is .docx actually? It&#8217;s Microsoft&#8217;s file format representing word processor documents and named <a href="http://en.wikipedia.org/wiki/Office_Open_XML">OpenXML</a> (as an attempt to create open and free international standard). Today .docx is default format for Microsoft&#8217;s word processor <a href="http://www.microsoft.com/word/">Word</a>.</p>
<p style="text-align: left;">There are myriads of online converters between OpenXML and OpenOffice formats including .docx, .xlsx, .odt and many etc but sometimes it&#8217;s much more better to just open received .docx file in Linux offline (if there is temporarily no Internet connection or for security/private reasons etc).</p>
<p style="text-align: left;">So, just download the following package to certain directory like /usr/src, here are the commands to do it:</p>
<p style="text-align: left;"><code>1. cd /usr/src<br />
2. sudo wget http://blog.mypapit.net/imej/odf_filter.tar.bz2</code></p>
<p style="text-align: left;">The next step is to unpack the contents of the archive (<a href="http://howto.wikia.com/wiki/Howto_untar_a_tar_file_or_gzip-bz2_tar_file">.tar.bz2</a> is definitely well compressed file) and copy 3 files to OpenOffice&#8217;s system directories:</p>
<p style="text-align: left;"><code>3. sudo tar -xvjf odf_filter.tar.bz2<br />
4. sudo cp OdfConverter /usr/lib/openoffice/program/</code><br />
<code>5. sudo cp MOOXTypeDetection.xcu /usr/lib/openoffice/share/registry/modules/org/openoffice/TypeDetection/Types/<br />
6. sudo cp MOOXFilter_cpp.xcu /usr/lib/openoffice/share/registry/modules/org/openoffice/TypeDetection/Filter/</code></p>
<p style="text-align: left;">As you can see from picture below now it&#8217;s possible to natively open .docx files in openoffice under Linux. Of course such &#8220;native&#8221; support may imply some artefacts in opened files due to file formats incompatibility so it&#8217;s also a good option to ask your friends to convert .docs into .pdf before sending you <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><img title="openoffice_openxml" src="http://www.linuxscrew.com/wp-content/uploads/2008/12/openoffice_openxml-300x244.png" alt="openoffice openxml .docx" width="300" height="244" /></center></p>
<p style="text-align: left;">P.S. Thanks to guys from <a href="http://blog.mypapit.net/2007/09/how-to-open-microsoft-openxml-docx-documents-in-openoffice.html" class="broken_link" >mypapit</a>.</p>
<p style="text-align: left;">P.S. Here are several online converters .doc(x) &lt;-&gt; .odf &lt;-&gt; .pdf:</p>
<p style="text-align: left;">1. <a href="http://www.zamzar.com/">ZAMZAR</a> (possibly the best converter), 2. <a href="http://docx-converter.com/">http://docx-converter.com/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/12/15/open-docx-documents-in-linux-openoffice/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Try Google Chrome in Linux</title>
		<link>http://www.linuxscrew.com/2008/09/16/try-google-chrome-in-linux/</link>
		<comments>http://www.linuxscrew.com/2008/09/16/try-google-chrome-in-linux/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 13:44:26 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[screenshots]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/09/16/try-google-chrome-in-linux/</guid>
		<description><![CDATA[There is still no native Linux support of newly unveiled browser Google Chrome but guys from CodeWeavers prepared the port of Chromium (official name of Google Chome for Linux). This staff is already available for downloading as DEB packages for Ubuntu (32-bit and 64-bit), as RPM for RedHat, Fedora, CentOS etc. as well as self [...]]]></description>
			<content:encoded><![CDATA[<p>There is still no native Linux support of newly unveiled browser <a href="http://www.google.com/chrome/" target="_blank">Google Chrome</a> but guys from <a href="http://www.codeweavers.com/" target="_blank">CodeWeavers</a> prepared the <a href="http://www.codeweavers.com/services/ports/chromium/"><strong>port</strong></a> of <a href="http://dev.chromium.org/">Chromium</a> (official name of Google Chome for Linux). This staff is already available for downloading as <a href="http://media.codeweavers.com/pub/crossover/chromium/cxchromium_0.9.0-1_i386.deb">DEB packages</a> for Ubuntu (32-bit and <a href="http://media.codeweavers.com/pub/crossover/chromium/ia32-cxchromium_0.9.0-1_amd64.deb">64-bit</a>), as <a href="http://media.codeweavers.com/pub/crossover/chromium/cxchromium-0.9.0-1.i386.rpm">RPM</a> for RedHat, Fedora, CentOS etc. as well as <a href="http://media.codeweavers.com/pub/crossover/chromium/install-cxchromium-0.9.0.sh">self installable script</a> for any other Linux distribution.</p>
<p>Well, after quick testings there are no doubts that it is not a good option if you wish to have quick and stable alternative for Firefox&#8230; But of course it is good for evaluation purposes or for those people who CAN&#8217;T wait for official release of Chrome for Linux <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Certainly the port is based on Windows copy run by Wine (don&#8217;t forget to upgrade it). Actually CodeWeavers says that this is just a proof of concept, for fun, and to showcase what Wine can do.</p>
<p style="text-align: center"><a href="http://artiomix.googlepages.com/Linux_Screw-Chromium.png" target="_blank"><img src="http://artiomix.googlepages.com/Linux_Screw-Chromium.th.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/09/16/try-google-chrome-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Weekly portion of Linux humor [6 pics]</title>
		<link>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/</link>
		<comments>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 10:32:17 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/</guid>
		<description><![CDATA[<p>Umm&#8230; See pictures below&#8230; <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<span id="more-595"></span></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/ubuntu.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/gentoo.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/slackware.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/debian.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/redhat.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/knoppix.png" /></p>
<p>Thanks to <a href="http://www.besttechie.net/forums/index.php?s=0b7f10e5e003deebf6af70cd08b8d723&amp;showuser=14">Matt</a> from <a href="http://www.besttechie.net/">besttechie.net</a> forum. </p>
]]></description>
			<content:encoded><![CDATA[<p>Umm&#8230; See pictures below&#8230; <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<span id="more-595"></span></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/ubuntu.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/gentoo.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/slackware.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/debian.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/redhat.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/knoppix.png" /></p>
<p>Thanks to <a href="http://www.besttechie.net/forums/index.php?s=0b7f10e5e003deebf6af70cd08b8d723&amp;showuser=14">Matt</a> from <a href="http://www.besttechie.net/">besttechie.net</a> forum. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Create .deb or .rpm from .tar.gz with checkinstall</title>
		<link>http://www.linuxscrew.com/2008/06/11/create-deb-or-rpm-from-targz-with-checkinstall/</link>
		<comments>http://www.linuxscrew.com/2008/06/11/create-deb-or-rpm-from-targz-with-checkinstall/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 09:46:02 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/06/11/create-deb-or-rpm-from-targz-with-checkinstall/</guid>
		<description><![CDATA[Checkinstall is extremely useful utility to create .deb packages for Debian, Ubuntu (or .rpm packages for Fedora, RedHat, CentOs) from .tar.gz (or .tgz) source tarball after it&#8217;s compiled at your Linux box. In other words you can prepare binary package for later usage without need to compile software from sources every time you need to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/06/torchlight_tar.png" title="tar logo" alt="tar logo" align="right" /><a href="http://www.asic-linux.com.mx/~izto/checkinstall/index.php" target="_blank"><strong>Checkinstall</strong></a> is extremely useful utility to create <strong>.deb</strong> packages for Debian, Ubuntu (or <strong>.rpm</strong> packages for Fedora, RedHat, CentOs) from <strong>.tar.gz</strong> (or .tgz) source tarball after it&#8217;s compiled at your Linux box. In other words you can prepare binary package for later usage without need to compile software from sources every time you need to get it installed on certain Linux box.</p>
<p>Another application of checkinstall is software deinstallation that was compiled and installed from sources. As you might already noticed, not every programmer adds &#8220;uninstall&#8221; rule to Makefile and thus command &#8220;make uninstall&#8221; would fail. The nice solution is to use checkinstall to prepare binary package from sources and then install or uninstall it with <code>dpkg</code> command (or <code>rpm</code> in RedHat based distributions).</p>
<p>Here is the short algorithm on how to prepare .deb package from <a href="http://www.clamav.net" target="_blank">clamav</a> source tarball:</p>
<p>1. Install checkinstall:<br />
<code>sudo aptitude -y install checkinstall</code> (Ubuntu, Debian and related distributions)<br />
or<br />
<code>sudo yum install -y checkinstall</code><br />
(for rpm based distributions, please note that checkinstall usually isn&#8217;t included to standard Fedora/RedHat repositories, so you will need to link up third party repo like <a href="http://dag.wieers.com/rpm/packages/checkinstall/" target="_blank">DAG</a>)<br />
or<br />
compile checkinstall from sources</p>
<p>2. Get clamav sources:<br />
<code>wget http://mesh.dl.sourceforge.net/sourceforge/clamav/clamav-0.81.tar.gz</code> (as an example)</p>
<p>3. Install libraries that might be necessary for clamav compilation:<br />
<code>sudo aptitude install libgmp3 libgmp3-dev</code><br />
(this command is applicable for Debian and certainly will be different for Fedora or RedHat)</p>
<p>4. Compile clamav:<br />
<code>tar xvfz clamav-0.81.tar.gz</code><br />
<code>cd clamav-0.81/</code><br />
<code>./configure --sysconfdir=/etc</code><br />
<code>make</code></p>
<p>5. Run checkinstall and follow its intuitive instructions (enter package description etc.):<br />
<code>sudo checkinstall -D make install</code></p>
<p>6. When finished you&#8217;ll get clamav-0.81_0.81-1_i386.deb (or rpm package if you use Fedora/RedHat/CentOs) you may want to install with <code>sudo dpkg -i  clamav-0.81_0.81-1_i386.deb</code> (or <code>sudo rpm -i ...</code>) or move to another PC for later installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/06/11/create-deb-or-rpm-from-targz-with-checkinstall/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Why did Ubuntu become so popular? UbuntuCat&#8217;s point of view.</title>
		<link>http://www.linuxscrew.com/2008/06/06/why-did-ubuntu-become-so-popular-ubuntucats-point-of-view/</link>
		<comments>http://www.linuxscrew.com/2008/06/06/why-did-ubuntu-become-so-popular-ubuntucats-point-of-view/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 12:57:53 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[distros]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sites]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/06/06/why-did-ubuntu-become-so-popular-ubuntucats-point-of-view/</guid>
		<description><![CDATA[Were you wondering why Ubuntu is Linux distribution #1 for new users (and not new) and how could it become so popular leaving behind such old-times like Mandriva, Linspire, Fedora and even Ubuntu&#8217;s ancestor Debian? I was. And as for me, I think that people stick to community rather than to technology&#8230; Do you agree? [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.linuxscrew.com/wp-content/uploads/2007/09/ubuntu_logo.gif" align="right" height="200" width="200" />Were you wondering why Ubuntu is Linux distribution #1 for new users (and not new) and how could it become so popular leaving behind such old-times like Mandriva, Linspire, Fedora and even Ubuntu&#8217;s ancestor Debian? I was. And as for me, I think that people stick to community rather than to technology&#8230; Do you agree? <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here is the <a href="http://ubuntucat.wordpress.com/2008/05/15/how-did-ubuntu-end-up-so-popular/" class="broken_link"  target="_blank">nice article</a> to read in which UbuntuCat (one of the most active writers at <a href="http://ubuntuforums.org" target="_blank">ubuntuforums.org</a>) tries to find out how did Ubuntu end up so popular&#8230;</p>
<blockquote><p>I think this goes along with the forums being less intimidating, but associating the Ubuntu “Humanity Towards Others” philosophy with the distro seemed to give it a purpose and a flavor beyond mere technology. <a href="http://ubuntucat.wordpress.com/2008/05/15/how-did-ubuntu-end-up-so-popular/" class="broken_link"  target="_blank">Read more &gt;&gt;</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/06/06/why-did-ubuntu-become-so-popular-ubuntucats-point-of-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
