<?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>Matt Van Stone &#187; Ubuntu</title>
	<atom:link href="http://www.mattvanstone.com/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattvanstone.com</link>
	<description>&#34;Slogans are for suckers.&#34;</description>
	<lastBuildDate>Wed, 10 Mar 2010 02:16:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automatically Mounting Windows SMB Shares in Ubuntu v3</title>
		<link>http://www.mattvanstone.com/2007/11/automatically-mounting-windows-smb-shares-in-ubuntu-v3/</link>
		<comments>http://www.mattvanstone.com/2007/11/automatically-mounting-windows-smb-shares-in-ubuntu-v3/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 17:27:07 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattvanstone.com/2007/11/automatically-mounting-windows-smb-shares-in-ubuntu-v3/</guid>
		<description><![CDATA[This post is an update to two posts I wrote previously on how to make your network shares mount automatically when you start up your Ubuntu Linux computer. In this method we modify the fstab file so that when all the file systems are mounted the network shares are mounted as well.
This method works for [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.mattvanstone.com/wp-content/uploads/2007/11/mountsmb.png' alt='Mounting SMB Shares' class="alignleft" />This post is an update to two posts I wrote previously on how to make your network shares mount automatically when you start up your Ubuntu Linux computer. In this method we modify the fstab file so that when all the file systems are mounted the network shares are mounted as well.</p>
<p>This method works for me in Ubuntu Gusty Gibbon 7.10 and is probably the most secure. I have only tested this on a wired connection, so I don&#8217;t know exactly what will happen if you use this method when using a wireless connection.</p>
<p>First you have to install smbfs:</p>
<pre>sudo apt-get install smbfs</pre>
<p>Then create a folder inside of the /media directory to mount the share on:</p>
<pre>sudo mkdir /media/Storage</pre>
<p>You can call it whatever you want, I call it Storage. If you change the name remember to change it below when we edit the fstab file.</p>
<p>Create a credentials file in /root so that you can save your password and have it protected by the root account:</p>
<pre>sudo gedit /root/.cifscredentials</pre>
<p>Add the following information to the file, but change Guest to your SMB username and add your SMB password.</p>
<pre>username=Guest
password=
</pre>
<p>Note: If your fileserver allows Guest access you can just leave the file as above. If it is password protected you have to put in your username and password.</p>
<p>Save and close the .cifscredentials file.</p>
<p>Now open up your fstab file so that you can add mounting instructions:</p>
<pre>sudo gedit /etc/fstab</pre>
<p>Add the following line to the bottom of the file:</p>
<pre>//192.168.0.10/SHARENAME /media/Storage cifs auto,iocharset=utf8,uid=USER,gid=users,credentials=/root/.cifscredentials,file_mode=0775,dir_mode=0775 0 0</pre>
<p>You have to change the following information:<br />
Change 192.168.0.10 to the IP address or DNS name of your server<br />
Change SHARENAME to the share you want to mount<br />
Change USER to your Ubuntu username</p>
<p>The file_mode=0775,dir_mode=0775 part sets the mounted directory as read/write for all users so long as the SMB username you set in .cifscredentials has read/write access.</p>
<p>Now save the file and run the following command to test to see if you mount now works:</p>
<pre>sudo mount -a</pre>
<p>If that worked you should see a new drive icon on your desktop that lets you access your share. Now try rebooting and see if your shares mount automatically. If everything went as planned you will have a nice little drive mounted on your desktop every time you start up.</p>
<h2>SMB Shares with Spaces in the Names</h2>
<p>If you have a share with a space in the path you can replace the space with <strong>\040</strong>. For example: </p>
<pre>//192.168.0.10/Storage<strong>\040</strong>130 /media/Storage<strong>\040</strong>130 cifs auto,iocharset=utf8,uid=matt,gid=users,credentials=/root/.cifscredentials,file_mode=0775,dir_mode=0775 0 0</pre>
<p>This mounts my 130GB drive on my fileserver to a local directory called <strong>Storage 130</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/11/automatically-mounting-windows-smb-shares-in-ubuntu-v3/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Amazed with Ubuntu Gusty GIbbon 7.10</title>
		<link>http://www.mattvanstone.com/2007/11/amazed-with-ubuntu-gusty-gibbon-710/</link>
		<comments>http://www.mattvanstone.com/2007/11/amazed-with-ubuntu-gusty-gibbon-710/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 16:32:18 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattvanstone.com/2007/11/amazed-with-ubuntu-gusty-gibbon-710/</guid>
		<description><![CDATA[I just wanted to say how impressed I am with the latest release of Ubuntu. 7.10, or Gusty, whichever you want to call it has really been an update about making it easier for mainstream (windows?) computer users to get started on linux. Here is a list of some of the improvements I have noticed [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to say how impressed I am with the latest release of Ubuntu. 7.10, or Gusty, whichever you want to call it has really been an update about making it easier for mainstream (windows?) computer users to get started on linux. Here is a list of some of the improvements I have noticed in my daily use:</p>
<ul>
<li><strong>The Screens and Graphics utility: </strong>If Xorg can not start because of a misconfigured display adapter instead of failing to an error report like in previous versions, this GUI utility is automatically launched so you can select appropriate settings. It&#8217;s not foolproof, but it is leaps and bounds ahead of what you used to get.</li>
<li><strong>Automatic installation of plugins:</strong> I went to a website with flash, Firefox told me it wasn&#8217;t installed and asked me if I wanted to install the plugin. Just like on Windows and OS X it worked flawlessly. I tried to open a video file in Totem and there was not codec installed for it. Totem prompted me to install the gstreamer packages, installed them, and then continued to play the video &#8211; better than windows. I opened Amarok and tried to play an MP3 file. It notified me that MP3 support was not installed and asked if I would like to install it. I went to the Apple Trailers website and they all worked. This is probably a result of me opening that video file in Totem earlier. All this was done without me having to pull up a terminal window once.</li>
<li><strong>Compiz Fusion:</strong> It has all the eye candy of Compiz Fusion installed by default, you just have to enable it. If you want access to all the advanced effects just install the compizconfig-settings-manager package.
<li><strong>Speed:</strong> I dont know why, but it runs faster. Firefox launches faster and the whole system is more responsive. The boot process seems quicker as well.</li>
</ul>
<p>The next version of Ubuntu is going to be a Long Term Support version, which means over the next 6 months they are mainly going to be working on bug fixes and stability. I really think Ubuntu is going to take off in the next year. Soon enough all that will be holding them back will be that ugly yellow colour scheme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/11/amazed-with-ubuntu-gusty-gibbon-710/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backing Up Your Files on Ubuntu Linux</title>
		<link>http://www.mattvanstone.com/2007/11/backing-up-your-files-on-ubuntu-linux/</link>
		<comments>http://www.mattvanstone.com/2007/11/backing-up-your-files-on-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 15:51:03 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattvanstone.com/2007/11/backing-up-your-files-on-ubuntu-linux/</guid>
		<description><![CDATA[The reality of having a new Ubuntu release every 6 months means you either upgrade your distro and deal with the inevitable bugs or you wipe your system and install a fresh copy from scratch. Before you wipe your system you are going to want to back up any files you have on your drive. [...]]]></description>
			<content:encoded><![CDATA[<p>The reality of having a new Ubuntu release every 6 months means you either upgrade your distro and deal with the inevitable bugs or you wipe your system and install a fresh copy from scratch. Before you wipe your system you are going to want to back up any files you have on your drive. This can be done with a simple command.</p>
<p>First switch to root:</p>
<pre>sudo su</pre>
<p>Then run the tar command:</p>
<pre>tar cvpzf /backup.tgz /home</pre>
<p>Running the above command will create an archive file in the root folder of all of the files in your home directory including all the settings stored in the hidden folders. Be careful though, if you have a lot of large files in your home directory this archive is going to be quite large. I usually manually backup any ISOs or video files before creating the archive. Also remember to empty your trash or the files in there will be backed up too. I usually just use this command to back up any documents and pictures I have. The great thing is this will backup your Firefox bookmarks and everything.</p>
<p>Now, I also want to save a few configuration files in my backup so I don&#8217;t have to recreate them on the new system. I&#8217;m talking about my xorg.conf, fstab, and sources.list files. It is easy enough to add these files to the archive, just tack the path and filename onto the end of the command and they will be included.</p>
<pre>tar cvpzf /backup-oct-2007.tgz /home /etc/fstab /etc/X11/xorg.conf /etc/apt/sources.list</pre>
<p>Now just copy this backup file onto a thumb drive or file server and you are good to reformat your drive and install your fresh copy of the latest Ubuntu. Once installed I just open the archive and extract any files I want to keep then turf the archive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/11/backing-up-your-files-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing Issues With Usplash on a Widescreen Monitor</title>
		<link>http://www.mattvanstone.com/2007/11/fixing-issues-with-usplash-on-a-widescreen-monitor/</link>
		<comments>http://www.mattvanstone.com/2007/11/fixing-issues-with-usplash-on-a-widescreen-monitor/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 15:48:50 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattvanstone.com/2007/11/fixing-issues-with-usplash-on-a-widescreen-monitor/</guid>
		<description><![CDATA[The Ubuntu boot spash screen has never worked on my Dell 2405fpw widescreen monitor until now. The closest I ever got was to get the shutdown splash to work by editing the /etc/usplash.conf file. Well, I just installed 7.10 and after a little bit of digging today I finally figured out how to get my [...]]]></description>
			<content:encoded><![CDATA[<p>The Ubuntu boot spash screen has never worked on my Dell 2405fpw widescreen monitor until now. The closest I ever got was to get the shutdown splash to work by editing the /etc/usplash.conf file. Well, I just installed 7.10 and after a little bit of digging today I finally figured out how to get my boot splash to display properly. PS, my issue with the boot splash was that the picture was squashed and skewed across the middle of the screen.</p>
<p>This is a three step process. First figure out what display levels are supported by your frame buffer, then edit your grub configuration to use one of the 16 bit resolutions supported, then edit your usplash.conf file to use a similar resolution. I had used this method before with no luck, then I came across a bug report that said you have to run <em>sudo dpkg-reconfigure usplash</em> because when Usplash is started during boot your root folder has not been mounted yet (meaning /etc/usplash.conf can not be read). This worked like a charm.</p>
<p>First we install hwinfo so we can use it to find out what resolutions we support.</p>
<pre>sudo apt-get install hwinfo</pre>
<p>Then I ran hwinfo and redirected the output to a text file. This way we can try a few different resolutions and we only have to reference the file, not run the command every time.</p>
<pre>hwinfo --framebuffer > framebuffer.txt</pre>
<p>Here is what my framebuffer.txt file looks like:</p>
<pre>
02: None 00.0: 11001 VESA Framebuffer
  [Created at bios.447]
  Unique ID: rdCR.z77_s6lubfB
  Hardware Class: framebuffer
  Model: "NVIDIA G70 Board - p317h2  "
  Vendor: "NVIDIA Corporation"
  Device: "G70 Board - p317h2  "
  SubVendor: "NVIDIA"
  SubDevice:
  Revision: "Chip Rev"
  Memory Size: 256 MB
  Memory Range: 0xe0000000-0xefffffff (rw)
  Mode 0x0300: 640x400 (+640), 8 bits
  Mode 0x0301: 640x480 (+640), 8 bits
  Mode 0x0303: 800x600 (+800), 8 bits
  Mode 0x0305: 1024x768 (+1024), 8 bits
  Mode 0x0307: 1280x1024 (+1280), 8 bits
  Mode 0x030e: 320x200 (+640), 16 bits
  Mode 0x030f: 320x200 (+1280), 24 bits
  Mode 0x0311: 640x480 (+1280), 16 bits
  Mode 0x0312: 640x480 (+2560), 24 bits
  Mode 0x0314: 800x600 (+1600), 16 bits
  Mode 0x0315: 800x600 (+3200), 24 bits
  Mode 0x0317: 1024x768 (+2048), 16 bits
  Mode 0x0318: 1024x768 (+4096), 24 bits
  Mode 0x031a: 1280x1024 (+2560), 16 bits
  Mode 0x031b: 1280x1024 (+5120), 24 bits
  Mode 0x0330: 320x200 (+320), 8 bits
  Mode 0x0331: 320x400 (+320), 8 bits
  Mode 0x0332: 320x400 (+640), 16 bits
  Mode 0x0333: 320x400 (+1280), 24 bits
  Mode 0x0334: 320x240 (+320), 8 bits
  Mode 0x0335: 320x240 (+640), 16 bits
  Mode 0x0336: 320x240 (+1280), 24 bits
  Mode 0x033d: 640x400 (+1280), 16 bits
  Mode 0x033e: 640x400 (+2560), 24 bits
  Mode 0x0345: 1600x1200 (+1600), 8 bits
  Mode 0x0346: 1600x1200 (+3200), 16 bits
  Mode 0x0347: 1400x1050 (+1400), 8 bits
  Mode 0x0348: 1400x1050 (+2800), 16 bits
  Config Status: cfg=new, avail=yes, need=no, active=unknown
</pre>
<p>The information you are interested in is the Mode. If you want to set your boot resolution to 1024&#215;768 at 16 bits you want to use mode 0&#215;0317. As you can see my frame buffer doesnt support any widescreen resolutions. I picked the 1280&#215;1024@16bit, which was 0&#215;031a on my computer. I tried some of the higher resolutions as well as some of the lower ones. They all resulted in different issues from only displaying as black and white, to not displaying anything at all. both 1024 and 1280 seemed to work ok though, so I went with the higher one. Just pick one and go with it. I should note that these resolutions will not effect the resolution once Ubuntu is completely started up. They are unrelated.</p>
<p>Open up the grub menu configuration to edit the resolution:</p>
<pre>sudo gedit /boot/grub/menu.lst</pre>
<p>find the following line:</p>
<pre># defoptions=quiet splash vga=</pre>
<p>and modify it so that it has your mode after the vga=. Here is what mine looks like:</p>
<pre># defoptions=quiet splash vga=0x031a</pre>
<p>Do not uncomment the above line or it will not work. It has to be commented.</p>
<p>Save and close the file and then update grub:</p>
<pre>sudo update-grub</pre>
<p>Now you want to update usplash to use the same resolution that you set for boot. Open the Usplash configuration file:</p>
<pre>sudo gedit /etc/usplash.conf</pre>
<p>I changed mine to look like this:</p>
<pre>
# Usplash configuration file
xres=1280
yres=800</pre>
<p>Now you will notice I set my boot resolution to 1280&#215;1024 but my Usplash resolution is set to 1280&#215;800. This is because I have a widescreen monitor and when I set Usplash to 1280&#215;1024 the boot logo was stretched. I changed it to 800 to counteract the stretch. If you have a standard 4:3 monitor you should set them both to 1280&#215;1024. Otherwise, try what I did and see if it works for you.</p>
<p>This is the most important part. You have to update Usplash or the configuration change you just made will have no effect. So run the following command:</p>
<pre>sudo dpkg-reconfigure usplash</pre>
<p>Now reboot and cross your fingers. You might have a working boot splash. If you dont, try changing the mode in grub and the resolution in Usplash to something lower and reboot again. Trial and error is the only way you will find what works best on your system. Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/11/fixing-issues-with-usplash-on-a-widescreen-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installed Kubuntu 7.10 Last Night</title>
		<link>http://www.mattvanstone.com/2007/06/installed-kubuntu-710-last-night/</link>
		<comments>http://www.mattvanstone.com/2007/06/installed-kubuntu-710-last-night/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 02:57:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattvanstone.com/2007/06/installed-kubuntu-710-last-night/</guid>
		<description><![CDATA[Well, 2 nights ago I whacked my SUSE 10.2 install and tried installing OS x86 10.4.8. It looked like it was working, but stalled when trying to extract the files. I was able to format my SATA drive and everything. Since I do have an AMD CPU and an Nforce4 chipset it looks like there [...]]]></description>
			<content:encoded><![CDATA[<p>Well, 2 nights ago I whacked my SUSE 10.2 install and tried installing OS x86 10.4.8. It looked like it was working, but stalled when trying to extract the files. I was able to format my SATA drive and everything. Since I do have an AMD CPU and an Nforce4 chipset it looks like there might be some problems getting it to install on a SATA drive out of the box. I&#8217;m downloading a different ISO to give it a try, but in the meantime I had to get something up and running. So last night I installed Kubuntu 7.10. I have had it downloaded since it was released but I didn&#8217;t want to take the time to install it.</p>
<p>First off I had the same two problems I always have with Linux. I had to install the nvidia-glx drivers and I had to remove the bluez packages so that my keyboard and mouse would work without having to reconnect the dongle every time I start up. This only took me about 10 minutes to do as opposed to the first time when it took me hours of research to figure out. Oh yeah, and usplash still doesnt work. By adding a better resolution to /etc/usplash.conf I was able to get the shutdown splash to display, but the boot splash is all distorted.</p>
<p>I must say, I am happy with how responsive it is. It does seem a little quicker than SUSE was. However, there is a lot of software that SUSE came with preinstalled that Kubuntu doesn&#8217;t. Firefox for example. It also seems to boot faster. From GRUB to KDM it&#8217;s about 24 seconds on my AMD 3700+. I was able to add my windows shares on my fileserver to the fstab file and they mount automatically when I boot. On SUSE I had to do sudo mount -a every time I booted up to get the shares to mount. That was a pain in the ass because if I started Amarok before running the mount command Amarok wouldnt be able to find my music on the server and would delete it all from the database. I would have to reindex my entire music folder again.</p>
<p>There is this issue with kdesu where sometimes it can&#8217;t find the current screen session for starting elevated applications. There is a <a href="https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/50971">bug report</a> on this but it wasn&#8217;t fixed before Feisty was released. In that bug report <a href="https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/50971/comments/22">kko has posted a fix</a> that worked for me. It&#8217;s more of a workaround though because you have to do it every time it gets messed up.</p>
<p>I also had to install rdesktop for krdp to work. It&#8217;s strange that they had krdp installed, but not the required rdesktop package. Of course I also had to install MP3 support and all that jazz.</p>
<p>Those are the only things I can think of now that I had issues with. I think I am going to hold off on installing Beryl, or whatever it&#8217;s called now. I like how stable this stock install has been. Eventually I&#8217;d like to have a tri-boot system OS X, XP, and some KDE based linux, but I need to get an IDE drive that I can try OS X on before I attempt that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/06/installed-kubuntu-710-last-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 7.04 Fiesty Fawn Released</title>
		<link>http://www.mattvanstone.com/2007/04/ubuntu-704-fiesty-fawn-released/</link>
		<comments>http://www.mattvanstone.com/2007/04/ubuntu-704-fiesty-fawn-released/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 14:46:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mattvanstone.com/2007/04/ubuntu-704-fiesty-fawn-released/</guid>
		<description><![CDATA[Ubuntu 7.07 has been released today. I was looking forward to upgrading from 6.10, but since I installed openSUSE the other day I don&#8217;t think I want to go back to Gnome. I love KDE. Gnome is great for people who dont want options. If you want it simple, stick with Ubuntu and Gnome.

I may [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 7.07 has been released today. I was looking forward to upgrading from 6.10, but since I installed openSUSE the other day I don&#8217;t think I want to go back to Gnome. I love KDE. Gnome is great for people who dont want options. If you want it simple, stick with Ubuntu and Gnome.</p>
<p><img src='http://www.mattvanstone.com/wp-content/uploads/2007/04/feisty-release.png' alt='Ubuntu 7.04 released' /></p>
<p>I may break down and try Kubuntu which was also released today, but I don&#8217;t know. It is usually a few hours work getting Linux running on my GeForce 7800/Dell 2405 video card/monitor combination. Plus, I have read that previous versions of Kubuntu were not as quick as openSUSE. This release claims to be quicker than past ones, but will it really be worth it?</p>
<p>In the end I will probably end up trying it out. I&#8217;ll post back in the future with a comparison if I do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/04/ubuntu-704-fiesty-fawn-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 7.04 Fiesty Fawn is almost out, I&#8217;m almost excited</title>
		<link>http://www.mattvanstone.com/2007/03/ubuntu-704-fiesty-fawn-is-almost-out-im-almost-excited/</link>
		<comments>http://www.mattvanstone.com/2007/03/ubuntu-704-fiesty-fawn-is-almost-out-im-almost-excited/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 20:59:51 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mattvanstone.com/?p=94</guid>
		<description><![CDATA[Ubuntu will be releasing 7.04 Feisty Fawn within the next month and I&#8217;m pretty excited about it. Aside from the bluetooth issues I had with 6.10, the current version has served me well, and there has been a lot of good buzz about 7.04. By the way, in case you people aren&#8217;t up to speed, [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu will be releasing 7.04 Feisty Fawn within the next month and I&#8217;m pretty excited about it. Aside from the bluetooth issues I had with 6.10, the current version has served me well, and there has been a lot of good buzz about 7.04. By the way, in case you people aren&#8217;t up to speed, the Ubuntu &#8220;versions&#8221; are named by year.month since each release is significant enough to warrant a whole new version number.</p>
<p>At the same time as being excited there is sooo much I have customized on my current install that I dread having to go back and do it all over again now that it is working good. On top of that, the upgrade process NEVER works 100%, and since I have done so much to my install I&#8217;m guessing I would have a hell of a time with that. Here is the stuff I can think of off the top of my head that I will have to do:</p>
<p>Of course I&#8217;ll have to backup all of my files and settings from my current install. I found a pretty good method of making a tarball backup of everything, so I&#8217;m not so worried about that.</p>
<p>After I install 7.04:</p>
<ul>
<li>My monitor never works out of the box so modify xorg.conf to fix that</li>
<li>Install the nVidia driver</li>
<li>Install Beryl</li>
<li>Tweak my Xorg.conf file for video/mouse/keyboard settings</li>
<li>Install automatix and all of the extra apps</li>
<li>Install Fasterfox, del.icio.us, and adsense extensions to Firefox</li>
<li>Install smbfs and setup automatic mounting of shares from my fileserver</li>
<li>Install Amarok</li>
<li>Configure my desktop/theme/root theme/kde theme/custom logon/custom splash</li>
<li>Turn off tooltips in gconf-editor</li>
<li>Turn off panel animations in gconf-editor</li>
<li>Tweak Beryl</li>
</ul>
<p>This is all that I can think of off the top of my head too&#8230; I&#8217;m sure I&#8217;ll have a list almost equal in length of stuff that I forgot. I have been considering trying Suse or Kubuntu too. Who knows that&#8217;ll happen.</p>
<p>Anyway, the release date is April 19th. I&#8217;ll probably wait a week or two after that to see what all the major bugs are. By then people on <a href="http://www.ubuntuforums.org">Ubuntu Forums</a> will have a fix for most of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/03/ubuntu-704-fiesty-fawn-is-almost-out-im-almost-excited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change GTK Themes and Icons for Root Applications on Ubuntu (Synaptic)</title>
		<link>http://www.mattvanstone.com/2007/01/change_gtk_themes_and_icons_fo/</link>
		<comments>http://www.mattvanstone.com/2007/01/change_gtk_themes_and_icons_fo/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 17:29:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mattvanstone.com/?p=81</guid>
		<description><![CDATA[I know&#8230; shut up about Linux already.
If you have changed any of the system colors, icons, or fonts in Ubuntu you probably will have noticed sooner or later that when you open a program like Synaptic Package Manager or pretty much anything under the System > Administration menu, the theme is still the default one.
Well [...]]]></description>
			<content:encoded><![CDATA[<p>I know&#8230; shut up about Linux already.</p>
<p>If you have changed any of the system colors, icons, or fonts in Ubuntu you probably will have noticed sooner or later that when you open a program like Synaptic Package Manager or pretty much anything under the System > Administration menu, the theme is still the default one.</p>
<p>Well this is because all these applications are launched by root and the root profile doesnt have these customizations. It is an easy fix that I found on this <a href="http://www.ubuntuforums.org/showthread.php?t=77694">Gnome customization thread on ubuntuforums.org</a>.</p>
<p>Just run these three simple commands to create links to your theme, icon, and font folders in the root profile.</p>
<p><strong>NOTE:</strong> This trick really only works if you are the only user on your system, or if every user has the same theme, icon, and font settings. Because it links to your theme, if someone else logs into the computer who has a different theme and opens any root application they will see your theme for that app, not their own. There really is no workaround for this.</p>
<p><strong>Anyway, run these three link commands:</strong></p>
<pre>sudo ln -s ~/.themes /root/.themes
sudo ln -s ~/.icons /root/.icons
sudo ln -s ~/.fonts /root/.fonts</pre>
<p>Here is a before and after screenshot of what it looked like on my workstation.<br />
<a href="http://www.mattvanstone.com/img/root_themes-before.html" onclick="window.open('http://www.mattvanstone.com/img/root_themes-before.html','popup','width=826,height=610,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">View the before image</a><br />
<a href="http://www.mattvanstone.com/img/root_themes-after.html" onclick="window.open('http://www.mattvanstone.com/img/root_themes-after.html','popup','width=822,height=604,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">View the after image</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/01/change_gtk_themes_and_icons_fo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing Font and Icon Sizes in Ubuntu Edgy Eft 6.10</title>
		<link>http://www.mattvanstone.com/2007/01/customizing_font_and_icon_size_1/</link>
		<comments>http://www.mattvanstone.com/2007/01/customizing_font_and_icon_size_1/#comments</comments>
		<pubDate>Sat, 20 Jan 2007 18:00:12 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mattvanstone.com/?p=79</guid>
		<description><![CDATA[One thing about Ubuntu I find is it is more geared to higher resolutions&#8230; either that, or they like huge ass fonts and icons at lower resolutions. I still dual boot with Windows XP for a few reasons. I have a Harmony remote that can only be updated through Windows, and I use Guitar Pro [...]]]></description>
			<content:encoded><![CDATA[<p>One thing about Ubuntu I find is it is more geared to higher resolutions&#8230; either that, or they like huge ass fonts and icons at lower resolutions. I still dual boot with Windows XP for a few reasons. I have a Harmony remote that can only be updated through Windows, and I use <a href="http://www.guitar-pro.com/index.php?affiliate=mvanstone">Guitar Pro 5</a>, which I haven&#8217;t taken the time yet to try and get working through Wine.</p>
<p>Anyway, every time I boot in Windows I am surprised at how much bigger my monitor looks. Fact is, it looks bigger because XP came out when 1024 was pretty much the highest resolution anyone used. When you run it at 1920&#215;1200 it seems like such a higher resolution because the fonts and icons are not scaled larger to match the it. Then I boot back into Ubuntu and everything seems so large.</p>
<p>It is actually pretty simple to modify these settings. In fact I fixed it by changing two simple options.<br />
<span id="more-79"></span></p>
<h3>Icon Sizes</h3>
<ol>
<li>Open up a Nautilus window by double clicking on any drive or folder</li>
<li>Go to the <strong>Edit</strong> menu and choose <strong>Preferences</strong></li>
<li>Under <strong>Icon View Defaults</strong> change <strong>Default zoom level</strong> from 100% to <strong>75%</strong></li>
<li>Click <strong>Close</strong> to save the settings</li>
</ol>
<h3>Font Sizes</h3>
<ol>
<li>Under the <strong>System</strong> menu go to <strong>Preferences</strong> and select <strong>Font</strong></li>
<li>Click the <strong>Details&#8230;</strong> button</li>
<li>Change the resolution from 92 to <strong>75 dots per inch</strong></li>
<li>If you have an LCD display, select the <strong>Smoothing</strong> and <strong>Hinting</strong> settings that make the fonts look the cleanest (I chose Subpixel for Smoothing and Slight for Hinting)</li>
<li>Click <strong>Close</strong>, and then <strong>Close</strong> again on the next window to save the settings</li>
<li>Log out and log back in to make the change system wide</li>
</ol>
<p>You will now see that your icons are 25% smaller and your fonts are about 20% smaller. Depending on your monitor size, resolution, and eye vision these settings might not be ideal for you, but you can play with them to get a setting that works. These are just what are best for me.</p>
<p>Here are some screenshots of before and after the change on my computer. Beware, they are quite large (1920&#215;1200).</p>
<p><a href="http://www.mattvanstone.com/img/fonts-before.html" onclick="window.open('http://www.mattvanstone.com/img/fonts-before.html','popup','width=1920,height=1200,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">View before image</a></p>
<p><a href="http://www.mattvanstone.com/img/fonts-after.html" onclick="window.open('http://www.mattvanstone.com/img/fonts-after.html','popup','width=1920,height=1200,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">View after image</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/01/customizing_font_and_icon_size_1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Give aMSN Anti-Aliased Fonts in Ubuntu</title>
		<link>http://www.mattvanstone.com/2007/01/give_amsn_antialiased_fonts_in/</link>
		<comments>http://www.mattvanstone.com/2007/01/give_amsn_antialiased_fonts_in/#comments</comments>
		<pubDate>Sat, 20 Jan 2007 17:14:00 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mattvanstone.com/?p=78</guid>
		<description><![CDATA[I was browsing the Faqs, Howto, Tips &#038; Tricks forum on ubuntuforums.org and came across a script to automatically compile the beta versions of Tcl and Tk and then recompile amsn with anti-aliasing support.
I knew this has been possible, but I wasnt really interested in putting the work in to have more buggy beta software [...]]]></description>
			<content:encoded><![CDATA[<p>I was browsing the <a href="http://ubuntuforums.org/forumdisplay.php?f=100">Faqs, Howto, Tips &#038; Tricks forum on ubuntuforums.org</a> and came across a script to automatically compile the beta versions of Tcl and Tk and then recompile amsn with anti-aliasing support.</p>
<p>I knew this has been possible, but I wasnt really interested in putting the work in to have more buggy beta software running. But since I found this script and it seemed to be working flawlessly for a lot of people I gave it a try.</p>
<p>See the forum post here: <a href="http://ubuntuforums.org/showthread.php?t=297676">Automatic Script for Anti-Aliasing aMSN</a></p>
<p>Read the notes in the post before you try to run the script. There are some conditions that may affect some users. It worked fine for me though.</p>
<p><strong>Here are my before and after pictures:</strong><br />
<span id="more-78"></span><br />
<img alt="amsn-before.png" src="http://www.mattvanstone.com/img/amsn-before.png" /></p>
<p><img alt="amsn-after.png" src="http://www.mattvanstone.com/img/amsn-after.png" /></p>
<p>I haven&#8217;t had any stability issues either.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattvanstone.com/2007/01/give_amsn_antialiased_fonts_in/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
