<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Skepo &#187; Linux</title>
	<atom:link href="http://www.skepo.info/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skepo.info</link>
	<description>programming, web development, linux</description>
	<lastBuildDate>Sat, 08 May 2010 11:40:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Using cPanel to schedule tweets</title>
		<link>http://www.skepo.info/linux/using-cpanel-to-schedule-tweets/</link>
		<comments>http://www.skepo.info/linux/using-cpanel-to-schedule-tweets/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 09:48:56 +0000</pubDate>
		<dc:creator>skepo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[tweeting]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.skepo.info/?p=601</guid>
		<description><![CDATA[If you have a cPanel on your server you can schedule tweets using cron jobs. Anyone with a website has access to cron with cPanel, if you have DirectAdmin settings are similar. No need to use HootSuit to schedule tweets. First copy this: curl -u username:password -d status=&#38;quot;Text to tweet&#38;quot; http://twitter.com/statuses/update.xml change username, password and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.skepo.info/wp-content/uploads/cron-in-cpanel.png" alt="Cron jobs in cPanel" /></p>
<p>If you have a cPanel on your server you can schedule tweets using <a href="http://www.skepo.info/linux/scheduling-programs-using-crontab/">cron jobs</a>. Anyone with a website has access to cron with cPanel, if you have DirectAdmin settings are similar. No need to use HootSuit to schedule tweets.</p>
<p><span id="more-601"></span>First copy this:</p>
<p>
<pre class="brush: bash;">curl -u username:password -d status=&amp;quot;Text to tweet&amp;quot; http://twitter.com/statuses/update.xml</pre>
</p>
<p>change username, password and Text to tweet. If you have cPanel find Cron jobs on home page. Select when you want to tweet and paste in the field <em>command</em>, click Add job.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skepo.info/linux/using-cpanel-to-schedule-tweets/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://www.skepo.info/wp-content/uploads/cron-in-cpanel.png" />
		<media:content url="http://www.skepo.info/wp-content/uploads/cron-in-cpanel.png" medium="image">
			<media:title type="html">Cron jobs in cPanel</media:title>
		</media:content>
	</item>
		<item>
		<title>Scheduling programs using crontab</title>
		<link>http://www.skepo.info/linux/scheduling-programs-using-crontab/</link>
		<comments>http://www.skepo.info/linux/scheduling-programs-using-crontab/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:25:34 +0000</pubDate>
		<dc:creator>skepo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[scheduling]]></category>

		<guid isPermaLink="false">http://www.skepo.info/?p=537</guid>
		<description><![CDATA[(Picture from meds.queensu.ca) Every Linux has two commands for scheduling: at and cron. Programs scheduled by command at will be executed once at a defined time. With crontab it&#8217;s possible to define a command that will be executed periodically. To make sure you can use crontab, check if there is /etc/cron.allow file and if it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://meds.queensu.ca/assets/calendar.jpg" alt="Calendar" /></p>
<p>(Picture from <a href="http://meds.queensu.ca" target="_blank">meds.queensu.ca</a>)</p>
<p>Every Linux has two commands for scheduling:<strong> at</strong> and<strong> cron</strong>. Programs scheduled by command <strong>at</strong> will be executed once at a defined time. With <strong>crontab</strong> it&#8217;s possible to define a command that will be executed periodically.<br />
To make sure you can use crontab, check if there is /etc/cron.allow file and if it exists check for your username there. If you use a Debian based Linux you don&#8217;t need to worry, you may use it by default.<span id="more-537"></span><br />
Crontab saves configuration in a simple text file and by entering crontab -e you can edit it in terminal. The syntax is simple:</p>
<pre class="brush: bash;">time command</pre>
<p>Time has this syntax:<br />
m h dom mon dow</p>
<ul>
<li>m is for minute</li>
<li>h is hour</li>
<li>dom is day of month</li>
<li>mon is month</li>
<li>dof is day of week</li>
</ul>
<p>Simple example:</p>
<pre class="brush: bash;">0 0 2 2 1 dd if=/dev/sdb of=./backup</pre>
<p>This will backup a device /dev/sdb at midnight 2nd February, this command will be executed once, to make it run repetitionly, you will need to put asterisk (*) in the place needed. If you want to run this command at midnight every day, put asterisk(*) in every place except m and h:</p>
<pre class="brush: bash;">0 0 * * * dd if=/dev/sdb of=./backup</pre>
<p>For weekly (every monday):</p>
<pre class="brush: bash;">0 0 * * 0 dd if=/dev/sdb of=./backup</pre>
<p>You can also define a range using a hyphen (-) to define a range and a comma for multiple values:</p>
<pre class="brush: bash;">0 12 * * 0-4 mpeg321 ./dont_worry_be_happy.mp3</pre>
<pre class="brush: bash;">0 10,16 * * * mailprogram</pre>
<p>The first command plays â€œDon&#8217;t worry be happyâ€ every day from monday to friday at 12 and second one checks your mail twice a day.<br />
And for the end the most interesting, to schedule GUI apps with crontab use: export DISPLAY=:0 &amp;&amp; command.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skepo.info/linux/scheduling-programs-using-crontab/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:thumbnail url="http://meds.queensu.ca/assets/calendar.jpg" />
		<media:content url="http://meds.queensu.ca/assets/calendar.jpg" medium="image">
			<media:title type="html">Calendar</media:title>
		</media:content>
	</item>
		<item>
		<title>Seven great Linux applications</title>
		<link>http://www.skepo.info/linux/seven-great-linux-applications/</link>
		<comments>http://www.skepo.info/linux/seven-great-linux-applications/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 14:12:48 +0000</pubDate>
		<dc:creator>skepo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.skepo.info/?p=510</guid>
		<description><![CDATA[(Picture Ubuntu Inside by Kordite) Phatch (http://photobatch.stani.be/) How many times you needed to edit multiply photos. It could be just resize, but you needed to open every single one and edit it. There is one cool program for batch photo editing, Phatch. You can do: resizing, adding watermarks, text, shadow, rotate picture, &#8230; But there [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm2.static.flickr.com/1370/819712100_bcdc5e3cef.jpg" alt="Ubunntu Inside" /></p>
<p>(Picture <a title="Ubuntu Inside" href="http://www.flickr.com/photos/kordite/819712100/" target="_blank">Ubuntu Inside</a> by Kordite)  <strong></strong></p>
<p><strong>Phatch</strong></p>
<p><strong></strong> (<a href="http://photobatch.stani.be/" target="_blank">http://photobatch.stani.be/</a>)</p>
<p>How many times you needed to edit multiply photos. It could be just resize, but you needed to open every single one and edit it. There is one cool program for batch photo editing, Phatch. You can do: resizing, adding watermarks, text, shadow, rotate picture, &#8230; <span id="more-510"></span>But there is no crop, I needed it couple of times.</p>
<p><strong>Motion</strong></p>
<p>(<a href="http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome" target="_blank">http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome</a>)</p>
<p>Motion is a motion detection software. If you have camera it&#8217;s funny tool to play with. Has a lot of options about sensitivity, output type and others. If you have a large family, or if you&#8217;re student and have couple ofÂ roommates you can spy who is touching your computer.</p>
<p><strong>StarDict</strong></p>
<p>(<a href="http://stardict.sourceforge.net/" target="_blank">http://stardict.sourceforge.net/</a>)</p>
<p>When I used Windows there was a great program called Babylon, it&#8217;s aÂ commercialÂ dictionary but has some great features like adding multiplyÂ dictionaries like Britanica, Oxford, Merriam Webster and also French, German, Chinese and other. When I switched to Linux I missed it a lot. But than I find out about StarDict it&#8217;s open sourceÂ opponent of Babylon. There are also dictionaryÂ converters, so I was able to convert Babylon dictionaries to StarDict format. When you press a defined key you get a popup with definition of the word.</p>
<p><strong>RemsterSys</strong></p>
<p>(<a href="http://geekconnection.org/remastersys/remastersystool.html" target="_blank">http://geekconnection.org/remastersys/remastersystool.html</a>)</p>
<p>With RamasterSys you can create your own Live Linux distro byÂ modifying Ubuntu and share it with your friends. Its made for Debian and Ubuntu. If you are using different Linux distro there are similar tools for every distro like mklivecd for Mandriva. There is a great tutorial about RemasterSys <a href="http://www.dedoimedo.com/computers/remastersys.html" target="_blank">here</a>.</p>
<p><strong>TrueCrypt</strong></p>
<p>(<a href="http://www.truecrypt.org/" target="_blank">http://www.truecrypt.org/</a>)</p>
<p>TrueCrypt is a multi platform tool able to create crypted partitions using manyÂ algorithms. You can use it on Linux, Windows and Mac without any trouble. Basicly it creates a crypted file which can be mounted as partition, but you can also crypt the whole partition. Crypting a system partition can be only done on Windows, it&#8217;sÂ possibleÂ to crypt a Linux system partition but not with TrueCrypt.</p>
<p><strong>OpenShot</strong></p>
<p>(<a href="http://www.openshotvideo.com/" target="_blank">http://www.openshotvideo.com/</a>)</p>
<p>OpenShot was mad by Jonathan Thomas, when he installed Ubuntu back in 2008. he saw that there is no good video editor for Ubuntu so he decided to make his own. It&#8217;s made for GNOME using Python, GTK and MLT framefork. It&#8217;sÂ relatively new program and right now exists for Debian based distos and Arch Linux. OpenShot is very powerful, simple and easy to use, it&#8217;s not quite stable but you should give it a shot.</p>
<p><strong>EasyTAG</strong></p>
<p><strong></strong> (<a href="http://easytag.sourceforge.net/" target="_blank">http://easytag.sourceforge.net/</a>)</p>
<p>If you have a large collection of Mp3s on your hard drive you might want to install EasyTAG. It&#8217;s a great tool for editing <a href="http://en.wikipedia.org/wiki/ID3" target="_blank">ID3 tags</a> in multiply mp3s. Not just that it can also rename your tracks to lets say <em>Artist &#8211; Song name.mp3.</em> It also supports:Â MP2, MP4/AAC, FLAC, Ogg Vorbis, MusePack, Monkeyâ€™s Audio and WavPac. There are packages for every distribution or if you like you can download source and compile it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skepo.info/linux/seven-great-linux-applications/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:thumbnail url="http://farm2.static.flickr.com/1370/819712100_bcdc5e3cef.jpg" />
		<media:content url="http://farm2.static.flickr.com/1370/819712100_bcdc5e3cef.jpg" medium="image">
			<media:title type="html">Ubunntu Inside</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 9.10 &#8211; clean install or upgrade</title>
		<link>http://www.skepo.info/linux/ubuntu-linux/ubuntu-9-10-clean-install-or-upgrade/</link>
		<comments>http://www.skepo.info/linux/ubuntu-linux/ubuntu-9-10-clean-install-or-upgrade/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 11:30:20 +0000</pubDate>
		<dc:creator>skepo</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[clean install]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.skepo.info/?p=432</guid>
		<description><![CDATA[(Picture by knihm) This is the mostÂ doubtedÂ question when there is a new version of Ubuntu or any other OS. Ubuntu 9.10 is released a week ago and it brings someÂ improvements. There is a new version of the kernel included 2.6.31.1, Ubuntu now ships Ubuntu One by default, GRUB is now in version 2 available. But [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.skepo.info/wp-content/uploads/Ubuntu-CCCP.jpg" alt="Ubuntu CCCP" /></p>
<p>(Picture by <a title="Ubuntu CCCP by knihm" href="http://knihm.deviantart.com/art/Ubuntu-CCCP-18840276" target="_blank">knihm</a>)</p>
<p>This is the mostÂ doubtedÂ question when there is a new version of Ubuntu or any other OS. <a title="Ubuntu 9.10 Overview" href="http://www.ubuntu.com/getubuntu/releasenotes/910overview" target="_blank">Ubuntu 9.10</a> is released a week ago and it brings someÂ improvements. There is a new version of the kernel included 2.6.31.1, Ubuntu now ships Ubuntu One by default, GRUB is now in version 2 available. But there are twoÂ thingsÂ that are important to us when we are deciding about clean install or upgrade.<span id="more-432"></span> Those features are the ext4 filesystem which is now default filesystem and the focus of the Ubuntu developers to the boot time. Ubuntu is doing great job on this, their goal is to have 10s boot time in the next 10.04 LTS release. Many of thoseÂ improvements are already implemented in the 9.10 Karmic Koala. People who haveÂ measuredÂ Â boot time and compared it with the boot time of Ubuntu 9.04 said that it&#8217;s nearly a half.</p>
<p>Almost everyone on Ubuntu forums suggested to do a clean installÂ rather than upgrade (<a title="Clean install fiesty or upgrade" href="http://ubuntuforums.org/showthread.php?t=414036" target="_blank">Clean install fiesty vs upgrade</a>) and it was aÂ discussionÂ about Fiesty. If you upgrade to Karmic Koala you will not have the ext4 filesystem which is a little bit faster than old ext3 filesystem and most importantly you will not sense much of the boot time improvements.</p>
<p>The problem with most people is that they have muchÂ applications installed and many themes or something else installed so they will need to do that again. I&#8217;m like that myself,Â but upgrades have failed in some cases for me and I had to do a clean install. Now I didn&#8217;t even think about upgrade I&#8217;ve done a clean install and soon I will do a clean install of Linux Mint that I have on another partition. I first do a clean install, than install couple of applications which I use mostly and which are not included in Ubuntu. And that&#8217;s it, I will install other thing when they are needed. So install and setup time for me is 1 hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skepo.info/linux/ubuntu-linux/ubuntu-9-10-clean-install-or-upgrade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://www.skepo.info/wp-content/uploads/Ubuntu-CCCP.jpg" />
		<media:content url="http://www.skepo.info/wp-content/uploads/Ubuntu-CCCP.jpg" medium="image">
			<media:title type="html">Ubuntu CCCP</media:title>
		</media:content>
	</item>
		<item>
		<title>Migration to Linux &#8211; My experience</title>
		<link>http://www.skepo.info/linux/migration-to-linux-my-experience/</link>
		<comments>http://www.skepo.info/linux/migration-to-linux-my-experience/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 00:20:00 +0000</pubDate>
		<dc:creator>skepo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.skepo.info/?p=408</guid>
		<description><![CDATA[(Picture by Jonathas Rodrigues) By migration I mean using some Linux distribution or more distributions as only installed OSes. I&#8217;m a Linux user since 2005., my first Linux was Ubuntu 5.04, but I didn&#8217;t migrated fully to Linux till September 2009. In this post I will cover some important things that you need to keep [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm4.static.flickr.com/3322/3624409147_2a4e41b9b5.jpg" alt="Tux executive" /></p>
<p>(Picture by <a href="http://www.flickr.com/photos/jonathasrr/3624409147/">Jonathas Rodrigues</a>)</p>
<p>By migration I mean using some Linux distribution or more distributions as only installed OSes. I&#8217;m a Linux user since 2005., my first Linux was Ubuntu 5.04, but I didn&#8217;t migrated fully to Linux till September 2009. In this post I will cover some important things that you need to keep in mind about performing migration to Linux. <span id="more-408"></span>If you have problems with some of them, maybe you need to wait a little bit or use Windows and Linux as dual boot. If you are prepared to delete Windows but still doubting about it, there are many advantages of migration, just jump to the next part.</p>
<p><strong>Things that brought me back to Windows</strong></p>
<p>I have decided many times to use just Linux on my computer, but after a couple of days I have installed Windows again. Every year I tried about 2 times to switch to Linux, but every one of those was a failure. In the beginning it was because customizability of Linux. There is always something to tweak or setup more custom. Sometimes it ended up good and sometimes not. When there was a problem in many cases it was my fault. For example Slackware just prints the output when it boots, I didn&#8217;t like that so I spent hours and hours on trying to find the right patch for my kernel and compile it in order to have <a href="http://www.bootsplash.org/" target="_blank">bootsplash</a>. That worked well and I thought that it&#8217;s easy to compile the kernel so I tried to change some kernel configuration and recompile it. That was the end.</p>
<p>Some other things that have brought me back to Windows are games, I liked playing Pro Evolution Soccer so much that it alone was enough to take me back to Windows. Also it was because of some apps that exist only on Windows like DevCpp or Visual Studio. If you are using some IDE for programming or if you use some commercial app for movie editing or something like that, there is a good chance that you will not find that app for Linux. But wait don&#8217;t cancel the migration, check <a href="http://www.osalt.com/" target="_blank">Open Source Alternatives</a> to see if there is some application for Linux similar to that you use.</p>
<p>Some other people had problems with drivers, if your computer is brand new try to find out is hardware working in Linux. Support for hardware is much faster available on Windows than on Linux.</p>
<p><strong>Linux awesomeness</strong></p>
<p>Many people install some Linux distribution on a 5Gb partition or even on VM. In order to explore Linux more you need to give it space and time. You don&#8217;t need to make the full migration to Linux but at least give it more time and space to shine, you&#8217;ll like it.</p>
<p>If you use some famous distributions like Debian, Ubuntu, Fedora, &#8230; you may install any application with just one click and there are thousands and thousands of applications available. The beautiful thing about that is that you can update all those applications and also the OS with one click. You will never be able to do that in Windows, because OS and software you run on Windows is stored on many different servers and there is no way to easily track if there is new version or not.</p>
<p>If you are a developer or you like to learn about the system you use, Linux is perfect for you. There are so many tutorials and books about Linux that you can find on Internet without spending money on expensive books. You will find a lot of joy by customizing the look or behavior of your Linux distribution or app. If you want to build some new application there is amazing set of tools and compilers to help you. There is a large set of libraries so maybe you&#8217;ll just need to combine those libraries or build an GUI for them.</p>
<p>On Linux you will not play every new game that comes out, you can play some using <a title="Wine HQ" href="www.winehq.org/" target="_blank">Wine</a>. But you can play almost any retro game that exists. There are emulators for Atari, Dos, Sega, N64, PS 1 and 2 and many more. They are all available through softwareÂ channelsÂ and can be downloaded and installed as any other program with just one click.</p>
<p><strong>Some Linux Myths</strong></p>
<p>Many people think that it&#8217;s very hard to use Linux and that it&#8217;s hard to install it. Linux is just as easy to install and use as Windows and maybe even more easier. Every Linux distribution can be very easily installed and configured through GUI applications, Linux was hard to install but 10 years ago. My friend withÂ which I share a room at college was once bored and asked me if he can play with my laptop. I said OK, but didn&#8217;t even mentioned that I have Linux Mint installed on it. He used it without any problem he played a little bit <a title="SuperTux" href="http://supertux.lethargik.org/" target="_blank">SuperTux</a>, listen to music and played with <a title="Chesee" href="http://projects.gnome.org/cheese/" target="_blank">Chesee</a>. So myth busted <img src='http://www.skepo.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>There is also a myth that if you run on some problem there is no one to help you. That is so not true, just on Ubuntu forums there are currently 936,047 registeredÂ members, there are so many nice people that know much stuff and can help you at any time. You will even get help faster on any Linux forum than from Microsoft. Just try to email Microsoft and ask for help and try to ask on Ubuntu forum for help and see who&#8217;s faster <img src='http://www.skepo.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skepo.info/linux/migration-to-linux-my-experience/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://farm4.static.flickr.com/3322/3624409147_2a4e41b9b5.jpg" />
		<media:content url="http://farm4.static.flickr.com/3322/3624409147_2a4e41b9b5.jpg" medium="image">
			<media:title type="html">Tux executive</media:title>
		</media:content>
	</item>
	</channel>
</rss>
