<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Cutebuntu</title>
	
	<link>http://cutebuntu.moonthology.org</link>
	<description>Ramblings of little ubuntu blogger</description>
	<pubDate>Sat, 08 Nov 2008 07:03:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/cutebuntu" type="application/rss+xml" /><item>
		<title>Scrot in Openbox menu</title>
		<link>http://feeds.feedburner.com/~r/cutebuntu/~3/439948334/</link>
		<comments>http://cutebuntu.moonthology.org/2008/11/02/scrot-in-openbox-menu/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 13:16:32 +0000</pubDate>
		<dc:creator>Hanna</dc:creator>
		
		<category><![CDATA[Gnome]]></category>

		<category><![CDATA[Openbox]]></category>

		<category><![CDATA[Scrot]]></category>

		<category><![CDATA[Tutorial]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cutebuntu.moonthology.org/?p=39</guid>
		<description><![CDATA[Scrot is a simple but quite powerful command line screenshot tool. I have been using it now sometime already and it is a lot more versatile than for example gnome-screenshot. I wanted to make it little easier to use for me and decided to add my most used commands in Openbox menu.
Of course first thing [...]]]></description>
			<content:encoded><![CDATA[<p>Scrot is a simple but quite powerful command line screenshot tool. I have been using it now sometime already and it is a lot more versatile than for example <strong>gnome-screenshot</strong>. I wanted to make it little easier to use for me and decided to add my most used commands in Openbox menu.</p>
<p>Of course first thing is to install Scrot. You can find it in Ubuntu&#8217;s package manager. Just install it thru Synaptic Package Manager or type in terminal:</p>
<p><code>sudo aptitude install scrot</code></p>
<h3>Adding the Scrot in Openbox menu</h3>
<p>If you are new to Openbox, I recommend reading for example these:</p>
<ul>
<li><a href="http://icculus.org/openbox/index.php/Help:Menus">menu tutorial</a></li>
<li><a href="http://urukrama.wordpress.com/openbox-guide/">Openbox guide - urukrama’s weblog</a> (especially &#8220;4. Configuring Openbox&#8221;)</li>
</ul>
<p>So open the menu.xml -file (~/.config/openbox/menu.xml) in your favourite editor (for  example <em>gedit</em> or <em>Leafpad</em>). Dot in front of config means it&#8217;s hidden, so you have to enable showing hidden folders/files if you look for it in your file browser (ctrl+h). Or you could type in terminal:</p>
<p><code>gedit ~/.config/openbox/menu.xml</code></p>
<p>From my <strong>menu.xml</strong> -file:</p>
<pre>
&lt;menu id="scrot" label="Scrot"&gt;
     &lt;item label="Scrot"&gt;
          &lt;action name="Execute"&gt;
               &lt;execute&gt;
                    scrot -e 'mv $f ~/Pictures/Screenshots/'
               &lt;/execute&gt;
          &lt;/action&gt;
     &lt;/item&gt;
     &lt;item label="delay 15"&gt;
          &lt;action name="Execute"&gt;
               &lt;execute&gt;
                    scrot -d 15 -e 'mv $f ~/Pictures/Screenshots/'
               &lt;/execute&gt;
          &lt;/action&gt;
     &lt;/item&gt;
     &lt;item label="Scrot area"&gt;
          &lt;action name="Execute"&gt;
               &lt;execute&gt;
                    scrot -s -e 'mv $f ~/Pictures/Screenshots/'
               &lt;/execute&gt;
          &lt;/action&gt;
     &lt;/item&gt;
&lt;/menu&gt;</pre>
<p>The first option takes screenshot immediately, second one has 15 seconds delay and with third one you can select the area (using the mouse) of the screen.</p>
<pre> -e 'mv $f ~/Pictures/Screenshots/'</pre>
<p>Moves the screenshot to folder you want to. By default scrot creates the screenshot image in your <strong>home</strong> -folder.</p>
<p>The result:<br />
<img src="http://cutebuntu.moonthology.org/cute_images/scrotmenu.png" alt="Scrot in Openbox menu" /></p>
<p>I could also add in <strong>rc.xml</strong> -file keypindings to these commands. This would make taking screenshots even more easy. Example of keypinding in <strong>rc.xml</strong></p>
<pre>&lt;keybind key="Print"&gt;
      &lt;action name="Execute"&gt;
        &lt;execute&gt;
             scrot -e 'mv $f ~/Pictures/Screenshots/'
        &lt;/execute&gt;
      &lt;/action&gt;
    &lt;/keybind&gt;
</pre>
<h3>Same in Gnome</h3>
<p>You can easily add Scrot also in Gnome menu.</p>
<ol>
<li>Right click over main menu and choose <strong>Edit Menus</strong>.<br />
<a href="http://cutebuntu.moonthology.org/cute_images/2008-11-02-162534_687x561_scrot.png"><img src="http://cutebuntu.moonthology.org/cute_images/2008-11-02-162534_687x561_scrot_s.png" alt="step1" /></a></li>
<li>Choose for example <strong>Accessories</strong> and then click <strong>new item</strong> (this will add <strong>new item</strong> in Accessories menu).
</li>
<li>Write the necessary information in popup window and click <strong>ok</strong>.<br />
<a href="http://cutebuntu.moonthology.org/cute_images/2008-11-02-163425_682x556_scrot.png"><img src="http://cutebuntu.moonthology.org/cute_images/2008-11-02-163425_682x556_scrot_s.png" alt="step2" /></a></p>
<blockquote><p>Type: Application<br />
Name: Scrot<br />
Command: scrot -d 15 -e &#8216;mv $f ~/Pictures/Screenshots/&#8217;<br />
Comment: Take a screenshot</p></blockquote>
</li>
<li>You&#8217;re done!<br />
<a href="http://cutebuntu.moonthology.org/cute_images/2008-11-02-163728_1280x800_scrot.png"><img src="http://cutebuntu.moonthology.org/cute_images/2008-11-02-163728_1280x800_scrot_s.png" alt="step3" /></a></li>
</ol>
<p>Look the <strong>man scrot</strong> or <a href="http://linux.die.net/man/1/scrot">scrot(1) - Linux man page</a> for more Scrot options.</p>
<img src="http://feeds.feedburner.com/~r/cutebuntu/~4/439948334" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cutebuntu.moonthology.org/2008/11/02/scrot-in-openbox-menu/feed/</wfw:commentRss>
		<feedburner:origLink>http://cutebuntu.moonthology.org/2008/11/02/scrot-in-openbox-menu/</feedburner:origLink></item>
		<item>
		<title>Alive again</title>
		<link>http://feeds.feedburner.com/~r/cutebuntu/~3/406396729/</link>
		<comments>http://cutebuntu.moonthology.org/2008/09/29/alive-again/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 15:20:40 +0000</pubDate>
		<dc:creator>Hanna</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://cutebuntu.moonthology.org/?p=15</guid>
		<description><![CDATA[I had minor problems with databases etc&#8230; but Cutebuntu is online again. Will I be more active? Well&#8230;. Don&#8217;t expect too much  . Luckily I have few ideas in my mind.
Next Ubuntu, Intrepid Ibex (8.10) should be released on 30th October  .
]]></description>
			<content:encoded><![CDATA[<p>I had minor problems with databases etc&#8230; but Cutebuntu is online again. Will I be more active? Well&#8230;. Don&#8217;t expect too much <img src='http://cutebuntu.moonthology.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . Luckily I have few ideas in my mind.</p>
<p>Next Ubuntu, Intrepid Ibex (8.10) should be released on 30th October <img src='http://cutebuntu.moonthology.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
<img src="http://feeds.feedburner.com/~r/cutebuntu/~4/406396729" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cutebuntu.moonthology.org/2008/09/29/alive-again/feed/</wfw:commentRss>
		<feedburner:origLink>http://cutebuntu.moonthology.org/2008/09/29/alive-again/</feedburner:origLink></item>
		<item>
		<title>Openbox experimenting</title>
		<link>http://feeds.feedburner.com/~r/cutebuntu/~3/406396730/</link>
		<comments>http://cutebuntu.moonthology.org/2008/06/20/openbox-experimenting/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 14:50:12 +0000</pubDate>
		<dc:creator>Hanna</dc:creator>
		
		<category><![CDATA[Openbox]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cutebuntu.moonthology.org/?p=11</guid>
		<description><![CDATA[
I am not really into fancy effects on my desktop. I was using xcompmgr in Openbox for while to get some nice shadows, but eventually I got bored with them. I have enabled the fancy desktop effects on my Gnome desktop but I use Gnome nowadays very rarely.

My Ubuntu (Hardy Heron) desktop, testing effects.
I prefer [...]]]></description>
			<content:encoded><![CDATA[<div class="post">
<p>I am not really into fancy effects on my desktop. I was using <a href="http://wiki.archlinux.org/index.php/Xcompmgr">xcompmgr</a> in Openbox for while to get some nice shadows, but eventually I got bored with them. I have enabled the fancy desktop effects on my Gnome desktop but I use Gnome nowadays very rarely.</p>
<p><img src="../cute_images/gnome-effects.png" alt="Gnome desktop effects" /><br />
<em>My Ubuntu (Hardy Heron) desktop, testing effects.</em></p>
<p>I prefer simple and elegant. Which is why I have been using Openbox and occasionally Pekwm lately. At the moment I like Openbox more. They’re both very light weight window managers and easily configured for your needs. Openbox has few graphical applications that can be used to make right click menu (<a href="http://obmenu.sourceforge.net/">Obmenu</a>) and configuring (<a href="http://icculus.org/openbox/index.php/ObConf:About">Obconf</a>) easier. In Pekwm you handle everything manually editing text-files.</p>
<p>Firstly Openbox (as well a for example Pekwm or metacity) is window manager. Window manager…</p>
<blockquote><p>…is essentially the component which controls the appearance of windows and provides the means by which the user can interact with them. Virtually everything which appears on the screen in X is in a window, and a window manager quite simply manages them.</p>
<p>Source: <a href="http://xwinman.org/intro.php">Window Managers for X</a></p></blockquote>
<p>But I won’t go deeper into window managers now.</p>
<p>I ended up using Openbox mostly because I wanted something lightweight and configurable and Openbox seemed the best option. At the moment I use Openbox alone. But you could use it also for example in Gnome instead of <a href="http://en.wikipedia.org/wiki/Metacity">Metacity</a>. I think it’s the best on its own.</p>
<h3>My Openbox Desktop</h3>
<p><a href="../cute_images/15_06_2008_by_HannaPai.png"><img src="../cute_images/openbox.png" alt="Gnome desktop effects" /></a><br />
<em>Ubuntu (Hardy Heron) with Openbox. Applications: Audacious (theme: <a href="http://customize.org/winamp2/skins/53168">sny - wa</a> by <a href="http://abnorm.net/">Johan Zätterström</a>), Gmrun, Thunar, Gnome Terminal, gtk-chtheme, conky, <a href="http://code.google.com/p/tint2/">Tint</a>, Trayer. Openbox theme: slightly modified <a href="http://www.box-look.org/content/show.php/arch.blue?content=74000">Arch.blue</a>, GTK+ theme: <a href="http://thrynk.deviantart.com/art/BlackWhite-68725458">BlackWhite</a>, icons: <a href="http://mandarancio.deviantart.com/art/ALLBLACK-0-4-70641172">ALLBLACK</a>, wallpaper: <a href="http://www.socwall.com/">Social Wallpapering</a></em></p>
<h3>To keep things in order and aesthetic</h3>
<p>I the beginning there was an empty dark grey screen. Very minimalistic, but though I love minimalism, I wanted little colour and action on my screen.</p>
<p>While I was quite capable to work without panel/taskbar and systemtray, it was easier to be with one. But to find perfect tools took quite long. At the moment I have <a href="http://code.google.com/p/tint2/">Tint</a> (I tried also <a href="http://pypanel.sourceforge.net/">Pypanel</a>, <a href="http://fbpanel.sourceforge.net/">fbpanel</a> and <a href="http://directory.fsf.org/project/PerlPanel/">perlpanel</a>) and Trayer (I tried also <a href="http://icculus.org/openbox/2/docker/">Docker</a> and <a href="http://stalonetray.sourceforge.net/">Stalonetray</a>). And I did accidentally find out that <a href="http://oasis.frogfoot.net/code/tint/">Tint is not tetris</a> (the tint in <a href="http://packages.ubuntu.com/hardy/tint">Ubuntu packages is Tint tetris</a>, the other Tint you have to compile youself). Anyway I like Tint (the taskbar) because while it’s very simple and text based it’s still quite configurable. My only problem with Tint atm is that though it should autostart (it’s in autostart file <img class="wp-smiley" src="../wp-includes/images/smilies/icon_ranting2.gif" alt=":rant:" /> ) when I start Openbox, it doesn’t. This isn’t big thing, but it irks me anyway. Pypanel is my other favourite, but I like the simplicity of Tint more. Perpanel and fbpanel were just too much for my needs. To system trays, as said I tried docker and stalonetray but I had problems with right click so I ended up using <a href="http://packages.ubuntu.com/hardy/trayer">Trayer</a> which works perfectly for me. What I have been wondering though (I had same problem already with Gnome panel) is why some partly transparent icons in system trays have black (or other colour) background <img class="wp-smiley" src="../wp-includes/images/smilies/icon_raiseyebrow.gif" alt=":hmm:" /> . it bothers me.</p>
<p>For keeping desktop background pretty I have <a href="http://projects.l3ib.org/nitrogen/">Nitrogen</a> (sometimes I seem to change wallpapers more often than socks). To get Nitrogen restore the background when Openbox is started you have to set it in autostart file. There are other ways to set the wallpaper (for example <a href="http://packages.ubuntu.com/hardy/feh">feh</a>), but Nitrogen has worked best for me.</p>
<p>I used <a href="http://urukrama.wordpress.com/openbox-guide/">Urukrama’s Openbox guide</a> when I was first installing and configuring Openbox. And I still check it occasionally if I have problems. I recommend reading it if you’re interested to use Openbox.</p>
<h3 id="autostart">My Openbox autostart.sh file</h3>
<p><code># This shell script is run before Openbox launches.<br />
# Environment variables set here are passed to the Openbox session.<br />
export OOO_FORCE_DESKTOP=gnome<br />
#applet for network connectivity<br />
nm-applet --nb-disabled &amp;<br />
# Auto-mounting drives<br />
gnome-volume-manager &amp;<br />
# To set the background image<br />
nitrogen --restore &amp;<br />
#Trayer and its appearance<br />
trayer --transparent true --expand true --alpha 255 --widthtype request --SetDockType true --edge bottom --align right &amp;<br />
conky &amp;<br />
#Progs etc... starting automatically<br />
(sleep 3 &amp;&amp; pidgin) &amp;<br />
(sleep 5 &amp;&amp; evolution) &amp;<br />
(sleep 7 &amp;&amp; tint) &amp;<br />
(sleep 9 &amp;&amp; gmrun) &amp;</code></p>
<h3>Useful resources</h3>
<ul class="list_entry">
<li><a href="http://wiki.archlinux.org/index.php/Xcompmgr">Xcompmgr</a></li>
<li><a href="http://icculus.org/openbox/index.php/Main_Page">Openbox</a></li>
<li><a href="http://urukrama.wordpress.com/openbox-guide/">Openbox guide by Urukrama</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=662204">Short Pekwm guide in Ubuntu Forums</a></li>
<li><a href="http://pekwm.org/projects/pekwm">PekWM</a></li>
<li><a href="http://menumaker.sourceforge.net/">MenuMaker</a></li>
<li><a href="http://en.wikipedia.org/wiki/X_window_manager">Wikipedia - X Window Manager</a></li>
<li><a href="http://www.gtk.org/">GTK+</a></li>
<li><a href="http://xwinman.org/intro.php">Window Managers for X</a></li>
</ul>
<p>My desktop is now a lot cleaner and lighter (also prettier <img class="wp-smiley" src="../wp-includes/images/smilies/icon_tongue.gif" alt=":P" /> ) than it was when I used Gnome. I might later try <a href="http://crunchbang.org/projects/linux/">CrunchBang Linux</a> which seems really intriguing or maybe I’ll finally install <a href="http://www.archlinux.org/">Arch Linux</a>. Especially latter would fit with what I want nowadays, simplicity.</div>
<img src="http://feeds.feedburner.com/~r/cutebuntu/~4/406396730" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cutebuntu.moonthology.org/2008/06/20/openbox-experimenting/feed/</wfw:commentRss>
		<feedburner:origLink>http://cutebuntu.moonthology.org/2008/06/20/openbox-experimenting/</feedburner:origLink></item>
		<item>
		<title>My Conky</title>
		<link>http://feeds.feedburner.com/~r/cutebuntu/~3/272245164/</link>
		<comments>http://cutebuntu.moonthology.org/2008/04/17/my-conky/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 14:47:23 +0000</pubDate>
		<dc:creator>Hanna</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[System Monitors]]></category>

		<guid isPermaLink="false">http://cutebuntu.moonthology.org/?p=7</guid>
		<description><![CDATA[
I recently decided to try Openbox as my window manager and haven’t changed since then. Well I have still a lot to configure, but results so far have been very teaching. Anyway I wanted to present in this second post my Conky. Which is a very customisable lightweight system monitor for desktop.
I based my conky [...]]]></description>
			<content:encoded><![CDATA[<div class="post">
<p>I recently decided to try <a title="Openbox" href="http://icculus.org/openbox/index.php/Main_Page">Openbox</a> as my window manager and haven’t changed since then. Well I have still a lot to configure, but results so far have been very teaching. Anyway I wanted to present in this second post my <a title="Conky" href="http://conky.sourceforge.net/">Conky</a>. Which is a very customisable lightweight system monitor for desktop.</p>
<p>I based my conky -code on this <a href="http://www.gnome-look.org/content/show.php/Conky+scripts?content=52896">one line conky</a> (by <a title="Thrynk - DeviantArt" href="http://thrynk.deviantart.com/">Lyrae</a>). It includes a script which informs whether all packages are up to date or not. I’m not a Perl expert, so I don’t know yet if I was able to modify the script to work in Ubuntu. But at the moment Conky shows the time, mails (POP3), current song in <a title="Exaile" href="http://www.exaile.org/">Exaile</a>, how long system has been on, net uploading and downloading, how many GiB I have used in my home folder, memory and CPU usage. To make it little prettier I used few special fonts to show the stars (<a title="Seeing Stars - dafont" href="http://www.dafont.com/seeing-stars.font">Seeing Stars</a>) and arrows (<a title="PizzaDude Bullets - dafont" href="http://www.dafont.com/pizzadude-bullets.font">PizzaDude Bullets</a>).</p>
<p><a title="My Conky by kuuaika, on Flickr" href="http://farm3.static.flickr.com/2184/2420727648_5960ff2f9c_o.png">Hanna’s Conky</a> and <a title="My Conky code in txt file" href="../cute_stuff/conkyrc.txt">the code</a>. I recommend checking the <a title="Conky - Ubuntu Geek" href="http://www.ubuntugeek.com/conky-a-light-weight-system-monitor-for-ubuntu-linux-systems.html">Ubuntu Geek</a> for further instructions <img class="wp-smiley" src="../wp-includes/images/smilies/icon_smile.gif" alt=":)" /> . If you want to use my code, you can replace the code in .conkyrc file (a hidden file in home directory) with mine.</p>
<p><strong>Useful Links:</strong><br />
<a title="Conky" href="http://conky.sourceforge.net/">Conky</a> (<a title="Conky Variables" href="http://conky.sourceforge.net/variables.html">Conky variables</a>)<br />
Some conky codes can be found in <a title=" Gnome-Look.org" href="http://gnome-look.org/">Gnome-Look.org</a>, write in search field conky. Check also for example this thread: <a title="Post your .conkyrc files w/ screenshots" href="http://ubuntuforums.org/showthread.php?t=281865&amp;highlight=conky">Post your .conkyrc files w/ screenshots</a> in Ubuntu Forums.</p>
<p>ps. A little hint for myself <img class="wp-smiley" src="../wp-includes/images/smilies/icon_tongue.gif" alt=":P" /> , make scripts executable, surprisingly things may start working  <img class="wp-smiley" src="../wp-includes/images/smilies/icon_blush.gif" alt=":blush:" /></p>
<p>pps. Only 7 days till Ubuntu 8.04 Hardy Heron <img class="wp-smiley" src="../wp-includes/images/smilies/icon_laugh.gif" alt=":D" /> !!!</div>
<img src="http://feeds.feedburner.com/~r/cutebuntu/~4/272245164" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cutebuntu.moonthology.org/2008/04/17/my-conky/feed/</wfw:commentRss>
		<feedburner:origLink>http://cutebuntu.moonthology.org/2008/04/17/my-conky/</feedburner:origLink></item>
		<item>
		<title>Some personal thoughts about Ubuntu and Linux</title>
		<link>http://feeds.feedburner.com/~r/cutebuntu/~3/223430900/</link>
		<comments>http://cutebuntu.moonthology.org/2008/01/26/some-personal-thoughts-about-ubuntu-and-linux/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 14:53:34 +0000</pubDate>
		<dc:creator>Hanna</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cutebuntu.moonthology.org/?p=13</guid>
		<description><![CDATA[
Not so surprisingly I’m ex-Windows-user who recently (little less than year ago) switched to Linux, Ubuntu more precisely. I had been using Windows since 3.11 till Vista. Windows was never especially evil to me, I just didn’t like it so much. But I decided to change because I wanted a lighter and safer system (Vista [...]]]></description>
			<content:encoded><![CDATA[<div class="post">
<p>Not so surprisingly I’m ex-Windows-user who recently (little less than year ago) switched to <a title="Linux - Wikipedia" href="http://en.wikipedia.org/wiki/Linux_distribution">Linux</a>, <a title="Ubuntu" href="http://ubuntu.com/">Ubuntu</a> more precisely. I had been using Windows since 3.11 till Vista. Windows was never especially evil to me, I just didn’t like it so much. But I decided to change because I wanted a lighter and safer system (Vista and 512MB RAM wasn’t so good combination). And of course Linux is way cooler than Windows (or even Mac <img class="wp-smiley" src="../wp-includes/images/smilies/icon_tongue.gif" alt=":P" /> ). Why I didn’t change earlier was mostly because I didn’t have own computer.</p>
<p>Switching was easy. First I had divided hard-drive (how to partition the hard-drive, the first thing I learned because of installing Ubuntu) with Ubuntu and Vista and then only Ubuntu (after some experiments and losing the Vista dvd). Before installing Ubuntu, I had been reading about different Linux distros to know which one might be the best for me. And though <a title="Gentoo Linux" href="http://www.gentoo.org/">Gentoo</a> and <a title="Debian - Universal Operating  System" href="http://www.debian.org/">Debian</a> seemed very interesting, I thought that it might be better to start from something more newbie-friendly, like Ubuntu. As said hardest part was partitioning which I for some reason wanted to make myself, but actual installing took maybe 45 minutes (and gave a lot less headache than installing Vista).</p>
<p>It should be clear for everyone that different operating systems do have differences. Expecting all the systems to work same way, is too much asked. Sometimes when I surf at <a title="Ubuntu Suomi - Foorumi" href="http://forum.ubuntu-fi.org/">Finnish Ubuntu Forum</a> (or the <a title="Ubuntu Forums" href="http://ubuntuforums.org/">English one</a>) I come across threads saying<em> “Ubuntu/Linux sucks, I go back to Windows”</em>. Usually these people say that distribution didn’t work like Windows and they tell that they don’t have time nor will to use command line etc… Basically they don’t even want to learn. One reason for misunderstanding is that especially Ubuntu is often advertised as very user-friendly Linux distribution and easy to adapt also by beginners. And while this is true, it still isn’t out of the box -distro.</p>
<p>By above I wanted to say that though I find Ubuntu extremely easy to use and I have had very few troubles, it’s not like there wouldn’t have been moments felt bit erm… disappointed. But I’m little stubborn and I have interest to get things working, small difficulties haven’t been problems for me. And when you have access to Internet or/and you know people who have more experience in most cases you will find answers. I recommend using Google (or the search engine you prefer) and checking the forums <img class="wp-smiley" src="../wp-includes/images/smilies/icon_laugh.gif" alt=":D" /> . For example Skype problems were solved when I got external soundcard, it was very cheap solution.</p>
<p>I’m currently using Ubuntu 7.10, I started with 7.04. I have briefly tried also OpenSUSE (with both <a title="K Desktop Environment" href="http://www.kde.org/">KDE</a> and <a title="GNOME: The Free Software Desktop Project" href="http://www.gnome.org/">Gnome</a>), <a title="Fedora Project" href="http://fedoraproject.org/">Fedora</a>, <a title="Linux  Mint" href="http://linuxmint.com/">Linux Mint</a>, <a title="Xubuntu" href="http://www.xubuntu.org/">Xubuntu</a> (the <a title="XFCE Desktop Environment" href="http://xfce.org/">XFCE</a> edition of Ubuntu), <a title="Fluxbuntu" href="http://fluxbuntu.org/">Fluxbuntu</a>, <a title="Mandriva" href="http://www.mandriva.com/">Mandriva</a> and I installed almost correctly <a title="Slackware" href="http://www.slackware.com/">Slackware</a> <img class="wp-smiley" src="../wp-includes/images/smilies/icon_tongue.gif" alt=":P" /> (I screwed the network configuration few times and then I got tired and decided that maybe some other time). For me Ubuntu (with Gnome desktop environment) has been so far best option. Maybe I’ll try <a title="Zenwalk" href="http://www.zenwalk.org/">Zenwalk</a> in near future (I have already downloaded the .iso file <img class="wp-smiley" src="../wp-includes/images/smilies/icon_laugh.gif" alt=":D" /> ). I’m still a beginner and I have lot to learn, but that’s not problem for me. And having both positive and negative experiences are useful for learning.</p>
<p>If you happen to be using Internet Explorer or Windows in general, let me know if something looks weird, thank you. <img class="wp-smiley" src="../wp-includes/images/smilies/icon_smile.gif" alt=":)" /></div>
<p><!-- Comments code provided by christianmontoya.com --></p>
<img src="http://feeds.feedburner.com/~r/cutebuntu/~4/223430900" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://cutebuntu.moonthology.org/2008/01/26/some-personal-thoughts-about-ubuntu-and-linux/feed/</wfw:commentRss>
		<feedburner:origLink>http://cutebuntu.moonthology.org/2008/01/26/some-personal-thoughts-about-ubuntu-and-linux/</feedburner:origLink></item>
	</channel>
</rss>
