<?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>Tombuntu &#187; tips</title>
	<atom:link href="http://tombuntu.com/index.php/topics/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://tombuntu.com</link>
	<description>News, Tips, and How-Tos for Ubuntu Linux</description>
	<lastBuildDate>Tue, 06 Dec 2011 03:14:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Watch YouTube Videos Using VLC</title>
		<link>http://tombuntu.com/index.php/2011/11/20/watch-youtube-videos-using-vlc/</link>
		<comments>http://tombuntu.com/index.php/2011/11/20/watch-youtube-videos-using-vlc/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 01:54:47 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=2093</guid>
		<description><![CDATA[My Eee PC 901 is more than powerful enough to play back 480p video, but not when it&#8217;s playing though Adobe Flash Player. 408p YouTube videos drop frames and don&#8217;t play back at full framerate. YouTube has an experimental HTML5 video player that should offer better better performance than Flash. I enabled it, but it [...]]]></description>
			<content:encoded><![CDATA[<p>My Eee PC 901 is more than powerful enough to play back 480p video, but not when it&#8217;s playing though Adobe Flash Player. 408p YouTube videos drop frames and don&#8217;t play back at full framerate. YouTube has an <a href="http://www.youtube.com/html5">experimental HTML5 video player</a> that should offer better better performance than Flash. I enabled it, but it seems that very few videos support it because advertising will cause a fallback to Flash.</p>
<p><a href="http://www.videolan.org/vlc/">VLC media player</a> supports network streaming from a YouTube. Select <em>Media->Open Network Stream</em>, paste a YouTube URL, and click <em>Play</em>. This seems to work for any YouTube video, and plays back noticeably smoother than Flash on my netbook.</p>
<p><img src="http://tombuntu.com/wp-content/uploads/2011/11/vlc_youtube.jpg" alt="YouTube video in VLC" /></p>
<p>VLC isn&#8217;t a perfect solution. First, there&#8217;s the inconvenience of copying and pasting a URL for each video. Second, there doesn&#8217;t seem to be a way to change the resolution (but it defaults to 480p, which happens to be what I want). Third, VLC doesn&#8217;t seem to handle buffering as well as Flash does. While YouTube can play continuously, VLC sometimes has to stop and buffer more video. Selecting <em>Show more options</em> and increasing the cache size to something like 20000 ms seems to help a bit.</p>
<p>I&#8217;ve been using Ubuntu 11.10&#8242;s VLC for this. While Ubuntu 11.04&#8242;s VLC seems to support YouTube, I&#8217;ve only been getting <em>VLC can&#8217;t recognize the input&#8217;s format</em> errors with this version.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/11/20/watch-youtube-videos-using-vlc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Persistent Touchpad Configuration in Ubuntu 11.10</title>
		<link>http://tombuntu.com/index.php/2011/11/06/persistent-touchpad-configuration-in-ubuntu-11-10/</link>
		<comments>http://tombuntu.com/index.php/2011/11/06/persistent-touchpad-configuration-in-ubuntu-11-10/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 03:44:46 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=2055</guid>
		<description><![CDATA[Recently I&#8217;ve fixed the tap-and-drag gesture, and swapped the right and middle click gestures on my netbook&#8217;s touchpad. I applied the configuration changes for these by adding the synclient configuration commands to Startup Applications. It didn&#8217;t take long before I noticed that some changes would revert after I suspended and woke the system. Even adding [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve <a href="http://tombuntu.com/index.php/2011/10/31/fix-for-touchpad-trouble-in-ubuntu-11-10/">fixed the tap-and-drag gesture</a>, and <a href="http://tombuntu.com/index.php/2011/11/04/how-to-swap-two-and-three-finger-tap-gestures/">swapped the right and middle click gestures</a> on my netbook&#8217;s touchpad. I applied the configuration changes for these by adding the <em>synclient</em> configuration commands to <em>Startup Applications</em>. It didn&#8217;t take long before I noticed that some changes would revert after I suspended and woke the system. Even adding the changes to my Xorg configuration didn&#8217;t make them stick. What&#8217;s the deal?</p>
<p>It turns out that <a href="https://bugzilla.gnome.org/show_bug.cgi?id=598820">GNOME 3 will overwrite some touchpad options</a> with it&#8217;s own hardcoded defaults. Whenever GNOME re-detects your touchpad, even after a suspend, it will wipe out your options with its own that cannot be changed.</p>
<p>Fortunately <a href="https://bugzilla.gnome.org/show_bug.cgi?id=635486">GNOME provides a hook</a> so that after your changes are erased, you can set them again. Using a <em>dconf</em> value, you choose to run your own script.</p>
<p>Here&#8217;s how to make your custom touchpad configuration persistent through reboots and even suspends. Start by creating a file to hold your script. Run this command to create a <em>touchpad_settings.sh</em> file in your home directory and open it:<br />
<code>gedit ~/touchpad_settings.sh</code></p>
<p>Add your <em>synclient</em> commands to this file and save it. Mine looks like this:<br />
<code>synclient SingleTapTimeout=360 FastTaps=1<br />
synclient TapButton2=2 TapButton3=3</code></p>
<p>Make the file executable:<br />
<code>chmod +x ~/touchpad_settings.sh</code></p>
<p>Finally, set the <em>dconf</em> setting so GNOME knows where to find your script. Run the following command, but replace <em>tom</em> with your own username:<br />
<code>gsettings set org.gnome.settings-daemon.peripherals.input-devices hotplug-command "/home/tom/touchpad_settings.sh"</code></p>
<p>You don&#8217;t need to set your touchpad options any other way now. GNOME should run your script whenever you log in or wake the system from suspend.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/11/06/persistent-touchpad-configuration-in-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How-to Swap Two and Three Finger Tap Gestures</title>
		<link>http://tombuntu.com/index.php/2011/11/04/how-to-swap-two-and-three-finger-tap-gestures/</link>
		<comments>http://tombuntu.com/index.php/2011/11/04/how-to-swap-two-and-three-finger-tap-gestures/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 03:24:59 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=2048</guid>
		<description><![CDATA[I&#8217;m sure many heavy users of tabbed browsing use the middle mouse button much more than the right. Some number of Ubuntu releases ago, the two and three finger touchpad tap gestures were swapped to the current configuration, using two fingers for right click and three for middle. I&#8217;d rather have the middle button bound [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure many heavy users of tabbed browsing use the middle mouse button much more than the right. Some number of Ubuntu releases ago, the two and three finger touchpad tap gestures were swapped to the current configuration, using two fingers for right click and three for middle. I&#8217;d rather have the middle button bound to the easier two-finger gesture. After my success <a href="http://tombuntu.com/index.php/2011/10/31/fix-for-touchpad-trouble-in-ubuntu-11-10/">fixing my other touchpad issues</a>, I figured it was time to figure out how to change this too.</p>
<p>Run this command to make two-finger tap the middle click, and three-finger tap the right click:<br />
<code>synclient TapButton2=2 &#038;&#038; synclient TapButton3=3</code></p>
<p>Changes made by <em>synclient</em> are not persistent across reboots. You can add the command to <em>Startup Applications</em> to run it automatically when you log in.</p>
<p>[<strong>Update</strong>: Waking the system from suspend overwrites these options. See my post on how to <a href="http://tombuntu.com/index.php/2011/11/06/persistent-touchpad-configuration-in-ubuntu-11-10/">make touchpad configuration persistent</a> for a fix. ]</p>
<p>Before trying to fix this, I wasn&#8217;t even aware of the three-finger tap gesture. It turns out that on my Eee PC 901 <a href="https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/873482">this gesture is broken</a> in Ubuntu. Fortunately there are physical right/left mouse buttons, so I can still swap the two and three finger touchpad gestures without losing right click entirely.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/11/04/how-to-swap-two-and-three-finger-tap-gestures/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fix for Touchpad Trouble in Ubuntu 11.10</title>
		<link>http://tombuntu.com/index.php/2011/10/31/fix-for-touchpad-trouble-in-ubuntu-11-10/</link>
		<comments>http://tombuntu.com/index.php/2011/10/31/fix-for-touchpad-trouble-in-ubuntu-11-10/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 03:53:54 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=2042</guid>
		<description><![CDATA[One of the issues introduced by Ubuntu 11.10 on my Eee PC 901 is touchpad dragging. The tap-and-drag gesture, for moving the cursor with the mouse button depressed, is too sensitive. I have to tap as fast I can to activate the gesture every time. Today I pursued the bug report for this issue to [...]]]></description>
			<content:encoded><![CDATA[<p>One of the issues introduced by <a href="http://tombuntu.com/index.php/2011/10/15/installing-ubuntu-11-10-on-the-eee-pc-901/">Ubuntu 11.10 on my Eee PC 901</a> is touchpad dragging. The tap-and-drag gesture, for moving the cursor with the mouse button depressed, is too sensitive. I have to tap as fast I can to activate the gesture every time.</p>
<p>Today I pursued <a href="https://bugs.launchpad.net/ubuntu/+source/unity/+bug/859474">the bug report for this issue</a> to find a fix. It didn&#8217;t take long to find a workaround using <em>synclient</em>, which is a utility for manipulating options for <a href="http://www.synaptics.com/">Synaptics</a> touchpads. Run this command to get the timeout before a tap is interpreted as a single tap:<br />
<code>synclient | grep "SingleTapTimeout"</code></p>
<p>On my system this option was set to 180, which is too fast. Run this command to double the timeout to 360:<br />
<code>synclient SingleTapTimeout=360</code></p>
<p>At this point, tap-and-drag should be much easier like in Ubuntu 11.04. But for me, it highlighted a second problem: there was a slight delay before any regular tap would register on the screen. This was very visible in the file browser, where there was a visible delay between tapping a file and that file becoming selected.</p>
<p>Enabling the &#8220;FastTaps&#8221; option fixes the delay issue:<br />
<code>synclient FastTaps=1</code></p>
<p>Now on top of touchpad dragging being fixed, the whole system feels more responsive! I hope that I haven&#8217;t been using Ubuntu on this netbook with FastTaps disabled all these years. All of the <em>synclient</em> options are documented <a href="http://manpages.ubuntu.com/manpages/oneiric/en/man4/synaptics.4.html">in the synaptics manpage</a>.</p>
<p>Changes made by <em>synclient</em> are not persistent across reboots. The proper way to set these options would be using Xorg configuration files. For now, I&#8217;ve just added the two <em>synclient</em> commands to <em>Startup Applications</em> to run automatically when I log in.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/10/31/fix-for-touchpad-trouble-in-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Disable Lock Screen After Suspend in Ubuntu 11.10</title>
		<link>http://tombuntu.com/index.php/2011/10/28/disable-lock-screen-after-suspend-in-ubuntu-11-10/</link>
		<comments>http://tombuntu.com/index.php/2011/10/28/disable-lock-screen-after-suspend-in-ubuntu-11-10/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 02:05:15 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=2032</guid>
		<description><![CDATA[When waking from suspension or hibernation, Ubuntu prompts the current user to unlock the screen by entering their password. You might want to disable this prompt if you want your laptop to be ready to use faster, and don&#8217;t need the extra security. In previous versions of Ubuntu, the lock screen after waking could be [...]]]></description>
			<content:encoded><![CDATA[<p>When waking from suspension or hibernation, Ubuntu prompts the current user to unlock the screen by entering their password. You might want to disable this prompt if you want your laptop to be ready to use faster, and don&#8217;t need the extra security.</p>
<p><img src="http://tombuntu.com/wp-content/uploads/2011/10/ubuntu1110_lockscreen.jpg" alt="Ubuntu 11.10 lock screen" /></p>
<p>In previous versions of Ubuntu, the lock screen after waking could be disabled in the screen saver settings. In Ubuntu 11.10, the new version of GNOME has changed how this works. GNOME no longer provides any configuration option for this behavior <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/871560">[bug report]</a>. The best workaround seems to be to disable the lock screen entirely, which will not only disable the lock screen after suspend, but also disable the lock screen entirely.</p>
<p>Open a terminal and run this command to disable the lock screen:<br />
<code>gsettings set org.gnome.desktop.lockdown disable-lock-screen 'true'</code></p>
<p>Running the command again with <em>true</em> changed to <em>false</em> will reverse the change:<br />
<code>gsettings set org.gnome.desktop.lockdown disable-lock-screen 'false'</code></p>
<p>Hopefully either Ubuntu or GNOME will bring back an option  for this in a future version.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/10/28/disable-lock-screen-after-suspend-in-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Selectively Disable Overlay Scrollbars</title>
		<link>http://tombuntu.com/index.php/2011/09/30/selectively-disable-overlay-scrollbars/</link>
		<comments>http://tombuntu.com/index.php/2011/09/30/selectively-disable-overlay-scrollbars/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 01:32:51 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=1967</guid>
		<description><![CDATA[Ubuntu 11.04 introduced overlay scrollbars with a minimal look and scrolling controls that only appear when the mouse is nearby. Some applications, particularly those not from the Ubuntu repositories, may be incompatible. I ran into problems with some of the Android SDK&#8216;s Java-based GUI applications like DDMS. The overlay scrollbars appeared but refused to allow [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 11.04 introduced <a href="http://www.markshuttleworth.com/archives/615">overlay scrollbars</a> with a minimal look and scrolling controls that only appear when the mouse is nearby. Some applications, particularly those not from the Ubuntu repositories, may be incompatible. I ran into problems with some of the <a href="http://developer.android.com/sdk/index.html">Android SDK</a>&#8216;s Java-based GUI applications like DDMS. The overlay scrollbars appeared but refused to allow me to scroll.</p>
<p><img src="http://tombuntu.com/wp-content/uploads/2011/09/overlay_scrollbar_1110.jpg" alt="overlay scrollbar in Ubuntu 11.10" /></p>
<p>Any application can be started without overlay scrollbars by changing the <em>LIBOVERLAY_SCROLLBAR</em> environment variable to 0. When starting an application from the terminal, prepend the command with <em>LIBOVERLAY_SCROLLBAR=0</em>. This example will start gedit with classic scrollbars:<br />
<code>LIBOVERLAY_SCROLLBAR=0 gedit</code></p>
<p>I haven&#8217;t had any problems with the global menu bar in Unity, but you can disable that for an application in a similar fashion using <em>UBUNTU_MENUPROXY=0</em>.</p>
<p>There doesn&#8217;t seem to be any sort of global application blacklist available, but if you want to always start a problematic application this way there are a few options. You can modify the application&#8217;s menu entry, add a alias for the application&#8217;s name, or just launch the application using a script.</p>
<p>Alternatively, overlay scrollbars <a href="http://askubuntu.com/questions/34214/how-do-i-disable-overlay-scrollbars">can be disabled entirely</a> for your user. </p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/09/30/selectively-disable-overlay-scrollbars/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How-to Change Boot Order in Ubuntu 11.04</title>
		<link>http://tombuntu.com/index.php/2011/09/25/how-to-change-boot-order-in-ubuntu-11-04/</link>
		<comments>http://tombuntu.com/index.php/2011/09/25/how-to-change-boot-order-in-ubuntu-11-04/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 03:08:44 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=1953</guid>
		<description><![CDATA[If you&#8217;re dual booting Ubuntu with other Linux distributions or Windows, you may wish to change the which operating system starts by default. Ubuntu uses the GRUB boot loader to display a menu of installed operating systems and boot them. If you don&#8217;t see the menu before Ubuntu starts, hold down the shift key while [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re dual booting Ubuntu with other Linux distributions or Windows, you may wish to change the which operating system starts by default. Ubuntu uses the GRUB boot loader to display a menu of installed operating systems and boot them. If you don&#8217;t see the menu before Ubuntu starts, hold down the shift key while your system starts up.</p>
<p>This guide is intended for Ubuntu 11.04 and 11.10, which both use GRUB version 1.99. If you&#8217;ve upgraded from an older Ubuntu installation, you may still have an older version of GRUB. Search in Ubuntu Software Center for <em>grub-pc</em> and check the version if you&#8217;re not sure.</p>
<p>There&#8217;s a graphical configuration tool for GRUB called <a href="https://launchpad.net/startup-manager">StartUp-Manager</a>. Unfortunately, judging by its reviews in Ubuntu Software Center the application has not been updated for the latest version of GRUB and has some problems. But if you&#8217;re comfortable with editing a configuration file and running some terminal commands it&#8217;s not difficult to change the default operating system manually. </p>
<p><img src="http://tombuntu.com/wp-content/uploads/2011/09/grub2_menu.jpg" alt="a GRUB menu with Ubuntu and Windows" /></p>
<p>GRUB can be configured using the <em>/etc/default/grub</em> file. Before you make any changes to it, it may be a good idea to back it up by creating a copy:<br />
<code>sudo cp /etc/default/grub /etc/default/grub.bak</code></p>
<p>You can restore the copying the backup over the original:<br />
<code>sudo cp /etc/default/grub.bak /etc/default/grub</code></p>
<p>Open the file using the text editor with root privileges:<br />
<code>gksu gedit /etc/default/grub</code></p>
<p>The line <em>GRUB_DEFAULT=0</em> means that GRUB will select the first menu item to boot. Change this to <em>GRUB_DEFAULT=saved</em> . This change will make it easier to change the default item later.</p>
<p>Save and close the file. Run this command to apply your changes to GRUB&#8217;s configuration:<br />
<code>sudo update-grub</code></p>
<p>The configuration change we made allows the <em>grub-set-default</em> and <em>grub-reboot</em> commands to be used at any time. These allow you to change the default boot item permanently or only for the next boot, respectively. </p>
<p>Run <em>grub-set-default</em> or <em>grub-reboot</em> (with sudo) with the number of the menu item to boot (the first item is 0). This command will change the default to the second item:<br />
<code>sudo grub-set-default 1</code></p>
<p>In the screenshot above, Windows Vista is menu item 5. If you want to select an item from a submenu like <em>Previous Linux Versions</em>, you can specify the position in the main menu, followed by a greater-than sign (>), followed by the position in the submenu. You can also name an entry instead of giving its position. There&#8217;s <a href="http://ubuntuforums.org/showthread.php?p=10720316">a great Ubuntu Forums post</a> about how this works. The Ubuntu Wiki also has <a href="https://help.ubuntu.com/community/Grub2#Configuring_GRUB_2">more details on configuring GRUB</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/09/25/how-to-change-boot-order-in-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Enable DVD Playback in Ubuntu 10.04+</title>
		<link>http://tombuntu.com/index.php/2011/09/12/enable-dvd-playback-in-ubuntu-10-04/</link>
		<comments>http://tombuntu.com/index.php/2011/09/12/enable-dvd-playback-in-ubuntu-10-04/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 03:32:15 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=1812</guid>
		<description><![CDATA[Ubuntu can&#8217;t include software to decrypt commercial DVD movies, even in the software repositories. If you don&#8217;t have the necessary software, Movie Player will give you the error: An error occurred: Could not read from resource. If you reinstall Ubuntu for every new release like I do, this is problem you may repeatedly come across. [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu can&#8217;t include software to decrypt commercial DVD movies, even in the software repositories. If you don&#8217;t have the necessary software, Movie Player will give you the error: <em>An error occurred: Could not read from resource</em>. If you reinstall Ubuntu for every new release like I do, this is problem you may repeatedly come across. My previous instructions have gotten slightly out of date now, so here&#8217;s how to enable commercial DVD playback in Ubuntu 10.04 or later.</p>
<ol>
<li>Make sure the package <em>libdvdread4</em> is installed. If you&#8217;ve installed the very useful Ubuntu Restricted Extras, you will already have it. Otherwise, install it using the Ubuntu Software Center or using the command below:<br />
<code>sudo apt-get install libdvdread4</code></li>
<li>Next you need to install the software for decryption of DVDs. Make sure you&#8217;ve closed any package management software like the Software Center. Open a terminal and run the command below (you will be prompted for your password):<br />
<code>gksu /usr/share/doc/libdvdread4/install-css.sh</code></li>
</ol>
<p>After completing the process you may have to eject the disk and re-insert it. Ubuntu&#8217;s movie player application should now be able to play DVDs, including DVD menus. If you have any trouble, VLC media player is another good player and is available in the Software Center.</p>
<p>See the Ubuntu documentation for <a href="https://help.ubuntu.com/community/RestrictedFormats/PlayingDVDs">more on DVD playback</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/09/12/enable-dvd-playback-in-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install the Classic Desktop in Ubuntu 11.10</title>
		<link>http://tombuntu.com/index.php/2011/09/11/install-the-classic-desktop-in-ubuntu-11-10/</link>
		<comments>http://tombuntu.com/index.php/2011/09/11/install-the-classic-desktop-in-ubuntu-11-10/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 04:37:37 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=1914</guid>
		<description><![CDATA[Ubuntu 11.10 will not include the classic GNOME desktop which is available alongside Unity in Ubuntu 11.04. Instead, Unity 2D will be installed to provide the Unity desktop even on systems without 3D graphics capabilities. Fortunately for fans of the old desktop, it will still be available to install from the repositories. Install the classic [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 11.10 will not include the classic GNOME desktop which is available alongside Unity in Ubuntu 11.04. Instead, Unity 2D will be installed to provide the Unity desktop even on systems without 3D graphics capabilities. Fortunately for fans of the old desktop, it will still be available to install from the repositories. </p>
<p>Install the classic GNOME desktop by installing the <em>gnome-panel</em> package.<br />
<code>sudo apt-get install gnome-panel</code></p>
<p>Before you log in, click the gear icon and select <em>GNOME Classic</em>. This will give you a traditional GNOME desktop with top and bottom panels and the Compiz window manager. If you don&#8217;t want Compiz&#8217;s desktop effects, select the <em>GNOME Classic (No effects)</em> option for the Metacity window manager instead.</p>
<p>If you have problems with the theme being messed up and <em>gnome-settings-daemon</em> crashing, make sure you have installed any available updates. I had this problem before upgrading my Ubuntu 11.10 Beta 1 installation.</p>
<p><img src="http://tombuntu.com/wp-content/uploads/2011/09/ubuntu_classic_1110.jpg" alt="Ubuntu classic desktop in 11.10" /></p>
<p>There are a few differences between this desktop and the one in previous versions of Ubuntu. It&#8217;s now based on GNOME 3, so some applications like the file browser have changed a bit. Ubuntu&#8217;s indicators have not been ported to the new GNOME 3 panels, so panel items like the volume meter are GNOME applets. This is the interface which GNOME 3 uses as a fallback from GNOME Shell.</p>
<p>Thanks to <a href="http://jeremy.bicha.net/2011/09/11/getting-started-with-gnome-in-oneiric/">Jeremy Bicha for posting about this</a> on Planet Ubuntu and bringing it to my attention.</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/09/11/install-the-classic-desktop-in-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>141</slash:comments>
		</item>
		<item>
		<title>How-to Run Unity in VirtualBox</title>
		<link>http://tombuntu.com/index.php/2011/04/30/how-to-run-unity-in-virtualbox/</link>
		<comments>http://tombuntu.com/index.php/2011/04/30/how-to-run-unity-in-virtualbox/#comments</comments>
		<pubDate>Sun, 01 May 2011 02:52:39 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tombuntu.com/?p=1899</guid>
		<description><![CDATA[Ubuntu&#8217;s Unity desktop environment requires 3D acceleration to run. If you don&#8217;t have a compatible graphics card or don&#8217;t have the drivers installed, Unity will fall back to the classic interface. Fortunately the free VirtualBox virtual machine software is capable of providing the necessary 3D acceleration to a virtual Ubuntu desktop, provided of course that [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu&#8217;s Unity desktop environment requires 3D acceleration to run. If you don&#8217;t have a compatible graphics card or don&#8217;t have the drivers installed, Unity will fall back to the classic interface. Fortunately the free VirtualBox virtual machine software is capable of providing the necessary 3D acceleration to a virtual Ubuntu desktop, provided of course that the host system has it.</p>
<ol>
<li>You&#8217;ll need the latest version of VirtualBox. Unless you&#8217;re already using Ubuntu 11.04, the version in the repositories is too old. You can download the latest version for a variety of platforms from <a href="http://www.virtualbox.org/">the VirtualBox website</a>.</li>
<li>Install Ubuntu in VirtualBox normally. Unity will fall back to the classic desktop.</li>
<li>In the settings for your virtual machine, under <em>Display->Video</em> select <em>Enable 3D Acceleration</em> and bump the video memory up to 32 MB.</li>
<li>Inside the virtual machine, install the package <em>virtualbox-ose-guest-x11</em> using Synaptic or the terminal:<br />
<code>sudo apt-get install virtualbox-ose-guest-x11</code></li>
<li>Reboot the virtual machine and you should be able to log into Unity.</li>
</ol>
<p>Unity runs completely smooth in my virtual machine and I haven&#8217;t noticed any graphical glitches.</p>
<p>If the panel and applications appear gray and unthemed, <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/728803">gnome-settings-daemon is crashing</a>. You can work around this bug by restarting it:<br />
<code>killall gnome-settings-daemon<br />
gnome-settings-daemon &#038;</code></p>
<p><strong>Update:</strong> Ubuntu 11.10 will detect that it&#8217;s running in VirtualBox and offer to install the guest additions driver automatically. You don&#8217;t even need to reboot the virtual machine after installing it; just return to the login screen and make sure the Unity environment is selected before you log in again. Impressive!</p>
]]></content:encoded>
			<wfw:commentRss>http://tombuntu.com/index.php/2011/04/30/how-to-run-unity-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)

Served from: tombuntu.com @ 2012-02-07 04:25:15 -->
