<?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>Mage Blog &#187; Linux in general</title>
	<atom:link href="http://blog.mageprojects.com/category/linux-in-general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mageprojects.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 Jun 2010 20:26:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>ATI VSYNC without video trearing works!</title>
		<link>http://blog.mageprojects.com/2010/06/17/ati-vsync-without-video-trearing-works/</link>
		<comments>http://blog.mageprojects.com/2010/06/17/ati-vsync-without-video-trearing-works/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 13:29:03 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=246</guid>
		<description><![CDATA[Hi, This used to be near impossible some time ago however a new ATI driver just got released: 10.6 and now VSYNC actually works on application level. However, this still does not make it work under mplayer. To get that working you will have to do a few tricks. If you run a desktop WITHOUT [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>This used to be near impossible some time ago however a new ATI driver just got released: 10.6 and now VSYNC actually works on application level. However, this still does not make it work under mplayer. To get that working you will have to do a few tricks. If you run a desktop WITHOUT compisiting the tricks are easy, but with compositing i found myself trying a whole lot more things to get it working.</p>
<p>Note: I suspect the ATI catalyst 10.6 driver is needed!</p>
<p>The trick when you run a desktop without compositing:</p>
<p><strong>mplayer -vo gl2 yourvideo.avi</strong></p>
<p>The trick when you do run compositing is quite a bit more complex.</p>
<p>First edit xorg with the following edits in the <strong>device section</strong>:</p>
<div id="_mcePaste">
<div id="_mcePaste"><strong> Option   &#8220;XAANoOffscreenPixmaps&#8221; &#8220;on&#8221;</strong></div>
<div id="_mcePaste"><strong> Option   &#8220;TexturedVideo&#8221; &#8220;on&#8221;</strong></div>
<div id="_mcePaste"><strong> Option   &#8220;VideoOverlay&#8221; &#8220;off&#8221;</strong></div>
<div id="_mcePaste"><strong> Option   &#8220;OpenGLOverlay&#8221; &#8220;off&#8221;</strong></div>
</div>
<p>And add the following at the bottom of your xorg.conf file (if not there already):</p>
<p><strong>Section &#8220;Extensions&#8221;<br />
Option     &#8220;Composite&#8221; &#8220;Enable&#8221; # If enabled (and used), use OpenGL to VSync<br />
EndSection</strong></p>
<p>Now restart your X by logging out and back in. Playing a video that is tear free with compositing enabled should now be possible with the following <strong>mplayer command</strong>:</p>
<p><strong>mplayer -vo gl yourvideo.avi</strong></p>
<p>Note the &#8220;<strong>-vo gl</strong>&#8221; instead of &#8220;<strong>-vo gl2</strong>&#8221; &#8230;. With my ATI cards the xorg.conf edits where needed to get -gl playing nicely.</p>
<p>This post probably helps some people with the same problem. Leave a comment if this helped you (or not).</p>
<p>Regards,<br />
Mark</p>
<p><strong>Update</strong></p>
<p>I noticed a big difference between windowed and fullscreen mode. On ATI video just seems to flickr when run in windowed mode (even with &#8220;-vo gl&#8221;) but the same video with the same settings runs without any flickering in fullscreen mode (press &#8220;f&#8221;).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2010/06/17/ati-vsync-without-video-trearing-works/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Auto resuming is possible in Linux!</title>
		<link>http://blog.mageprojects.com/2010/06/17/auto-resuming-is-possible-in-linux/</link>
		<comments>http://blog.mageprojects.com/2010/06/17/auto-resuming-is-possible-in-linux/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 23:40:44 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=242</guid>
		<description><![CDATA[Hi, It &#8220;seems&#8221; like a windows task not &#8220;possible&#8221; on linux but that&#8217;s wrong. Auto suspending can be done through con jobs as is a widely known. Auto resuming is something that is in a bit darker area of Linux. This is how you can do that. There is a linux command line tool (probably [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>It &#8220;seems&#8221; like a windows task not &#8220;possible&#8221; on linux but that&#8217;s wrong. Auto suspending can be done through con jobs as is a widely known.</p>
<p>Auto resuming is something that is in a bit darker area of Linux.<br />
This is how you can do that. There is a linux command line tool (probably even installed by default) called: <strong>rtcwake</strong>. With this tool you can use your system &#8220;Real Time Clock (RTC)&#8221; and that allows you to wake your pc at a set point in time.</p>
<p>The commands to do that are very simple but hard to find out if you don&#8217;t know what to look for. For example the following commands set your PC to wake in 5 minutes (asuming it&#8217;s sleeping) &#8212; execute as root! &#8212; :</p>
<p><strong>echo 0 &gt;/sys/class/rtc/rtc0/wakealarm</strong> # Clear RTC<br />
<strong>date &#8220;+%s&#8221; -d &#8220;+ 5 minutes&#8221; &gt;/sys/class/rtc/rtc0/wakealarm</strong> # Set the time 5 minutes in the future</p>
<p>The latter command can also be done like this:</p>
<p><strong>echo +300 &gt;/sys/class/rtc/rtc0/wakealarm</strong></p>
<p>Now all you have to do is suspend your pc and it will (probably) wake up at the set time.<br />
On the command line there are various ways to suspend:</p>
<p><strong>echo -n mem &gt; /sys/power/state</strong></p>
<p>or</p>
<p><strong>pm-suspend</strong></p>
<p>or other ways (like dbus).</p>
<p>Where is this usefull? Well, this might be very handy for HTPC setups that you can just turn off at times when not a single person is gonna use it.</p>
<p>Hope you found this usefull.<br />
Regards,<br />
Mark.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2010/06/17/auto-resuming-is-possible-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Play bluray movies with subtitles in mplayer</title>
		<link>http://blog.mageprojects.com/2009/10/03/play-bluray-movies-with-subtitles-in-mplayer/</link>
		<comments>http://blog.mageprojects.com/2009/10/03/play-bluray-movies-with-subtitles-in-mplayer/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 14:55:35 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=221</guid>
		<description><![CDATA[Hi, Playing a bluray video in Linux is kinda awkward so that&#8217;s why i make a small howto that describes just that. I&#8217;m not aware of any other methods to play bluray movies with (custom) subtitles like described below. If you know another (better?) method please let me know. Before you start, make sure you [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Playing a bluray video in Linux is kinda awkward so that&#8217;s why i make a small howto that describes just that.<br />
I&#8217;m not aware of any other methods to play bluray movies with (custom) subtitles like described below. If you know another (better?) method please let me know.</p>
<p>Before you start, make sure you can mount your bluray image which can be done with the following line:</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; text-align: left;" dir="ltr">mount -o loop -t udf /path/to/image.iso /media/bluray_image</pre>
<p>Or you have a bluray drive with the disc inserted.</p>
<p>Note: the bluray menus are not usable yet in Linux. only playing the video file is possible at the moment.</p>
<p>First you need to have the mplayer svn version. I used <a href="http://aur.archlinux.org/packages.php?ID=24405">this one</a> from arch linux.<br />
I assume you know how to compile it and get mplayer working.</p>
<p>Once it&#8217;s compiled and installed you need to go to your bluray drive or the mount path and then in the folder:<br />
<strong>BDMV/STREAM/</strong></p>
<p>Now if your running compiz or any kind of 3d accelerated desktop environment then you have to append:</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; text-align: left;" dir="ltr">-ao gl</pre>
<p>to the play line (comes later) otherwise you can just use:</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; text-align: left;" dir="ltr">-ao xv</pre>
<p>Now the final play line would be (assuming your still in the BDMV/STREAM/ folder):</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; text-align: left;" dir="ltr">mplayer -vo gl 00000.m2ts</pre>
<p>I used -vo gl because i use an accelerated desktop but replace the gl with xv if you&#8217;re not using an accelerated desktop. The file: <strong>00000.m2ts</strong> was the one that was the biggest for me (well over 6 GB). the name might differ in your movie so make sure check the name before trying to play it.</p>
<p>Now for the subtitles.<br />
Since bluray menus are still not possible in linux you have to just download the subtitle you want. So, go to your favorite subtitle site which provides .srt subtitle files and grab the one you want. Now there is one issue with playing those bluray movies. Somehow mplayer &#8220;thinks&#8221; it starts playing at minute 10 while the movie plays from second one. This causes your subtitles to begin playing from 10 minutes thus resulting in the wrong subtitles at the wrong time. There is a nice little trick in mplayer that can be done to &#8220;prevent&#8221; this. Just let your subtitles delay 10 minutes like so:</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; text-align: left;" dir="ltr">-subdelay -600</pre>
<p>And a subtitle can be loaded with -sub &lt;filename&gt;</p>
<p>The resulting line to play a bluray movie with subtitles is:</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; text-align: left;" dir="ltr">mplayer -vo gl -subdelay -600 -sub subtitle.srt BDMV/STREAM/00000.m2ts</pre>
<p>That&#8217;s what worked for me when playing ripped bluray movies.<br />
Hope this works for you as well.</p>
<p>Goodluck,<br />
Mark.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2009/10/03/play-bluray-movies-with-subtitles-in-mplayer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto: release and renew ip in ubuntu (9.04)</title>
		<link>http://blog.mageprojects.com/2009/06/29/howto-release-and-renew-ip-in-ubuntu-9-04/</link>
		<comments>http://blog.mageprojects.com/2009/06/29/howto-release-and-renew-ip-in-ubuntu-9-04/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 14:02:27 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=198</guid>
		<description><![CDATA[Hey, Yet again a issue in ubuntu that lets me search for hours only to find non working solutions. So here i go again.. i will just post the solution that worked for me. The issue was that i had an ip address in a different part of the same subnetwork. all in 192.168.1.* Now [...]]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>Yet again a issue in ubuntu that lets me search for hours only to find non working solutions.<br />
So here i go again.. i will just post the solution that worked for me.</p>
<p>The issue was that i had an ip address in a different part of the same subnetwork. all in 192.168.1.*<br />
Now on the ubuntu forums you can find a lot of questions to release and renew your ip. None of those methods worked for me.<br />
This did:</p>
<pre style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 114px; text-align: left;" dir="ltr">sudo echo '' &gt; /var/lib/dhcp3/dhclient.leases
sudo echo '' &gt; /var/lib/dhcp3/dhclient-eth0.lease
sudo dhclient -r // or with eth0
sudo dhclient // or with eth0</pre>
<p>What this is doing is cleaning the dhclient lease files and after that releasing your current ip followed by a new dhcp request to get a new ip.Big downside is that the ip doesn&#8217;t seem to be released on the actual dhcp server thus for the remaining lease time no other computers willbe able to get that ip.</p>
<p>This is how it worked for me and i take the downside for what it is.</p>
<p>This will probably help a few other ubuntu users out there with the same issue.<br />
Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2009/06/29/howto-release-and-renew-ip-in-ubuntu-9-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links to help you install your PVR-150 on Ubuntu</title>
		<link>http://blog.mageprojects.com/2009/06/18/links-to-help-you-install-your-pvr-150-on-ubuntu/</link>
		<comments>http://blog.mageprojects.com/2009/06/18/links-to-help-you-install-your-pvr-150-on-ubuntu/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 20:48:04 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=173</guid>
		<description><![CDATA[Hey, Just a quick post with some links that will help you get your PVR-150 device running in ubuntu or just linux. http://www.simsemporium.com/Stuff/Mythtv+-+PVR-150+-+Ubuntu+-+New+Zealand+HOWTO.html Note about that link. They tell you to compile ivtv. That&#8217;s not needed! ivtv is in the ubuntu repository (universe repo) so you can search for that in synaptic or just by [...]]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>Just a quick post with some links that will help you get your PVR-150 device running in ubuntu or just linux.<br />
<a href="http://www.simsemporium.com/Stuff/Mythtv+-+PVR-150+-+Ubuntu+-+New+Zealand+HOWTO.html">http://www.simsemporium.com/Stuff/Mythtv+-+PVR-150+-+Ubuntu+-+New+Zealand+HOWTO.html</a></p>
<p>Note about that link. They tell you to compile ivtv. That&#8217;s not needed! ivtv is in the ubuntu repository (universe repo) so you can search for that in synaptic or just by typing this in a console: sudo apt-get install ivtv-utils.</p>
<p>And if your sound is not working this might be very helpful: <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/228363">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/228363</a></p>
<p>That&#8217;s it for this quick twitter like post. I hope this helped a few people with this issue.</p>
<p>Good luck,<br />
Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2009/06/18/links-to-help-you-install-your-pvr-150-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get DirectFB 1.2.* running on Ubuntu 9.04 (with multi app support)</title>
		<link>http://blog.mageprojects.com/2009/05/12/get-directfb-12-running-on-ubuntu-904-with-multi-app-support/</link>
		<comments>http://blog.mageprojects.com/2009/05/12/get-directfb-12-running-on-ubuntu-904-with-multi-app-support/#comments</comments>
		<pubDate>Tue, 12 May 2009 16:03:02 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=110</guid>
		<description><![CDATA[Hi, Since there is no guide anywhere on the internet that tells you how you can get DirectFB working on ubuntu, i will make one. I expect you know how you compile things in this article. If you don&#8217;t follow some guide that explains how to do that. The very first thing you have to [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Since there is no guide anywhere on the internet that tells you how you can get DirectFB working on ubuntu, i will make one.</p>
<p>I expect you know how you compile things in this article. If you don&#8217;t follow some guide that explains how to do that.</p>
<p>The very first thing you have to do is get ubuntu (9.04 but the last few versions should all work fine).<br />
next is setting up your &#8220;framebuffer&#8221; at boot time. To do this restart your pc. while in grub press &#8220;e&#8221; to edit that boot line. Then select the kernel line and again press &#8220;e&#8221; to edit that line. Now add (at the end of that line) <strong>vga=ask</strong>. Right after that it will ask you which resolution you want. See if yours is in that list and anter the number that&#8217;s standing infront of it. Now just let it boot. Once booted you will have to edit your grub menu file (sudo nano /boot/grub/menu.lst) and add vga=0x<strong>the number you picked</strong>) and then when you reboot you should have the framebuffer stuff. If you don&#8217;t have it look for a solution somewhere on the internet. Problems with framebuffers can be quite hard to understand or find solutions for. I don&#8217;t know much more about those framebuffers then this.</p>
<p>Once that&#8217;s all done you will have to setup your build environment. run the following commands:</p>
<p><span style="color: #999999;"><span style="color: #993300;"><em>sudo apt-get install linux-source // Will install the actual linux source of your current kernel<br />
sudo apt-get build-dep linux // Will get your linux kernel source dependencies installed on your system<br />
sudo apt-get build-dep libdirectfb-1.0-0 // We are going to use a later version of DirectFB but this will do fine to install the requirements<br />
wget http://www.directfb.org/downloads/Core/DirectFB-1.2.8.tar.gz<br />
wget http://www.directfb.org/downloads/Core/linux-fusion-8.1.1.tar.gz<br />
wget http://www.directfb.org/downloads/Extras/DirectFB-examples-1.2.0.tar.gz</em></span><br />
</span></p>
<p>Note: go to: http://www.directfb.org/index.php?path=Main%2FDownloads to download the latest <strong>DirectFB 1.2.*</strong> (do <strong>not</strong> download the 1.3.* versions because that&#8217;s still in development) release and the latest linux-fusion file.</p>
<p>Once you&#8217;ve done the two apt-get lines and downloaded the files you will have to extract those later two.<br />
Do that by running:</p>
<p><span style="color: #993300;"><em>tar -xvf DirectFB-1.2.8.tar.gz<br />
tar -xvf linux-fusion-8.1.1.tar.gz<br />
tar -xvf DirectFB-Examples-1.2.0.tar.gz</em></span></p>
<p>The first thing we&#8217;re going to do now is getting that fusion module compiled and loaded at boot time.<br />
Here is the list of commands to do that:</p>
<p><em><span style="color: #993300;">cd linux-fusion-8.1.1</span><span style="color: #993300;"> make &amp;&amp; sudo make install<br />
sudo su -<br />
echo fusion &gt;&gt; /etc/initramfs-tools/modules // this adds the text &#8220;fusion&#8221; at the end of the modules file<br />
exit<br />
sudo update-initramfs -u // This updates your initramfs file<br />
sudo modprobe fusion // Only needed if you didn&#8217;t restart after you changed initramfs. Otherwise this module will be loaded anyway beacayse it&#8217;s done so during boot.</span><br />
</em></p>
<p>Now fusion is done.<br />
Next is compiling DirectFB with multi application support.</p>
<p>Here is the list of commands needed for that:<br />
<span style="color: #993300;"><em>cd DirectFB-1.2.8<br />
./configure &#8211;enable-multi &#8211;libdir=/usr/lib64 &#8211;bindir=/usr/bin // <strong>note</strong> the libdir is /usr/lib64 for x86_64 distributions and just /usr/lib for the rest. Change it to your needs<br />
make &amp;&amp; sudo make install</em></span></p>
<p>Now it should be compiling for a few minutes. Depending on your cpu. My quadcore does this in a few minutes.<br />
Once it&#8217;s done DirectFB is installed and (if all previous steps worked fine) can be used.</p>
<p>Now to see it in use we need some examples.<br />
here is the command list for that:</p>
<p><span style="color: #993300;"><em>cd DiirectFB-Examples-1.2.0<br />
./configure &#8211;bindir=/usr/bin // note no need to set a libdir because it&#8217;s not making libs<br />
make &amp;&amp; sudo make install</em><br />
</span></p>
<p>Now the examples are also ready to use.<br />
You can now switch to another tty (CTRL + ALT + F&lt;number&gt;), login and run something like df_window.<br />
Be sure to type df_ followed by a hit on the tab button. It will give you all run commands that start with df_ and all the results that  you get to see are DirectFB examples.</p>
<p>But this didn&#8217;t show you a multi-app environment yet.</p>
<p>Log in into your gnome or kde or whatever graphical environment you use. Open up a terminal in there and type:</p>
<p><span style="color: #993300;"><em>nano ~/.directfbrc</em></span></p>
<p>What we&#8217;re going to do now is change a few directfb settings to run it under X11. (see man directfbrc for more settings)<br />
Just plain copy and paste the following settings in that file:</p>
<p><span style="color: #993300;"><em>mode=1024&#215;768<br />
pixelformat=RGB32<br />
system=x11</em></span></p>
<p>You can change the resolution to your liking if you want.</p>
<p>Now type (still in that same console that&#8217;s running inside your graphical environment):</p>
<p><span style="color: #993300;"><em>df_window &amp; // runs it in the background<br />
df_cpuload &amp;</em></span></p>
<p>And you will see the df_window example with in there the cpuload graphic. Nifty huh?<br />
Just be carefull here. save all your data before you start with this because if you do anything wrong it COULD completely crash your system in a way that you just have to reboot to get it back. While writing this howto i experienced this myself because i did do df_window &amp; but i didn&#8217;t add the &#8220;&amp;&#8221; to df_cpuload</p>
<p>This was it for the DirectFB howto.<br />
I might post more stuff about DirectFB in the future.</p>
<p>I hope it was useful to you,<br />
Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2009/05/12/get-directfb-12-running-on-ubuntu-904-with-multi-app-support/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Gnome 2.26 &#8211; Small review of interesting features</title>
		<link>http://blog.mageprojects.com/2009/03/28/gnome-226-small-review-of-interesting-features/</link>
		<comments>http://blog.mageprojects.com/2009/03/28/gnome-226-small-review-of-interesting-features/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 00:08:18 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Linux - Gnome based]]></category>
		<category><![CDATA[Linux - KDE based]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=81</guid>
		<description><![CDATA[Hi, Lets do the same order as the gnome release notes only with my opinion about them and of the items that deserve a little more attention. Brasero Brasero always seemed to be the burning tool to use under linux. Or the one most used. It didn&#8217;t made much sense to have nautilus-cd-burner (which has [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Lets do the same order as the <a title="Gnome 2.26 release noted" href="http://library.gnome.org/misc/release-notes/2.26/index.html">gnome release notes</a> only with my opinion about them and of the items that deserve a little more attention.</p>
<p><strong>Brasero</strong></p>
<p>Brasero always seemed to be the burning tool to use under linux. Or the one most used. It didn&#8217;t made much sense to have nautilus-cd-burner (which has been removed in gnome 2.26) while most people preferred brasero. Brasero is also integrated in nautilus (go to 			<span class="menuchoice"><span class="guimenu">Applications</span> -&gt; <span class="guimenu">System Tools</span> -&gt; <span class="guimenuitem">CD/DVD 			Creator) and seems to be offering the same as nautilus-cd-burner had. I didn&#8217;t test it yet. In my opinion it&#8217;s a wise decision of gnome to make the move to brasero.</span></span></p>
<div id="attachment_82" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-brasero.png"><img class="size-thumbnail wp-image-82" title="screenshot-brasero" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-brasero-500x319.png" alt="screenshot-brasero" width="500" height="319" /></a><p class="wp-caption-text">Brasero screenshot</p></div>
<div id="attachment_83" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-cd-dvd-creator-file-browser.png"><img class="size-thumbnail wp-image-83" title="screenshot-cd-dvd-creator-file-browser" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-cd-dvd-creator-file-browser-500x354.png" alt="screenshot-cd-dvd-creator-file-browser" width="500" height="354" /></a><p class="wp-caption-text">Brasero in nautilus</p></div>
<p><strong>Totem</strong></p>
<p>This is a good example of a feature that <em>might</em> be required by some people but is useless for most. Quote from the release notes:</p>
<blockquote><p><em>While GNOME&#8217;s Media Player already has the ability to display subtitles for a movie, this still required you to have the subtitle data available. As of GNOME 2.26, this restriction is gone. Using the new subtitle downloader plugin, the Media Player will automatically find subtitles for you.</em></p></blockquote>
<p>I don&#8217;t understand why they bother to add in features like that (and remember they did add in youtube support in either gnome 2.22 or 2.24) that are pointless for most people. This should be just a plugin that you can download somewhere but not a new <strong>feature</strong> mentioned in the release notes.</p>
<p><strong>Updated sound preferences for PulseAudio</strong></p>
<p>Now this is an interesting one! PulseAudio is in Fedora since <a href="http://docs.fedoraproject.org/release-notes/f8/en_US/">release 8</a> and ubuntu has it since <a href="http://www.ubuntu.com/getubuntu/releasenotes/804">8.04</a> so it was about time that those volume controls where going to work with PulseAudio instead of against it (or so it seemed sometimes). Sadly the application that gnome posts in a screenshot is nowhere to be found on my ubuntu 9.04 Beta (fully updated) machine so i can&#8217;t really say more about it without seeing it for myself.</p>
<p><strong>Multiple monitors</strong></p>
<p>If you have just one monitor you probably don&#8217;t care about this but it&#8217;s something that was divided in the past. Ubuntu had it&#8217;s own application to get this. Fedora had one and there where a few others floating around. Far from an ideal situation. Now Gnome has updated his display program to support multiple screens. This was all possible with the xrandr command line tool but a graphical frontend it quite handy for things like this. It&#8217;s becoming a nice tool now and way more centralized then then it used to be.</p>
<p><strong>Epiphany</strong></p>
<p>This browser for (and by) Gnome looks clean but has a lot of potential. I will write a bigger article or perhaps a review about this one later. What they added here is Firefox&#8217;s &#8220;<em>Awsome Bar</em>&#8220;&#8230; it looks funny and seems to be running fast from what i&#8217;ve seen so far. It&#8217;s definitely a browser to check out and see if you like it.</p>
<div id="attachment_87" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-gnome-226-release-notes.png"><img class="size-thumbnail wp-image-87" title="screenshot-gnome-226-release-notes" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-gnome-226-release-notes-500x297.png" alt="screenshot-gnome-226-release-notes" width="500" height="297" /></a><p class="wp-caption-text">Epiphany - Note the wrong render of the legend box. That&#39;s bad and ugly! (no issue in Firefox)</p></div>
<p><strong>Overall Gnome 2.26 impression</strong></p>
<p>With the previous 2 releases (<a href="http://library.gnome.org/misc/release-notes/2.22/index.html">2.22</a> and <a href="http://library.gnome.org/misc/release-notes/2.24/index.html">2.24</a>) i found the release notes weak and more useless stuff that was added then useful stuff. Back then it seemed (to me) that they added what was popular at the time. Google had just bought Youtube and they felt some need to implement that in Totem. This time they did also include stuff that strikes me as useless but the majority seems to be useful for everyday Gnome usage. This release was a good one, despite the additions that i rather didn&#8217;t see, for Gnome although not much changed visually. This seems to be the release i&#8217;ve been hoping for since roughly 2.20. A release where they finally fixed the things that needed fixing and add the things that are needed.</p>
<p><strong>Next in 6 months: Gnome 2.28</strong></p>
<p>There are already some ideas for the next Gnome version. At this moment only the Artwork section for the next gnome has been filled in and that looks promising. If you want to have a look at it click <a href="http://live.gnome.org/RoadMap">here</a>.</p>
<p>I hope you liked this small review of interesting new and updated Gnome 2.26 features.</p>
<p>Till next time,<br />
Mark.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2009/03/28/gnome-226-small-review-of-interesting-features/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Get your microphone working in Ubuntu 9.04 and skype (x64)</title>
		<link>http://blog.mageprojects.com/2009/03/24/get-your-microphone-working-in-ubuntu-904-and-skype-x64/</link>
		<comments>http://blog.mageprojects.com/2009/03/24/get-your-microphone-working-in-ubuntu-904-and-skype-x64/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 16:47:22 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=56</guid>
		<description><![CDATA[Hi, After hours of testing i finally found out how to get my microphone to work under ubuntu. The thing that i had already working &#8220;out of the box&#8221; is that you could talk in your microphone and you would hear it come out of your speakers but somehow it wasn&#8217;t recording it when i [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>After hours of testing i finally found out how to get my microphone to work under ubuntu.<br />
The thing that i had already working &#8220;out of the box&#8221; is that you could talk in your microphone and you would hear it come out of your speakers but somehow it wasn&#8217;t recording it when i tried to record the input from the microphone. So once i got it working i started writing this howto so that others can get a microphone (and skype) working as well. This howto should work in any linux distribution since it&#8217;s not ubuntu specific. It <strong>is</strong> gnome specific so i don&#8217;t know how well this works (if at all) in kde.</p>
<p>The first thing i did (and you should do as well) is open a console (ALT+F2 -&gt; gnome-terminal or xterm).<br />
Now type this:<br />
[sourcecode]<br />
alsamixer<br />
[/sourcecode]</p>
<p>now you should see something like this:</p>
<p><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-markmark-desktop.png"><img class="alignnone size-thumbnail wp-image-66" title="screenshot-markmark-desktop" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-markmark-desktop-500x282.png" alt="screenshot-markmark-desktop" width="500" height="282" /></a></p>
<p>My advise would be to just put all at max EXEPT for the values that contain anything like &#8220;boost&#8221;.. i put them up to test with and it didn&#8217;t really improve microphone quality or made it louder. It just made it sound horrible and it was even affecting the normal playback sound as well.</p>
<p>Now once this is done press TAB in that alse mixes stuff. You should now get the properties for &#8220;Capture&#8221; (seen at the top left corner in those few lines of text) devices:<br />
<a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-markmark-desktop-1.png"><img class="alignnone size-thumbnail wp-image-67" title="screenshot-markmark-desktop-1" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-markmark-desktop-1-500x282.png" alt="screenshot-markmark-desktop-1" width="500" height="282" /></a></p>
<p>I&#8217;m not sure if anything here helped getting it working but i turned all &#8220;boost&#8221; things off and the rest on. Feel free to tweak those settings a bit to see if they actually do something with the microphone.</p>
<p>Now, once you&#8217;ve done this, you &#8220;should&#8221; have your microphone setup currectly and it should just work. There are just a few more issues. When you start recording your microphone imput you most likely don&#8217;t hear anything when you play it back. That&#8217;s because the &#8220;Sound Capture&#8221; setting in gnome&#8217;s sound settings is set wrong.<br />
So open the gnome sound settings: <strong>System -&gt; Preferences -&gt; Sound</strong> and you should see this:</p>
<p><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-sound-preferences.png"><img class="alignnone size-thumbnail wp-image-68" title="screenshot-sound-preferences" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-sound-preferences-435x500.png" alt="screenshot-sound-preferences" width="435" height="500" /></a></p>
<p>The way to test if your microphone is actually working is by clicking on the &#8220;Test&#8221; button behind &#8220;Sound capture&#8221;. Press test and talk in your microphone. If you hear yourself with a slight delay from the speakers you have it working. If not try every option in the list (in the screenshot it&#8217;s on &#8220;ALSa &#8211; Advanced Linux Sound Architecture&#8221; between the &#8220;Sound capture:&#8221;  and &#8220;test&#8221;. one of them should be working. Also note that there seems to be double values with exactly the same name but they do act differently! atleast that was the case for me.</p>
<p>Once you&#8217;ve done that and you found one that seems to be working (the right one for me was: &#8220;HDA Intel something&#8230;&#8221; which was in the list twice. the top one did it for me) then you can start recording your microphone if you want. Try it out in <strong>gnome-sound-recorder</strong> but i won&#8217;t go deeper in that stuff.</p>
<p>Oke, by now your microphone should be working and you can record your microphone input and it seems to be working fine. If that&#8217;s the case then you now install skype (i used this link: <a href="http://www.skype.com/go/getskype-linux-ubuntu-amd64 ">http://www.skype.com/go/getskype-linux-ubuntu-amd64</a> which should be the latest x64 version) Open skype and go to the &#8220;Sound Devices&#8221; tab in skype.<br />
<a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-skype-sound-options.png"><img class="alignnone size-thumbnail wp-image-69" title="screenshot-skype-sound-options" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-skype-sound-options-500x334.png" alt="screenshot-skype-sound-options" width="500" height="334" /></a></p>
<p>For me the Sound out and Ringing was just fine but the Sound in was wrong. To get that one good you have to (sadly) test every option in the Sound in list and &#8220;Make a test call&#8221;&#8230; say something and see if it gets out of your boxes after the second beep.</p>
<p>This is how i got it working.<br />
Here are my settings from the volume control stuff in gnome incase you might be interested in those as well.</p>
<p><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-1.png"><img class="alignnone size-thumbnail wp-image-65" title="screenshot-1" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-1-500x217.png" alt="screenshot-1" width="500" height="217" /></a></p>
<p>Note for the image above: i have no clue why the microphone icons have a cross in there. i could turn them off/on whatever i wanted but the setting didn&#8217;t seem to be saved and didn&#8217;t seem to mather for the microphone.</p>
<p><a href="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot.png"><img class="alignnone size-thumbnail wp-image-64" title="screenshot" src="http://blog.mageprojects.com/wp-content/uploads/2009/03/screenshot-500x218.png" alt="screenshot" width="500" height="218" /></a></p>
<p>It <strong>should</strong> all be working fine now.</p>
<p>I hope this howto has been helpfull for you. If you found another solution or have something to add to this feel free to post so in the comments.<br />
Good luck,<br />
Mark</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2009/03/24/get-your-microphone-working-in-ubuntu-904-and-skype-x64/feed/</wfw:commentRss>
		<slash:comments>71</slash:comments>
		</item>
		<item>
		<title>Get your gnome metacity decorations back</title>
		<link>http://blog.mageprojects.com/2008/12/20/get-your-gnome-metacity-decorations-back/</link>
		<comments>http://blog.mageprojects.com/2008/12/20/get-your-gnome-metacity-decorations-back/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 15:24:05 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Linux - Gnome based]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=48</guid>
		<description><![CDATA[Hey, I was playing around with gnome and openbox (and compiz) and to my surprise i didn&#8217;t had any decorations in gnome anymore when i switched back to just gnome (no openbox nor compiz). I did a search on google to try and find the fix but sadly there wasn&#8217;t any good one. People with [...]]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>I was playing around with gnome and openbox (and compiz) and to my surprise i didn&#8217;t had any decorations in gnome anymore when i switched back to just gnome (no openbox nor compiz). I did a search on google to try and find the fix but sadly there wasn&#8217;t any good one. People with similar problems got the suggestion to add metacity in the gnome-session tool which should also work but isn&#8217;t the solution because it simply isn&#8217;t in there when everything is working and when you didn&#8217;t screw with other windows managers yet.</p>
<p>So i did a search on my other pc where it was all working fine to see where metacity really has to be enabled. It turns out that you have to be in gconf to do that!<br />
But not on this gconf location: &#8220;/desktop/gnome/applications/window_manager&#8221; like what was suggested in ubuntu&#8217;s forums. You have to be in this location: &#8220;<strong>/desktop/gnome/session/required_components/windowmanager</strong>&#8221; illustrated by the screenshot below.</p>
<p><a href="http://blog.mageprojects.com/wp-content/uploads/2008/12/gnome_metacity_fix.png"><img class="alignnone size-thumbnail wp-image-49" title="gnome_metacity_fix" src="http://blog.mageprojects.com/wp-content/uploads/2008/12/gnome_metacity_fix-499x405.png" alt="gnome_metacity_fix" width="499" height="405" /></a></p>
<p>And make sure the key (selected row in the image): &#8220;<strong>windowmanager</strong>&#8221; is set to &#8220;<strong>metacity</strong>&#8220;.<br />
You can access that same tool by pressing: <strong>ALT +  F2</strong> then type in: &#8220;<strong>gconf-editor</strong>&#8220;.</p>
<p>If you don&#8217;t have that tool or don&#8217;t know how to get it you can insert the metacity value directly with this line:<br />
&#8220;<strong>gconftool-2 -s -t string /desktop/gnome/session/required_components/windowmanager metacity</strong>&#8221;<br />
You can just enter that line in the run box (again by pressing <strong>ALT + F2</strong>).</p>
<p>Also note that if you encounter a bug like this, no decorations while you had them, and you didn&#8217;t edited files yourself but just installed and removed packages that your distribution provides then it&#8217;s a bug in those packages and should be reported. So if it&#8217;s not reported please do so to help your distribution get better.</p>
<p>I hope this helped anyone with a similar issue,<br />
Mark.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2008/12/20/get-your-gnome-metacity-decorations-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing ASF streams under Linux (Fedora 10) with mplayer</title>
		<link>http://blog.mageprojects.com/2008/11/27/playing-asf-streams-under-linux-fedora-10-with-mplayer/</link>
		<comments>http://blog.mageprojects.com/2008/11/27/playing-asf-streams-under-linux-fedora-10-with-mplayer/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 23:28:05 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=12</guid>
		<description><![CDATA[Hey, I recently tried to play a ASF stream under linux. I first tried it the most obvious way for fedora users with a default installation is to install the livna repository (now merged in rpmfusion) and install the gstreamer bad and ugly plugins. The Fedora version i used was: Fedora 10 x64 fully updated. [...]]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>I recently tried to play a ASF stream under linux.<br />
I first tried it the most obvious way for fedora users with a default installation is to install the livna repository (now merged in rpmfusion) and install the gstreamer bad and ugly plugins.</p>
<p>The Fedora version i used was: Fedora 10 x64 fully updated.<br />
<strong><br />
The Totem way (<span style="color: #ff0000;">total failure</span>)</strong><br />
So after the installation i tried to play the stream. At first everything seems to be fine&#8230; till after a few seconds. Totem starts buffering, plays a bit, freezes the image and buffers a bit, plays a bit, freezes the image and buffers a bit and so on. It plays about 2 seconds then freezes and buffers before playing for another 2 seconds&#8230;. you get the point.</p>
<p>Totem&#8217;s buffering is absolutely horrible! i tried changing various buffer settings in gconf and changed the connection setting in the totem options. Totem simply seems to ignore any changes. I just can&#8217;t get it working in Totem.</p>
<p>Because totem is so useless in buffering (kinda important for a video player!) i say that that player is just a complete waste of time for the gnome developers and a shame they can&#8217;t even properly fix buffering while they do add in useless features like youtube support. Without proper buffering that feature is as useless as totem is right now. To totem devs: get totem&#8217;s buffering fixed or remove it completely</p>
<p><strong>The Xine way (<span style="color: #ff0000;">total failure</span>)<br />
</strong>I haven&#8217;t tried a lot in xine to get this working but installing it on fedora and trying to play a asf stream with it is simply not working. Perhaps i missed somehing obvious. Just not working here.</p>
<p><strong>The VLC way (<span style="color: #ff6600;">failure</span>)<br />
</strong>VLC is starting the same as Totem. It shows some video. After exactly 10 seconds it keeps playing (or that&#8217;s what the time counter says) it does not play any sound or video. Kinda sad.. I would&#8217;ve expected VLC to just work. I didn&#8217;t investigate this problem further but i&#8217;m sure it can be fixed.</p>
<p><strong>The mplayer way (<span style="color: #339966;">working</span>)<br />
</strong>Finally a player that works. Or not really. At first it didn&#8217;t work at all. it throw 5 lines on the console about a million times and i couldn&#8217;t figure out why it was happening. After i asked for some help on the #mplayer channel (on irc in freenode.net) it turned out that the stream i was trying to play demands a player that sends a &#8220;valid&#8221; user-agent string. It got fixed (in my case) by adding this line to the mplayer config file:</p>
<p>echo user-agent=WMPlayer/10.0.0.4058 &gt;&gt; ~/.mplayer/config</p>
<p>The only bad thing is that it took me about 2 hours to find that out. Mplayer wasn&#8217;t exactly throwing any errors that indicated anything of a missing or wrong user agent.</p>
<p>So that&#8217;s how i got a asf stream working under linux. It took me a few hours but it&#8217;s working just fine now under mplayer.</p>
<p>I hope this helped anyone with a simulair issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2008/11/27/playing-asf-streams-under-linux-fedora-10-with-mplayer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The future about the linux package containers and managers</title>
		<link>http://blog.mageprojects.com/2008/04/15/the-future-about-the-linux-package-containers-and-managers/</link>
		<comments>http://blog.mageprojects.com/2008/04/15/the-future-about-the-linux-package-containers-and-managers/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 22:37:41 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=6</guid>
		<description><![CDATA[This is the current way of package management with distributions: - RPM - DEB - ebuild and then some parts of deb&#8217;s or rpm&#8217;s are even sub devided in other distributions: RPM - PClinuxOS - Mandriva - Fedora - And a ton others DEB - Ubuntu - Sabyaon (Sorry, not a deb using system. Thanx, [...]]]></description>
			<content:encoded><![CDATA[<p>This is the current way of package management with distributions:<br />
- RPM<br />
- DEB<br />
- ebuild</p>
<p>and then some parts of deb&#8217;s or rpm&#8217;s are even sub devided in other distributions:<br />
RPM<br />
- PClinuxOS<br />
- Mandriva<br />
- Fedora<br />
- And a ton others</p>
<p>DEB<br />
- Ubuntu<br />
- Sabyaon (Sorry, not a deb using system. Thanx, Patrick)<br />
- Debian<br />
- Again a ton others</p>
<p>This on it&#8217;s own isn&#8217;t a problem. The problem is that nearly each distribution is so much different that<br />
the same package type (rpm) form fedora won&#8217;t work on mandriva or the opposite. And it&#8217;s the same case with the deb<br />
based distributions. What you can conclude from that is that there is a huge ammount of people making packages<br />
for distributions but that work das to be done a dozen times to get it working on atleast all the big<br />
distributions (try to install the KDE4 packages from fedora on Ubuntu) which is just so extremely time<br />
consuming and not effectively done at all! So that all has to change and that idea is comming now.</p>
<p>In order to change this all there needs to be one single big package database that works on all the<br />
linux distributions. One compiling cluster and one management system for them. Now imagine that there<br />
would be one place to do all that! that would solve the issue of not having a generic package type.</p>
<p>Now lets dig in this a little deeper. Imagine that you only would have to supply the following information<br />
when submitting a new package for a certain distribution:<br />
- Where files need to be saved<br />
- What patched need to be applied<br />
- Does there need to be an icon anywhere (desktop/menu)<br />
- And some generic package information</p>
<p>Then let the cluster compile it and search for files it provides/requires and which ones need to go in the %files<br />
directive (in rpm atleast) then you don&#8217;t have to worry about it anymore and making new packages would go a lot<br />
faster if the compile cluster could determine those things. For that it also needs to be ble to determine the code<br />
it&#8217;s written in, what includes are being used and a ton of other things to check but that&#8217;s all possible. Extremely<br />
hard but possible to make and would probably require years before it&#8217;s complete. Now the best thing would be that<br />
if a package has been added to the database that any other participating distribution in that database can also use<br />
that same package without making any modifications. Oke.. it (should have) the ability to include it&#8217;s own patches<br />
or things like that.. Example: If you would make a K3B package for a EU based distribution you can just include the<br />
mp3 support (and some other things) but if you make it for an USA based dist those things will likely need to be<br />
turned off because of possible patent lawsuits. But in general the idea is that you have one place for all of it<br />
and any dist can use it once it has been made once!</p>
<p>Now for this to happen a few other things need to happen first.<br />
- All distribution (that participate) need to agree on the locations where they place files (libraries, images etc.)<br />
- They all need to make deals on the standards they want and don&#8217;t want to use<br />
- NO bypasses to fix something that another dist doesn&#8217;t have yet.. if it means it could break packages<br />
- And i&#8217;m sure there is a LOT more</p>
<p>This will also have a few downsides for dists that participate.. they will all have to make the same changes in order<br />
to stay compatible with each other so that all those packages can still be used on all dists but i&#8217;m sure that<br />
it&#8217;s something that the dist people can work out. There will also be dists that will likely refuse to join because<br />
they simply disagree with some of the choises or whatever reason.. but i expect that to be just a handfull of<br />
dists (mostly the paid ones i guess).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2008/04/15/the-future-about-the-linux-package-containers-and-managers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Disabling Gnome 2.22 auto brightness adjusting</title>
		<link>http://blog.mageprojects.com/2008/04/08/disabling-gnome-222-auto-brightness-adjusting/</link>
		<comments>http://blog.mageprojects.com/2008/04/08/disabling-gnome-222-auto-brightness-adjusting/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 20:06:01 +0000</pubDate>
		<dc:creator>markg85</dc:creator>
				<category><![CDATA[Howto related]]></category>
		<category><![CDATA[Linux - Gnome based]]></category>
		<category><![CDATA[Linux in general]]></category>

		<guid isPermaLink="false">http://blog.mageprojects.com/?p=4</guid>
		<description><![CDATA[Hey, Gnome 2.22 introduced quite a few new features and not all of them are working nicely. The automatic adjusting of the brightness in Gnome 2.22 is a good example of a horrible feature. The idea is good but it simply isn&#8217;t working out, at least on my notebook, so therefore it&#8217;s best to just [...]]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>Gnome 2.22 introduced quite a few new features and not all of them are working nicely.<br />
The automatic adjusting of the brightness in Gnome 2.22 is a good example of a horrible feature. The idea is good but it simply isn&#8217;t working out, at least on my notebook, so therefore it&#8217;s best to just turn it off.</p>
<p>In the &#8220;Power Management Settings&#8221; is a option to turn it off, or that&#8217;s what you would think judging the name. The setting is: &#8220;Dim display when idle&#8221;. Turning that off won&#8217;t help a bit. might be a bug, might be intentional, but it&#8217;s not working.</p>
<p>The real trick to turn this setting off is in the gconf settings. In your distribution install the package: &#8220;gconf-editor&#8221; (in fedora it&#8217;s with &#8220;yum -y install gconf-editor&#8221;).</p>
<p>Now press ALT+F2 and type: gconf-editor. The editor will popup. Now go to this location: <strong>/apps/gnome-power-manager/backlight/enable</strong> and you should see something like this:<br />
<a href="http://blog.mageprojects.com/wp-content/uploads/2008/04/screenshot-configuration-editor-backlight.png"><img class="alignnone size-thumbnail wp-image-5" title="screenshot-configuration-editor-backlight" src="http://blog.mageprojects.com/wp-content/uploads/2008/04/screenshot-configuration-editor-backlight-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Uncheck the &#8220;<strong>enable</strong>&#8221; and your done. No more irritating backlight changes.</p>
<p>Hope that helped for you,<br />
Mark.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mageprojects.com/2008/04/08/disabling-gnome-222-auto-brightness-adjusting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
