<?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>Fri, 04 Nov 2011 14:19:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2369</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to assign range of IP addresses in Linux?</title>
		<link>http://www.linuxscrew.com/2010/11/26/how-to-assign-range-of-ip-addresses-to-one-network-interface/</link>
		<comments>http://www.linuxscrew.com/2010/11/26/how-to-assign-range-of-ip-addresses-to-one-network-interface/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 17:04:32 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=1136</guid>
		<description><![CDATA[As we know Linux allows to assign almost unlimited number of IP addresses to its interfaces. Such additional IPs applied to the same NIC are known as secondary IP addresses or just secondaries. Some time ago i faced a problem on how to apply about 500 IP addresses to one Linux box and then ensure [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linuxscrew.com/wp-content/uploads/2010/11/fig1_ip_address.png"><img src="http://www.linuxscrew.com/wp-content/uploads/2010/11/fig1_ip_address.png" alt="ip address example" title="ip address example" width="300" height="90" class="alignright size-full wp-image-1150" /></a>As we know Linux allows to assign almost unlimited number of IP addresses to its interfaces. Such additional IPs applied to the same NIC are known as secondary IP addresses or just secondaries. Some time ago i faced a problem on how to apply about 500 IP addresses to one Linux box and then ensure that all of them get online after Linux reboots. There are several ways to accomplish this taks so i would like to share them all.</p>
<h4>Shell script with ifconfig commands</h4>
<p>This is one of the most inefficient ways to get many IP addresses applied to one network interface. Anyways it allows to create as many aliases for the interface as you like so you should create shell script and execute it every time Linux boots.</p>
<pre>touch /path/to/script.sh
chmod +x /path/to/script.sh
vi /path/to/script.sh
</pre>
<p>Now you should add there shell lines which will apply IP addresses, e.g. the following one applies 60 IP addresses to <em>eth0</em> interface:</p>
<pre>for n in {3..63};  do ifconfig eth0:${n} 10.10.10.${n} netmask 255.255.255.0 up; done</pre>
<p>If you type &#8216;ifconfig&#8217; now you will very long output like this one:</p>
<pre>
eth0:3  Link encap:Ethernet  HWaddr 00:50:8D:D1:24:DB
          inet addr:10.10.10.3  Bcast:10.10.10.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:10 Base address:0x2000 

eth0:4  Link encap:Ethernet  HWaddr 00:50:8D:D1:24:DB
          inet addr:10.10.10.4  Bcast:10.10.10.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:10 Base address:0x2000

...

eth0:63  Link encap:Ethernet  HWaddr 00:50:8D:D1:24:DB
          inet addr:10.10.10.63  Bcast:10.10.10.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:10 Base address:0x2000
</pre>
<p>If you decide to delete those IPs you can run the following line as a remedy:</p>
<pre>for n in {3..63};  do ifconfig eth0:${n} 0.0.0.0 &#038;> /dev/null; done</pre>
<p>Once you finished editing <em>/path/to/script.sh</em> script you should add it to startup, so put the line <em>/path/to/script.sh</em> into <em>/etc/rc.local</em> file that Linux executes every time it boots. Please notice that in various distributions this file may be missing so consult with distro&#8217;s docs to get where it is stored.</p>
<h4>Redhat/Centos/Fedora network scripts</h4>
<p>Users of these Linux distributions can apply ranges of IP addresses using <em>ifcfg-eth0-range0</em> files which are read during initialization of network interfaces during boot up process. The following example will make Linux to apply 200 IP addresses to <em>eth1</em> during booting:</p>
<pre>[root ~]#cat /etc/sysconfig/network-scripts/ifcfg-eth1-range0

IPADDR_START=192.168.1.1
IPADDR_END=192.168.1.200
CLONENUM_START=10</pre>
<p><em>CLONENUM_START</em> value specifies starting identifier of alias that will be applied to eth1 interface, in above example the first <em>192.168.1.1</em> will be assigned to <em>eth1:10</em> alias. The last IP of the range <em>192.168.1.200</em> will be applied to <em>eth:210</em> sub-interface. This is totally easy approach.</p>
<pre>Loopback interface</pre>
<p>Did you know that by one line presented below you assign 1022 virtual IP addresses to your Linux system? Here it is:</p>
<pre>ifconfig lo:0 10.0.0.1/22</pre>
<p>Now you can make sure of this by pinging IPs from that range (10.0.0.1 &#8211; 10.0.3.254).</p>
<pre>[root ~]#ping 10.0.0.1 -c 1
PING 10.0.0.1 (10.0.0.1) 56(84) bytes of data.
64 bytes from 10.0.0.1: icmp_seq=1 ttl=64 time=0.063 ms

--- 10.0.0.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.063/0.063/0.063/0.000 ms

...

[root ~]#[root@whitehorse /]# ping 10.0.3.254 -c 1
PING 10.0.0.1 (10.0.3.254) 56(84) bytes of data.
64 bytes from 10.0.3.254: icmp_seq=1 ttl=64 time=0.063 ms

--- 10.0.3.254 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.063/0.063/0.063/0.000 ms</pre>
<p>If you still feel that the first suggested way meets your requirements better than the third one please read more about <a href="http://en.wikipedia.org/wiki/Loopback">loopback interface at wikipedia</a> &#8212; loopbacks are much more useful than aliases in most cases.</p>
<p>Hope it helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2010/11/26/how-to-assign-range-of-ip-addresses-to-one-network-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to monitor traffic at Cisco router using Linux (Netflow)</title>
		<link>http://www.linuxscrew.com/2010/11/25/how-to-monitor-traffic-at-cisco-router-using-linux-netflow/</link>
		<comments>http://www.linuxscrew.com/2010/11/25/how-to-monitor-traffic-at-cisco-router-using-linux-netflow/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 21:16:38 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=1109</guid>
		<description><![CDATA[By default Cisco IOS doesn&#8217;t provide any traffic monitoring tools like iftop or iptraff available in Linux. While there are lots of proprietary solutions for this purpose including Cisco Netflow Collection, you are free to choose nfdump and nfsen open source software to monitor traffic of one or many Cisco routers and get detailed monitoring [...]]]></description>
			<content:encoded><![CDATA[<p>By default <strong>Cisco IOS</strong> doesn&#8217;t provide any <strong>traffic monitoring</strong> tools like <a href="http://www.ex-parrot.com/pdw/iftop/">iftop</a> or <a href="http://iptraf.seul.org/shots/iptraf-iptm1.gif">iptraff</a> available in <strong>Linux</strong>. While there are lots of proprietary solutions for this purpose including <a href="http://www.cisco.com/en/US/products/sw/netmgtsw/ps1964/index.html">Cisco Netflow Collection</a>, you are free to choose <a href="http://nfdump.sourceforge.net/"><strong>nfdump</strong></a> and <strong><a href="http://nfdump.sourceforge.net/">nfsen</a></strong> open source software to monitor traffic of one or many Cisco routers and get detailed monitoring data through your Linux command line or as graphs at absolutely no cost.</p>
<p>Below is beginner&#8217;s guide that helps to quickly deploy netflow collector and visualizer under Linux and impress everybody by cute and descriptive graphs like these:</p>
<p><center><img src="http://www.linuxscrew.com/wp-content/uploads/2010/11/nfsen1.png" alt="nfsen screen" title="nfsen screen" width="500" height="307" class="aligncenter size-full wp-image-1115" /></center></p>
<p>It is highly recommended to look through Netflow basics to get brief understanding of how it works before configuring anything. For example, <a href="http://www.cisco.com/en/US/prod/collateral/iosswrel/ps6537/ps6555/ps6601/prod_white_paper0900aecd80406232.html">here is Cisco&#8217;s document</a> that gives complete information about <a href="http://en.wikipedia.org/wiki/Netflow">Netflow</a>. In a few words to get started you should enable netflow exporting on Cisco router and point it to netflow collector running under Linux. Exported data will contain complete information about all packets the router has received/sent so nfdump and nfsen working under Linux will collect it and visualize to present you the graph like above example.</p>
<p><strong>Cisco Router Setup</strong></p>
<p>1. Enable flow export on ALL Cisco router&#8217;s interfaces that send and receive some traffic, here is an example:</p>
<pre>Router1# configure terminal
Router1(config)#interface FastEthernet 0/0
Router1(config-if)#ip route-cache flow input
Router1(config-if)#interface FastEthernet 0/1
Router1(config-if)#ip route-cache flow input
...</pre>
<p>2. Setup netflow export:</p>
<pre>Router1# configure terminal
Router1(config)#ip flow-export source FastEthernet0/0
Router1(config)#ip flow-export source FastEthernet0/1
Router1(config)#ip flow-export version 5
Router1(config)#ip flow-export destination 1.1.1.1 23456</pre>
<p>Where <em>1.1.1.1</em> is IP address of Linux host where you plan to collect and analyze netflow data. <em>23456</em> is port number of netflow collector running on Linux.</p>
<p><b>Linux Setup</b></p>
<p>1. Download and install nfdump.</p>
<pre>cd /usr/src/
wget http://sourceforge.net/projects/nfdump/files/stable/nfdump-1.6.2/nfdump-1.6.2.tar.gz/download
tar -xvzf nfdump-1.6.2.tar.gz
cd nfdump-1.6.2
./configure --prefix=/ --enable-nfprofile
make
make install
</pre>
<p>2. Download and install nfsen.</p>
<p>It requires web server with php module and <a href="http://www.mrtg.org/rrdtool/">RRD</a> so make sure you have the corresponding packages installed. I hope you&#8217;re running httpd with php already so below are rrd/perl related packages installation hints only.</p>
<p>Fedora/Centos/Redhat users should type this:</p>
<pre>yum install rrdtool rrdtool-devel rrdutils perl-rrdtool</pre>
<p>Ubuntu/Debian:</p>
<pre>aptitude install rrdtool librrd2-dev librrd-dev librrd4 librrds-perl librrdp-perl</pre>
<p>If you run some exotic Linux distribution just install everything that is related to rrd + perl.</p>
<p>At last, nfsen installation:</p>
<pre>cd /usr/src/
wget http://sourceforge.net/projects/nfsen/files/stable/nfsen-1.3.5/nfsen-1.3.5.tar.gz/download
tar -xvzf nfsen-1.3.5.tar.gz
cd nfsen-1.3.5
cp etc/nfsen-dist.conf etc/nfsen.conf
</pre>
<p>In order to continue you should edit file <em>etc/nfsen.conf</em> to specify where to install nfsen, web server&#8217;s username, its document root directory etc. That file is commented so there shouldn&#8217;t be serious problems with it.</p>
<p>One of the major sections of <em>nfsen.conf</em> is &#8216;Netflow sources&#8217;, it should contain exactly the same port number(s) you&#8217;ve configured Cisco with &#8212; recall &#8216;ip flow-export &#8230;&#8217; line where we&#8217;ve specified port 23456. E.g.</p>
<pre>%sources = (
    'Router1'    => { 'port' => '23456', 'col' => '#0000ff', 'type' => 'netflow' },
);</pre>
<p>Now it&#8217;s time to finish the installation:</p>
<pre>./install.pl etc/nfsen.conf</pre>
<p>In case of success you&#8217;ll see corresponding notification after which you will have to start nfsen daemon to get the ball rolling:</p>
<pre>/path/to/nfsen/bin/nfsen start</pre>
<p>From this point nfdump started collecting netflow data exported by Cisco router and nfsen is hardly working to visualize it &#8212; just open web browser and go to <em>http://linux_web_server/nfsen/nfsen.php</em> to make sure. If you see empty graphs just wait for a while to let nfsen to collect enough data to visualize it.</p>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2010/11/25/how-to-monitor-traffic-at-cisco-router-using-linux-netflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>9</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>2</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>0</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" class="broken_link" >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" class="broken_link" >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>13</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"><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" class="broken_link" >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>0</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">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>0</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>
<p><!-- INFOLINKS_OFF -->
<p style="padding-top: 25px; padding-bottom: 25px;"><font size="-2"><strong>Information improvisation: </strong>Our self paced <a href="http://www.actualtests.com/exam-642-631.htm">642-631 exam</a> training courses and high quality <a href="http://www.certkiller.com/exam-117-101.htm">117-101</a> provide you definite guarantee for passing the real <a href="http://www.examsheets.com/exam/642-637.htm">642-637</a> exam. If you get through <a href="http://www.testkingsite.com/cisco/640-461.html">640-461</a> exams, you will find other <a href="http://www.testkingprep.com/642-647.html">642-647</a>.</font></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>
<p><!-- INFOLINKS_OFF -->
<p style="padding-top: 25px; padding-bottom: 25px;"><font size="-2"><strong>Information improvisation: </strong>Our self paced <a href="http://www.actualtests.com/exam-642-631.htm">642-631 exam</a> training courses and high quality <a href="http://www.certkiller.com/exam-117-101.htm">117-101</a> provide you definite guarantee for passing the real <a href="http://www.examsheets.com/exam/642-637.htm">642-637</a> exam. If you get through <a href="http://www.testkingsite.com/cisco/640-461.html">640-461</a> exams, you will find other <a href="http://www.testkingprep.com/642-647.html">642-647</a>.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

