<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8394935270705642239</id><updated>2011-05-04T07:50:10.994-04:00</updated><category term='posts'/><category term='docs'/><title type='text'>minushuman.com blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-4266039328219172254</id><published>2008-02-07T17:46:00.000-05:00</published><updated>2008-02-08T08:09:32.035-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>Using NTFS-3G on Ubuntu 7.10</title><content type='html'>I recently decided to test out NTFS support on Ubuntu.  I'd previously read good things about the NTFS-3G project (www.ntfs-3g.org) so I figured I'd test it out.  My current system has two hard drives in it, one dedicated to Linux and all my data, the other for Windows (XP at the moment) and strictly for games and the occasional Windows-only app I may need to run when I don't feel like messing with WINE (Turbo Tax for example).  Anyway, in a &lt;a href="http://minushumanblog.blogspot.com/2007/03/how-to-backup-data-on-ubuntu-linux.html"&gt;previous post&lt;/a&gt; I was using a SMB/CIFS mount to perform backups to, but I've had minor issues with it not unmounting correctly and with the Simple Backup utility just not being able to write to it now and then.  So, I decided I might as well make use of NTFS-3G and my second hard drive, since in the end my main objective of backing everything up is in case my hard drive dies.  They surely won't both die at the same time, right?  :-)&lt;br /&gt;&lt;br /&gt;So anyway, to get started, simply install the "ntfs-3g" package and its dependencies.  Then, just add a line similar to the following to your &lt;span style="font-family: courier new;"&gt;/etc/fstab&lt;/span&gt; file:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-family: courier new;"&gt;/dev/sdb1 /media/ntfs ntfs-3g defaults,locale=en_US.UTF-8,uid=1000,gid=1000,umask=0137,fmask=0137,dmask=0027 0 0&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So, just as before, the first second is the drive/partition I want to mount (&lt;span style="font-family: courier new;"&gt;/dev/sdb1&lt;/span&gt;), the second part is the location I want to mount it to (&lt;span style="font-family: courier new;"&gt;/media/ntfs&lt;/span&gt;), which I created in advance, then I believe the next part just tells it to use the default settings when mounting the drive and also tells it to use the locale of your choice (assuming it is supported by NTFS-3G).  Next is the "uid" and "gid" options if you want to force ownership to a particular user and group.  If you don't utilize these, the mount point will be owned by root.  However, if you also don't specify the "umask, fmask, or dmask" then it won't really matter as the default option is to make it readable, writeable, and executable by all users.  In my example, I chose my own user account (I believe it has to be in numeric form according to the man page for NTFS-3G) &lt;span style="font-family: courier new;"&gt;&lt;/span&gt;and group to be the owner and set the file mask so that it would allow the user read/write access and read/write/execute on directories.&lt;br /&gt;&lt;br /&gt;If you like to keep things extra simple, you can also install the "ntfs-config" package.  Then all you have to do is run the application (under "Applications" --&gt; "System Tools" after you install it) and it lets you simple check which NTFS partition(s) you want to mount and where you want to mount it to (it forces it to be somewhere under &lt;span style="font-family: courier new;"&gt;/media&lt;/span&gt;).  Then after clicking OK it'll ask if you want to make it writable or not and bam, you're all done.  Your &lt;span style="font-family: courier new;"&gt;/etc/fstab&lt;/span&gt; entry will look exactly like mine above but without the uid, gid, and mask settings (well that and your partition and mount point will likely differ).  I believe this app even creates the directory you chose as your mount point as well.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-4266039328219172254?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/4266039328219172254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=4266039328219172254&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/4266039328219172254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/4266039328219172254'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2008/02/using-ntfs-3g-on-ubuntu-710.html' title='Using NTFS-3G on Ubuntu 7.10'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-4564467788491927429</id><published>2007-10-29T22:36:00.000-04:00</published><updated>2007-10-30T21:32:05.311-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>Installing the Citrix ICA Client on Ubuntu</title><content type='html'>Here's how I installed the Citrix ICA client on Ubuntu 7.10 (and other versions for that matter):&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Download the latest Linux client from &lt;a href="http://www.citrix.com/English/SS/downloads/details.asp?dID=2755&amp;amp;downloadID=3323&amp;amp;pID=186"&gt;here&lt;/a&gt; (get the tar.gz version) into a newly created directory.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Extract the &lt;span style="font-family:courier new;"&gt;en.linuxx86.tar.gz&lt;/span&gt; file (or whatever it was called if not this) from the directory where you saved it.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now run the setup program from the terminal (&lt;span style="font-family:courier new;"&gt;sudo ./setupwfc&lt;/span&gt;)&lt;/li&gt;&lt;li&gt;Follow the prompts to install (or remove if need be) the Citrix ICA client.  I chose to not use the defaults and installed mine to &lt;span style="font-family:courier new;"&gt;/opt/citrixICAclient&lt;/span&gt; instead just because that's generally where I install anything that isn't from an apt package.&lt;/li&gt;&lt;li&gt;If you use a non-default path as I did, the installer says you need to create the ICAROOT environment variable.  I didn't do that initially and it seemed to work fine, but I eventually added this line to &lt;span style="font-family:courier new;"&gt;/etc/profile&lt;/span&gt;: &lt;span style="font-family:courier new;"&gt;export ICAROOT=/opt/citrixICAclient&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Finally, to get the Citrix Presentation Server Client (the part that includes the Connection Center) to actually work, you need to install the &lt;span style="font-family: courier new;"&gt;motif-clients&lt;/span&gt; (and dependencies) package.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Firefox should be good to go with ICA goodness now, enjoy.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-4564467788491927429?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/4564467788491927429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=4564467788491927429&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/4564467788491927429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/4564467788491927429'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/10/installing-citrix-ica-client-on-ubuntu.html' title='Installing the Citrix ICA Client on Ubuntu'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-1775709599239240919</id><published>2007-10-29T22:29:00.000-04:00</published><updated>2007-11-13T21:12:27.361-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>Setting up Azureus on Ubuntu</title><content type='html'>Here's how I installed Azureus on Ubuntu 7.10 since I prefer it over the default BitTorrent client that comes with Ubuntu.  I didn't use the "Azureus" package from the apt repository because it seems to grab all sorts of old Java packages and I had issues with it in the past.  That was a while ago, so maybe they've fixed the issues, but as of this writing, only Azureus 2.5 is in the repository and version 3.0 is current.  So, first make sure you have Java installed properly--I used the "sun-java6-plugin" package (and its dependencies) to get Java set up (mainly for Firefox use)--then follow these steps:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Go to &lt;a href="http://azureus.sourceforge.net/"&gt;azureus.sourceforge.net&lt;/a&gt; and download the latest tar.bz2 file for Linux to your home directory.&lt;/li&gt;&lt;li&gt;From the terminal and in your home directory, run the following command (all one line): &lt;span style="font-family:courier new;"&gt;sudo tar jxvf Azureus_&lt;span style="font-style: italic;"&gt;version&lt;/span&gt;_linux.tar.bz2 -C /opt/&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Next, run: &lt;span style="font-family:courier new;"&gt;sudo gedit /usr/share/applications/azureus.desktop&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Add the following text to the new file:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote style="font-family: courier new;"&gt;[Desktop Entry]&lt;br /&gt;Name=Azureus&lt;br /&gt;Comment=Java BitTorrent Client&lt;br /&gt;Exec=/opt/azureus/azureus&lt;br /&gt;Icon=/opt/azureus/Azureus.png&lt;br /&gt;Terminal=false&lt;br /&gt;Type=Application&lt;br /&gt;Categories=Application;Network;&lt;br /&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Now you should see the "Azureus" shortcut under the "Internet" menu.&lt;/li&gt;&lt;li&gt;UPDATE: I just had to change the permissions on the Azureus directory in order for updates to work.  Since the instructions above create the directory with only "root" ownership, I had to enter &lt;span style="font-family: courier new;"&gt;chown -R myusername:myusername /opt/azureus&lt;/span&gt; to allow the updates to work.  So I guess if you have multiple people that use Azureus you may want to set up a group for those users that has the appropriate permissions assigned.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-1775709599239240919?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/1775709599239240919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=1775709599239240919&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/1775709599239240919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/1775709599239240919'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/10/setting-up-azureus-on-ubuntu-710.html' title='Setting up Azureus on Ubuntu'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-1923292279479133216</id><published>2007-10-28T21:42:00.001-04:00</published><updated>2008-03-09T15:37:41.380-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>Ubuntu 7.10 Build Doc</title><content type='html'>This is a not-as-complete version of my &lt;a href="http://minushumanblog.blogspot.com/2007/01/ubuntu-610-build-doc_27.html"&gt;Ubuntu 6.10 build doc&lt;/a&gt; as a lot of the items are going to be the same and I've gotten a lot more comfortable with Ubuntu since then, so there's less for me to have to write down as I tend to remember more now.  That and some of the items are not even needed as Ubuntu has made some good improvements over the last year.  Anyway, here goes...&lt;br /&gt;&lt;ul&gt;&lt;li&gt;First, configure the apt repositories by either uncommenting all the lines in &lt;span style="font-family:courier new;"&gt;/etc/apt/sources.list&lt;/span&gt; or by using Synaptic to enable everything.  I made mine look like this initially:&lt;/li&gt;&lt;/ul&gt;&lt;p  style="font-family:courier new;"&gt;&lt;span style="font-size:85%;"&gt;## Canonical-supported Open Source software (main)&lt;br /&gt;## Proprietary drivers for devices (restricted)&lt;br /&gt;## Community-maintained Open Source software (universe)&lt;br /&gt;## Software restricted by copyright or legal issues (multiverse)&lt;br /&gt;deb http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted universe multiverse&lt;br /&gt;deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Recommended updates (gutsy-updates)&lt;br /&gt;deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted universe multiverse&lt;br /&gt;deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Pre-released updates (gutsy-proposed)&lt;br /&gt;# deb http://us.archive.ubuntu.com/ubuntu/ gutsy-proposed main restricted universe multiverse&lt;br /&gt;# deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-proposed main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Important security updates (gutsy-security)&lt;br /&gt;deb http://security.ubuntu.com/ubuntu gutsy-security main restricted universe multiverse&lt;br /&gt;deb-src http://security.ubuntu.com/ubuntu gutsy-security main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Unsupported updates (gutsy-backports)&lt;br /&gt;deb http://us.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse&lt;br /&gt;deb-src http://us.archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Third-Party Software&lt;br /&gt;deb http://archive.canonical.com/ubuntu gutsy partner&lt;br /&gt;deb-src http://archive.canonical.com/ubuntu gutsy partner&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Install the restricted version of your video card if it is detected or if you want it.  I have an nVidia card, so I just enabled the restricted driver and it downloaded the "nvidia-glx" package for me and enabled the "normal" 3D graphics.  I bumped it up to "extra" under System &gt; Preferences &gt; Appearance &gt; Visual Effects.&lt;/li&gt;&lt;li&gt;Install the Microsoft fonts package ("msttcorefonts") if you want them and configure Firefox default fonts like so (if you want web pages to look as they were likely intended) -- Proportional: &lt;span style="font-style: italic;"&gt;Serif&lt;/span&gt;, Serif: &lt;span style="font-style: italic;"&gt;Times New Roman&lt;/span&gt;, Sans-serif: &lt;span style="font-style: italic;"&gt;Arial&lt;/span&gt;, Monospace: &lt;span style="font-style: italic;"&gt;Courier New&lt;/span&gt;&lt;/li&gt;&lt;li&gt;I prefer to change my font style to "Subpixel smoothing (LCDs)" under System &gt; Preferences &gt; Appearance &gt; Fonts and then change the font sizes all to 9 instead of 10.&lt;/li&gt;&lt;li&gt;Set up time syncing if you care about that sort of thing (System &gt; Administration &gt; Time &amp;amp; Date)&lt;/li&gt;&lt;li&gt;I have a Logitech MX510 mouse and unfortunately the side buttons still do not work out of the box with Ubuntu.  So, to fix, I had to modify the &lt;span style="font-family:courier new;"&gt;/etc/X11/xorg.conf&lt;/span&gt; file as follows (the bold lines are the ones I either added or modified from the existing file) - more info at &lt;a href="https://help.ubuntu.com/community/ManyButtonsMouseHowto"&gt;https://help.ubuntu.com/community/ManyButtonsMouseHowto&lt;/a&gt;:&lt;/li&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;Section "InputDevice"&lt;br /&gt;&lt;blockquote&gt;Identifier      "Configured Mouse"&lt;br /&gt;Driver    "mouse"&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    Option    "Buttons" "7"&lt;/span&gt;&lt;br /&gt;Option    "CorePointer"&lt;br /&gt;Option    "Device"        "/dev/input/mice"&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    Option    "Protocol"      "ExplorerPS/2"&lt;/span&gt;&lt;br /&gt;Option    "ZAxisMapping"  "4 5"&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    Option    "ButtonMapping" "1 2 3 6 7"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    Option    "Resolution" "800"&lt;/span&gt;&lt;/blockquote&gt;EndSection&lt;/span&gt;&lt;/blockquote&gt;&lt;li&gt;You want Adobe Flash for web surfing, so be sure to get the "flashplugin-nonfree" package if you didn't already get it via Firefox.&lt;/li&gt;&lt;li&gt;I generally want Adobe Reader too instead of Evince, so to install that:&lt;/li&gt;&lt;/ul&gt;&lt;ul style="margin-left: 40px;"&gt;&lt;li&gt;Click &lt;a href="https://help.ubuntu.com/community/Medibuntu#head-7486ed038a9becc1dff10a24cc07a38a00d70e9f"&gt;here&lt;/a&gt; to add the Medibuntu apt repository or for Gutsy...&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Run (all one line) &lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;sudo wget http://www.medibuntu.org/sources.list.d/gutsy.list -O /etc/apt/sources.list.d/medibuntu.list&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;and then (again, one line) &lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;wget -q http://packages.medibuntu.org/medibuntu-key.gpg -O- | sudo apt-key add - &amp;amp;&amp;amp; sudo apt-get update&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;and finally, install the "acroread," "acroread-escript," "acroread-plugins," and "mozilla-acroread" packages to get Adobe Reader set up.&lt;/li&gt;&lt;li&gt;Finally, it appears there's an issue with version 8.1.1 from the Medibuntu repository.  If you load up Adobe Reader on its own (as opposed to the embedded in Firefox version) it gives an error regarding "libgtkembedmoz."  To correct this, go the main Adobe Reader window and then click on Edit &gt; Preferences &gt; Internet.  Set the browser executable to &lt;span style="font-family:courier new;"&gt;/usr/bin/firefox&lt;/span&gt; and the libgtkembedmoz folder to &lt;span style="font-family:courier new;"&gt;/usr/lib/firefox&lt;/span&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;If you want Java, install "sun-java6-plugin" and its dependencies (or "sun-java5-plugin" if you need the older version).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;I'm not a fan of the default screenshot utility (Gnome-snapshot), so I install "ksnapshot" and its dependencies instead.&lt;/li&gt;&lt;li&gt;I use Azureus, so I installed it using &lt;a href="http://minushumanblog.blogspot.com/2007/10/setting-up-azureus-on-ubuntu-710.html"&gt;these instructions&lt;/a&gt;.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;I need Citrix ICA for work, so I installed it using &lt;a href="http://minushumanblog.blogspot.com/2007/10/installing-citrix-ica-client-on-ubuntu.html"&gt;these instructions&lt;/a&gt;.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now that the apps I use are installed, I typically hide the ones I don't use from the menu since all the included apps seem to be tied to the "ubuntu-desktop" package. So far this includes (formatted as &lt;span style="font-style: italic;"&gt;package name&lt;/span&gt; / &lt;span style="font-style: italic;"&gt;friendly menu name&lt;/span&gt;):&lt;/li&gt;&lt;ul&gt;&lt;li&gt;evince / Document Viewer&lt;br /&gt;&lt;/li&gt;&lt;li&gt;gnome-screenshot / Take Screenshot&lt;br /&gt;&lt;/li&gt;&lt;li&gt;gnome-btdownload / BitTorrent&lt;br /&gt;&lt;/li&gt;&lt;li&gt;ekiga / Ekiga Softphone&lt;br /&gt;&lt;/li&gt;&lt;li&gt;evolution / Evolution Mail&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;If this was a fresh install, be sure to restore data via "sbackup" (in my case anyway) and reconfigure it to start backing up my system again.  Instructions can be found &lt;a href="http://minushumanblog.blogspot.com/2007/03/how-to-backup-data-on-ubuntu-linux.html"&gt;here&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;And that's all I have for now.  I will update this doc as needed, if you see any errors or corrections that need to be made, drop me a comment.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-1923292279479133216?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/1923292279479133216/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=1923292279479133216&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/1923292279479133216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/1923292279479133216'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/10/ubuntu-710-build-doc.html' title='Ubuntu 7.10 Build Doc'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-241844162591086758</id><published>2007-08-19T23:08:00.000-04:00</published><updated>2007-08-19T23:13:29.770-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>5.1 Surround Sound</title><content type='html'>I continuously had issues getting the various video apps to play back in 5.1 surround sound.  Eventually I stumbled upon &lt;a href="http://ubuntuguide.org/wiki/Ubuntu_Feisty#How_to_setup_the_surround_speakers_.285.1_and_others.29_with_ALSA"&gt;this part&lt;/a&gt; of the Ubuntu Guide and it solved my issues so far.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-241844162591086758?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/241844162591086758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=241844162591086758&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/241844162591086758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/241844162591086758'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/08/51-surround-sound.html' title='5.1 Surround Sound'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-3967923171035676649</id><published>2007-03-20T23:03:00.000-04:00</published><updated>2008-02-07T18:17:28.208-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>How to Backup Data on Ubuntu Linux Using Simple Backup Suite</title><content type='html'>UPDATE: I've since decided to stop using the following SMB/CIFS mount to backup my data and instead am using the NTFS-3G driver and my local Windows hard drive since it is, well, local and thus faster.  If you are in a similar situation and would prefer that to SMB/CIFS, then skip down to the "Backups" section after reading &lt;a href="http://minushumanblog.blogspot.com/2008/02/using-ntfs-3g-on-ubuntu-710.html"&gt;this post&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This document assumes you already have Ubuntu Linux up and running and is based on Ubuntu Edgy 6.10, though assuming they keep the Simple Backup Suite available in future versions I see no reason why this won't continue to work on newer versions.&lt;br /&gt;&lt;br /&gt;First off, I chose to store my data on a remote Windows SMB/CIFS share.  Why?  Well, for one, I wanted my files on a system other than my Ubuntu Linux PC for obvious reasons.  Second, the Windows PC is the only other computer in my home, so my options were limited.  The following are the steps I used to set things up for this scenario:&lt;ul&gt;&lt;li&gt;In order to mount a remote SMB/CIFS share (the Windows PC) you need to make sure you have the "smbfs" package installed.  Do this using either apt-get or Synaptic.&lt;/li&gt;&lt;li&gt;Next, unless you want to mount the remote filesystem by IP address or you have a DNS server in place, you should probably add the remote system to your &lt;span style="font-family:courier new;"&gt;/etc/hosts&lt;/span&gt; file.&lt;/li&gt;&lt;li&gt;Next, you need to either pick an existing directory (such as &lt;span style="font-family:courier new;"&gt;/mnt&lt;/span&gt;) or create your own directory where you will mount your remote SMB/CIFS filesystem. &lt;/li&gt;&lt;li&gt;Rather than doing a manual mount command each time the system boots, we will set it up to mount on startup each time.  To do this, you need to place an entry in your &lt;span style="font-family:courier new;"&gt;/etc/fstab&lt;/span&gt; file as follows:&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;blockquote&gt;//remote_computer/sharename /mount_dir cifs credentials=/path_to_credentials_file,uid=username,gid=groupname,file_mode=0644,dir_mode=0755 0 0&lt;/blockquote&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Note that the above path is one long line.&lt;/li&gt;&lt;li&gt;Most of the line we just added is straightforward, however let me explain a bit.  First is the path to the remote computer's filesystem, the Windows PC in my case.  Then after the space is the location where you want to mount the remote filesystem, &lt;span style="font-family:courier new;"&gt;/mnt/windowsPC&lt;/span&gt; for example.  Following that is the filesystem type that we are mounting, CIFS in this case, then you have the credentials file (created in the next step).  The "uid=" part is only needed if you want to force the files and directories on the mounted filesystem to be owned by a particular user account.  The "gid=" is the same thing, except this defines the group name that the filesystem will be owned by.  The "file_mode=" sets the file mask while "dir_mode=" sets the directory mask. &lt;a href="http://www.faqs.org/docs/linux_intro/sect_03_04.html"&gt;Click here&lt;/a&gt; for more info on the numbers that follow these parameters if you do not understand them.  As for the final two 0s (zeros) on the line, they control how the "dump" and "fsck" programs work on this file system.  I'd stick with the 0s (zeros) until you read through the man page for "fstab" (type &lt;span style="font-family:courier new;"&gt;man fstab&lt;/span&gt; to read it).&lt;/li&gt;&lt;li&gt;Finally, we need to create a credentials file at the location we pointed to in &lt;span style="font-family:courier new;"&gt;/etc/fstab&lt;/span&gt;.  To do so, simply populate the file with two lines as such:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote  style="font-family:courier new;"&gt;&lt;span style="font-size:85%;"&gt;username=an_account_with_permissions_on_remote_filesystem&lt;br /&gt;password=password_to_above_account&lt;/span&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;I named my filename &lt;span style="font-family:courier new;"&gt;.smbpasswd&lt;/span&gt; and also created a separate Windows account on my remote computer that I only use for this particular share (the account is just a regular user account on my Windows XP computer and has "modify" rights to the share I am mounting to keep it somewhat secure).  I put a strong and random password on this account and entered it into the &lt;span style="font-family:courier new;"&gt;.smbpasswd&lt;/span&gt; file accordingly.&lt;/li&gt;&lt;li&gt;Now, you may notice that we just put a username/password in a clear text file.  Obviously this is bad, which is why I used a separate, non-admin account for this.  On top of that, we will change the permissions on this file so that only the necessary user (my Linux account in this case) has read/write permissions by typing &lt;span style="font-family:courier new;"&gt;chmod 600 .smbpasswd&lt;/span&gt;.  When the paths in &lt;span style="font-family:courier new;"&gt;/etc/fstab&lt;/span&gt; are mounted, it is done by the root user, which can still read this file.  Coincidentally, this fact is also a good reason to use the "uid=" and "gid=" parameters above in the &lt;span style="font-family:courier new;"&gt;/etc/fstab&lt;/span&gt; file so that the mounted filesystem is not owned by &lt;span style="font-family:courier new;"&gt;root&lt;/span&gt; only.&lt;/li&gt;&lt;li&gt;Finally, either reboot your system to test things out or type &lt;span style="font-family:courier new;"&gt;mount -a&lt;/span&gt; to mount everything in the &lt;span style="font-family:courier new;"&gt;/etc/fstab&lt;/span&gt; file.&lt;/li&gt;&lt;li&gt;Assuming everything above worked, you should now have a remote SMB/CIFS filesystem mounted and should be able to read/write files to/from it.&lt;/li&gt;&lt;li&gt;Attribution: Pretty much everything I've documented so far I learned from &lt;a href="http://www.justlinux.com/nhf/Filesystems/Mounting_smbfs_Shares_Permanently.html"&gt;this site&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Backups:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Now that the remote share is set up, we can install/configure the backup software.  As mentioned earlier, I chose to try out the Simple Backup Suite.&lt;/li&gt;&lt;li&gt;To install Simple Backup, just install the "sbackup" package.&lt;/li&gt;&lt;li&gt;After installation, you should see two new entries on your System --&gt; Administration menu--"Simple Backup Config" and "Simple Backup Restore."&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_eBTPF_obcqI/RgNLNcenrcI/AAAAAAAAADU/s5QjwYoqPiE/s1600-h/simple_backup.png"&gt;&lt;img style="cursor: pointer;" src="http://2.bp.blogspot.com/_eBTPF_obcqI/RgNLNcenrcI/AAAAAAAAADU/s5QjwYoqPiE/s320/simple_backup.png" alt="" id="BLOGGER_PHOTO_ID_5044958701940092354" border="0" /&gt;&lt;/a&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Select "Simple Backup Config" to configure the backup.&lt;/li&gt;&lt;li&gt;There are different ways to configure the backup and rather than go through them all, I will explain what I did and refer you to &lt;a href="http://onlyubuntu.blogspot.com/2007/03/backup-and-restore-ubuntu-system-using.html"&gt;this site&lt;/a&gt;, which is straight from the &lt;a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#Backup_Ubuntu_System"&gt;Ubuntu Edgy Starter Guide&lt;/a&gt; section on backing up Ubuntu.  In addition to Simple Backup, it also has a link to Dar and Kdar if you are interested (I did not try these out).&lt;/li&gt;&lt;li&gt;On the first tab (General) of Simple Backup I selected "Custom" as the recommended settings would not accomplish what I needed.  "Manual backups only" also would not accomplish what I needed, which was to backup all my data automatically.&lt;/li&gt;&lt;li&gt;On the second tab (Include) I removed all directories except for &lt;span style="font-family:courier new;"&gt;/etc&lt;/span&gt; and &lt;span style="font-family:courier new;"&gt;/home&lt;/span&gt;.  The first directory (&lt;span style="font-family:courier new;"&gt;/etc&lt;/span&gt;) is good to backup because it contains lots of configuration files for Ubuntu and &lt;span style="font-family:courier new;"&gt;/home&lt;/span&gt; of course contains the users' home directories and generally all the users' data.  This is definitely the case for me.&lt;/li&gt;&lt;li&gt;On the "Exclude" tab I left all the default paths the same and even added one--the directory that contains my BitTorrent downloads.  I only exclude that because it often contains large files that I only keep for a short while and are generally not something I consider crucial if my hard drive died.  Plus, the hard drive I'm backing everything up to isn't all that big, so I need to save disk space where possible.&lt;/li&gt;&lt;li&gt;On the same tab, there are side tabs on the left side of the window.  The "Paths" tab I just referred to in the previous step, but the next side tab is "File Types."  I removed all the default file types as I have data of those types and want to back it up.  I'm not sure why MP3 files are excluded by default since I'm sure the majority of users would be quite upset to lose their music library if their hard drive died.&lt;/li&gt;&lt;li&gt;On the next side tab, "Regex," I did not remove anything.  It appears to exclude the directory storing auto-generated thumbnails of images from viewing in Nautilus, the Trash directory, and the Firefox cache directory.  I don't care to save any of this stuff and you probably shouldn't either.&lt;/li&gt;&lt;li&gt;On the "Max size" side tab, I simple unchecked the "Do not backup files bigger than..." check box because I don't care how big my files are.  If they are in my list of included directories, then I want them saved regardless of size.&lt;/li&gt;&lt;li&gt;Next, on the "Destination" tab I selected "Use custom local backup directory" and selected the path to my recently mounted SMB/CIFS remote filesystem.  This selection is a bit misleading since it says it is a local directory when in reality it doesn't have to be.  The default selection is truly local, however, so keep in mind that storing your backup files there won't help you in the event of a hard drive failure if that directory (&lt;span style="font-family:courier new;"&gt;/var/backup&lt;/span&gt;) is not mounted to at least a different physical hard drive.&lt;/li&gt;&lt;li&gt;On the "Time" tab, you can select whether or not you want to schedule backups to run automatically.  My initial settings (I may change these in the future depending on how things work out) were to do a backup every day at 3am and to do a full backup at least every 14 days.  I'd prefer to do a full backup every week, but I don't think my remote Windows PC that's hosting my SMB/CIFS share will have enough disk space to accommodate this.&lt;/li&gt;&lt;li&gt;Finally, the last tab (Purging) let's you set how long to retain your backups.  Once again, I'm starting out by selecting "Logarithmic" (the default and recommended setting by the application) and will change it if necessary (e.g. if my Windows PC runs out of disk space too early I will probably just do the "Simple cutoff" option and set the number low enough) down the road.&lt;/li&gt;&lt;li&gt;When done setting your options, simply click the "Save" button and the settings are saved and backups should run at your scheduled time if you've configured it as such.  You also have the option to kick off a manual backup job to test things out.&lt;/li&gt;&lt;li&gt;Simple backup will run a full backup the first time it runs and then do incremental backups each time until the number of days passes that you set on the "Time" tab for full backups to occur.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Restores:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Now that you've backed everything up, you might want to test the restore function. Just click on the "Simple Backup Restore" shortcut on your "Administration" menu to get started.&lt;/li&gt;&lt;li&gt;The first thing to do is to select your "Restore Source Folder."  The default choice should point to wherever you told Simple Backup to store your backup files.  In my case this is the remote SMB/CIFS filesystem we mounted in the first part of this post.&lt;/li&gt;&lt;li&gt;Next, choose from the list of available backups.  Obviously if you've had a complete loss of data you'll want to pick the most recent full backup, and then restore each incremental backup after that.&lt;/li&gt;&lt;li&gt;The following screen shot is an example of a restore (the &lt;span style="font-family:courier new;"&gt;/etc/X11/xorg.conf&lt;/span&gt; file in this case):&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_eBTPF_obcqI/RgNaFsenrhI/AAAAAAAAAD8/bcYn12r8LjI/s1600-h/simple_restore.png"&gt;&lt;img style="cursor: pointer;" src="http://3.bp.blogspot.com/_eBTPF_obcqI/RgNaFsenrhI/AAAAAAAAAD8/bcYn12r8LjI/s400/simple_restore.png" alt="" id="BLOGGER_PHOTO_ID_5044975061470522898" border="0" /&gt;&lt;/a&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;As you can see, there are two restore options--"Restore" and "Restore As."  The first will restore the file to its original location.  The second let's you pick an alternate location if you like.  This is the one part where I found a bug in the software.  If you try to browse for the alternate directory and click "Open" it still tries to restore it to the original location (it'll ask you if you want to overwrite the file if it already exists).  So, if you truly want to restore to an alternate location, you'll have to just type it in the "Name" text box as shown in the next screen shot:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_eBTPF_obcqI/RgNTgcenreI/AAAAAAAAADk/YQVHlTL4dA0/s1600-h/simple_alt_restore.png"&gt;&lt;img style="cursor: pointer;" src="http://2.bp.blogspot.com/_eBTPF_obcqI/RgNTgcenreI/AAAAAAAAADk/YQVHlTL4dA0/s400/simple_alt_restore.png" alt="" id="BLOGGER_PHOTO_ID_5044967824450629090" border="0" /&gt;&lt;/a&gt;&lt;/blockquote&gt;That's pretty much it for backups and restores on Ubuntu. One thing I've noticed is that the daily incremental backups are larger than I thought they'd be considering I didn't change any of my own data.  However, the hidden directories such as &lt;span style="font-family:courier new;"&gt;.gconf&lt;/span&gt;, &lt;span style="font-family:courier new;"&gt;.gconfd&lt;/span&gt;, &lt;span style="font-family:courier new;"&gt;.nautilus&lt;/span&gt;, etc. all have files that frequently get updated.  I may decide to exclude these from the backups soon because so far, my first two incremental backups have taken up 55-80MB of space each, so that will likely add up quickly and most of that data would be regenerated in the event of a hard drive crashing and having to reinstall Ubuntu on a new one.  But there might be a configuration file that I'd want in there some day, so until disk space becomes an issue, I'll probably leave them be.&lt;br /&gt;&lt;br /&gt;Finally, one thing to note is that the Simple Backup configuration file is named &lt;span style="font-family:courier new;"&gt;/etc/sbackup.conf&lt;/span&gt; in case you need to restore it some day.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-3967923171035676649?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/3967923171035676649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=3967923171035676649&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/3967923171035676649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/3967923171035676649'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/03/how-to-backup-data-on-ubuntu-linux.html' title='How to Backup Data on Ubuntu Linux Using Simple Backup Suite'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_eBTPF_obcqI/RgNLNcenrcI/AAAAAAAAADU/s5QjwYoqPiE/s72-c/simple_backup.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-5713135153469936733</id><published>2007-01-27T18:09:00.001-05:00</published><updated>2007-02-01T21:31:45.491-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='docs'/><title type='text'>Ubuntu 6.10 Build Doc</title><content type='html'>This is an ongoing document that I plan to add to whenever I do anything with my freshly installed Ubuntu 6.10 Desktop (32-bit x86).&lt;br /&gt;&lt;ul&gt;&lt;li&gt;First things first, download the ISO for Ubuntu, burn it, and install.  Go to &lt;a href="http://www.ubuntu.com/"&gt;www.ubuntu.com&lt;/a&gt; if you need help with this step.  I chose the standard "CD Image for desktop and laptop PCs" i386/x86 CD (as opposed to the PowerPC or alternate install CD or DVD).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;NOTE on install&lt;/span&gt;: On my PC (with an nVidia video card) I had issues with the graphics being garbled when the live CD loaded X.  I followed the instructions &lt;a href="http://www.ubuntuforums.org/showthread.php?p=1680357"&gt;here&lt;/a&gt; to fix it except for the &lt;span style="font-family:courier new;"&gt;RenderAccel&lt;/span&gt; part because I'm not sure what the ramifications of that is yet.  The short version of the instructions is to switch to a different console and change the &lt;span style="font-family:courier new;"&gt;Driver   "nv"&lt;/span&gt; section to &lt;span style="font-family:courier new;"&gt;Driver   "vesa"&lt;/span&gt; in &lt;span style="font-family:courier new;"&gt;/etc/X11/xorg.conf&lt;/span&gt; and restart &lt;span style="font-family:courier new;"&gt;gdm&lt;/span&gt;.  I had to kill &lt;span style="font-family:courier new;"&gt;gdm&lt;/span&gt; as it did not stop correctly for me.&lt;/li&gt;&lt;li&gt;After successfully installing Ubuntu, the first thing I did was update the &lt;span style="font-family:courier new;"&gt;/etc/apt/sources.list&lt;/span&gt; file so I had access to more packages that I would need later.  It looked like this afterwards:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote style="font-family: courier new;"&gt;## Main repository&lt;br /&gt;deb http://us.archive.ubuntu.com/ubuntu/ edgy main restricted universe multiverse&lt;br /&gt;deb-src http://us.archive.ubuntu.com/ubuntu/ edgy main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Backport repository&lt;br /&gt;# deb http://us.archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse&lt;br /&gt;# deb-src http://us.archive.ubuntu.com/ubuntu/ edgy-backports main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Major bug fix updates&lt;br /&gt;deb http://us.archive.ubuntu.com/ubuntu/ edgy-updates main restricted universe multiverse&lt;br /&gt;deb-src http://us.archive.ubuntu.com/ubuntu/ edgy-updates main restricted universe multiverse&lt;br /&gt;&lt;br /&gt;## Security updates&lt;br /&gt;deb http://security.ubuntu.com/ubuntu edgy-security main restricted universe multiverse&lt;br /&gt;deb-src http://security.ubuntu.com/ubuntu edgy-security main restricted universe multiverse&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Next be sure to open a terminal and run &lt;span style="font-family:courier new;"&gt;sudo apt-get update&lt;/span&gt; to make use of these changes.  Note that this can also be performed by the Synaptic tool (as can the step above for that matter).&lt;/li&gt;&lt;li&gt;For the remainder of this document I will only refer to package names that need to be installed/removed and will not provide the &lt;span style="font-family:courier new;"&gt;apt-get&lt;/span&gt; command.  Feel free to use either &lt;span style="font-family:courier new;"&gt;apt-get&lt;/span&gt; or the Synaptic GUI front-end unless otherwise specified.&lt;/li&gt;&lt;li&gt;If you had video card troubles as I did, you will want to update your video card driver appropriately (you may want to do this regardless).  For me I had to install the "nvidia-glx" package and then run &lt;span style="font-family:courier new;"&gt;sudo nvidia-xconfig&lt;/span&gt;.  Find more info on video driver installations &lt;a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#Graphics_Card"&gt;here&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Some buttons with side buttons do not work correctly in Firefox.  If you want them to work, find the mouse section in &lt;span style="font-family:courier new;"&gt;/etc/X11/xorg.conf&lt;/span&gt; and add the following two lines per the instructions &lt;a href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#Activate_side-mouse-buttons_in_FireFox"&gt;here&lt;/a&gt;:&lt;blockquote&gt;&lt;/blockquote&gt;&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;Option  "Buttons" "7"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Option  "ButtonMapping" "1 2 3 6 7"&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;The next thing I did was set my clock to sync to &lt;span style="font-family:courier new;"&gt;pool.ntp.org&lt;/span&gt;.  Just right-click on the clock, choose "Adjust Date &amp; Time," check the "Keep clock synchronized with Internet servers" box, then click the "Install NTP support" button.  After that, just uncheck the time servers Ubuntu selected by default and add or check whatever server you want to use.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Since Ubuntu pretty much sucks out of the box for playing any non-open source multimedia format, we need to fix that.  Here's how I did it:&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Install these packages per &lt;a href="https://help.ubuntu.com/community/RestrictedFormats"&gt;this page&lt;/a&gt; (note that I've skipped a few): "gstreamer0.10-pitfdll," "gstreamer0.10-ffmpeg," "gstreamer0.10-plugins-bad," "gstreamer0.10-plugins-bad-multiverse," "gstreamer0.10-plugins-ugly," "gstreamer0.10-plugins-ugly-multiverse." This worked for all the formats I was interested in except WMV.&lt;/li&gt;&lt;li&gt;To fix the lack of WMV, take a look at &lt;a href="https://help.ubuntu.com/community/RestrictedFormats/WindowsCodecs"&gt;this page&lt;/a&gt;.  However, I actually added a new "apt" repository so that I could get updates to this package if newer versions come along (assuming they update that repository in the same manner as the others that is).  I ran the following two commands from &lt;a href="http://medibuntu.sos-sts.com/repository.php"&gt;this page&lt;/a&gt; (keep in mind the commands are likely wrapped but each is only one line long):&lt;/li&gt;&lt;/ul&gt;&lt;blockquote style="font-family: courier new;"&gt;wget -q http://medibuntu.sos-sts.com/repo/medibuntu-key.gpg -O- | sudo apt-key add -&lt;/blockquote&gt;&lt;blockquote style="font-family: courier new;"&gt;sudo wget http://medibuntu.sos-sts.com/sources.list.d/edgy.list -O /etc/apt/sources.list.d/medibuntu.list&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Now you must run "&lt;span style="font-family:courier new;"&gt;sudo apt-get update&lt;/span&gt;" and/or press the "reload" button in Synaptic to update the list of packages available.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Install the "w32codecs" package that should now be available (keep in mind the legality of this package is somewhat suspect).  After this, make sure WMV videos play now.  If they do not (they did not for me) then run the following two commands:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;rm -rf ~/.gstreamer-0.10&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;gst-inspect-0.10&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;li&gt;An alternative to the above section is to install "mplayer."  I used this on Kubuntu 6.06 and was mostly happy with it, but I like the Totem interface better and am hoping it works better for me.&lt;/li&gt;&lt;li&gt;Finally, what about DVD playback?  First off, you'll need to get the "libdvdcss2" package to play many DVDs.  Again, this package is of questionable legality so download/install at your own risk.  This is found in the same "apt" repository we added for the "w32codecs" package.  After installing this package, you have a &lt;a href="https://help.ubuntu.com/community/RestrictedFormats/PlayingDVDs"&gt;few options&lt;/a&gt; for playback:&lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;ol&gt;&lt;li&gt;Stick with "Totem-gstreamer" (which is what we've been using up to now).  Problem with this is that the current version doesn't handle the DVD menus or alternate audio tracks (it just starts playing the movie with no options).  It also did not play back in Dolby Digital 5.1 on my system.&lt;/li&gt;&lt;li&gt;Switch to "Totem-xine".  Note that this requires you to remove "Totem-gstreamer" and you will likely have playback issues with other media formats (when I switched it broke everything except for WMV).&lt;/li&gt;&lt;li&gt;Install "Ogle" or "Mplayer."  I've tried all of the above and don't like any of my options, but I'm also running into sound issues right now and after wasting two nights on the problem I'm done with it for now.  Besides, I don't really watch DVDs on my PC anyway.  So I'm just going to deal with stereo audio and no menu support with "Totem-gstreamer" for now.&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;Next on the list is Adobe's Flash Player.  You have a few options here:&lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;ol&gt;&lt;li&gt;Install "flashplugin-nonfree" and Firefox will have the Flash 7 plugin.&lt;/li&gt;&lt;li&gt;Go to &lt;a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"&gt;Adobe's Flash Player site&lt;/a&gt; and download the installer for the current version (9.0.31.0 as of this writing) and use Adobe's install script.&lt;/li&gt;&lt;li&gt;Add the "Backports" repository to your &lt;span style="font-family:courier new;"&gt;/etc/apt/sources.list&lt;/span&gt; file by uncommenting the two lines under the "Backports repository" section (see up above) and then after updating "apt" and/or Synaptic, install "flashplugin-nonfree" which should be on version 9 now instead of 7.&lt;/li&gt;&lt;li&gt;Go to &lt;a href="https://help.ubuntu.com/community/RestrictedFormats/Flash"&gt;this page&lt;/a&gt; if you don't like my instructions.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;Speaking of Adobe, you may want Adobe Acrobat Reader and the web browser plugin unless you are happy with Evince (I don't like its interface).   Install "acroread," "acroread-escript," "acroread-plugins," and "mozilla-acroread" to get Acrobat Reader.&lt;/li&gt;&lt;li&gt;I'm also not a fan of the "Gnome-snapshot" tool (listed as "Take Screenshot" under "Accessories" menu) so I installed "ksnapshot" and its dependencies and just hid "Take Screenshot" because it is part of the "gnome-utils" package and it includes other tools that I actually find useful.  Plus "gnome-utils" is tied to the "ubuntu-desktop" package anyway and I obviously don't want to remove that.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You'll probably want Java.  Install "sun-java5-plugin" and its dependencies.&lt;/li&gt;&lt;li&gt;You may want to install the core Microsoft fonts package ("msttcorefonts") and set Firefox up to use them unless you want to be a big stud and shun all the sites that use Microsoft fonts on them. After installing the package, you can set Firefox up as it is by default on a Windows installation.  It should look as follows:&lt;/li&gt;&lt;blockquote&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_eBTPF_obcqI/RcKidy7l14I/AAAAAAAAABI/Jt0io4GeFDk/s1600-h/firefox_fonts.png"&gt;&lt;img style="cursor: pointer;" src="http://1.bp.blogspot.com/_eBTPF_obcqI/RcKidy7l14I/AAAAAAAAABI/Jt0io4GeFDk/s320/firefox_fonts.png" alt="" id="BLOGGER_PHOTO_ID_5026758766870517634" border="0" /&gt;&lt;/a&gt;&lt;/blockquote&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;BitTorrent client: I prefer Azureus to the "gnome-btdownload" client.   Note that I did not use the "Azureus" package from the "apt" repositories to install because it tries to grab all sorts of older Java packages (older than the version we installed earlier) and it caused me issues on Kubuntu 6.06 likely because of multiple versions of Java being installed.  So, do this instead:&lt;br /&gt;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Go to &lt;a href="http://azureus.sourceforge.net/"&gt;azureus.sourceforge.net&lt;/a&gt; and download the latest tar.bz2 file for Linux to your home directory.&lt;/li&gt;&lt;li&gt;From the terminal and in your home directory, run the following command (all one line): &lt;span style="font-family:courier new;"&gt;sudo tar jxvf Azureus_&lt;span style="font-style: italic;"&gt;version&lt;/span&gt;_linux.tar.bz2 -C /opt/&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Next, run: &lt;span style="font-family:courier new;"&gt;sudo gedit /usr/share/applications/azureus.desktop&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Add the following text to the new file:&lt;/li&gt;&lt;/ul&gt;&lt;blockquote style="font-family: courier new;"&gt;[Desktop Entry]&lt;br /&gt;Name=Azureus&lt;br /&gt;Comment=Java BitTorrent Client&lt;br /&gt;Exec=/opt/azureus/azureus&lt;br /&gt;Icon=/opt/azureus/Azureus.png&lt;br /&gt;Terminal=false&lt;br /&gt;Type=Application&lt;br /&gt;Categories=Application;Network;&lt;br /&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Now you should see the "Azureus" shortcut under the "Internet" menu.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;I like to use an application to store my web usernames/passwords and have settled on KeePassX (&lt;a href="http://keepassx.sourceforge.net/"&gt;keepassx.sourceforge.net&lt;/a&gt;).  It appears to be in the Ubuntu repositories now, so simply install the "keepassx" package.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Install Wine--If you don't know what Wine is, check it out &lt;a href="http://www.winehq.com/"&gt;here&lt;/a&gt;.  I need it for one app I use time-to-time that is Windows-only.  You can simply install the "wine" package from the Ubuntu repositories or add the Wine HQ repository and get updates directly from the Wine team.  I chose the latter since they are more likely to stay the most up-to-date.  Just run the following commands that were taken from &lt;a href="http://www.winehq.com/site/download-deb"&gt;here&lt;/a&gt; (again, keep in mind the commands are likely wrapped but each is only one line long):&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/edgy.list -O /etc/apt/sources.list.d/winehq.list&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;ul&gt;&lt;li&gt;Now just run &lt;span style="font-family:courier new;"&gt;sudo apt-get update&lt;/span&gt; and/or reload Synaptic and install the "wine" package.&lt;/li&gt;&lt;li&gt;After installation, run the "winecfg" command to configure Wine before using.  See the &lt;a href="http://www.winehq.com/site/documentation"&gt;Wine documentation page&lt;/a&gt; for more information on how to use Wine.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;Now that the apps I use are installed, I typically hide the ones I don't use from the menu since all the included apps seem to be tied to the "ubuntu-desktop" package.  So far this includes (formatted as &lt;span style="font-style: italic;"&gt;package name&lt;/span&gt; / &lt;span style="font-style: italic;"&gt;friendly menu name&lt;/span&gt;):&lt;/li&gt;&lt;ul&gt;&lt;li&gt;evince / Document Viewer&lt;br /&gt;&lt;/li&gt;&lt;li&gt;gnome-screenshot / Take Screenshot&lt;br /&gt;&lt;/li&gt;&lt;li&gt;gnome-btdownload / BitTorrent&lt;br /&gt;&lt;/li&gt;&lt;li&gt;ekiga / Ekiga Softphone&lt;br /&gt;&lt;/li&gt;&lt;li&gt;evolution / Evolution Mai&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;That's it for now.  If you see any errors or broken links, please let me know or leave a comment as such so I can fix it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-5713135153469936733?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/5713135153469936733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=5713135153469936733&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/5713135153469936733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/5713135153469936733'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/01/ubuntu-610-build-doc_27.html' title='Ubuntu 6.10 Build Doc'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_eBTPF_obcqI/RcKidy7l14I/AAAAAAAAABI/Jt0io4GeFDk/s72-c/firefox_fonts.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8394935270705642239.post-1030880530612603882</id><published>2007-01-23T21:22:00.000-05:00</published><updated>2007-01-23T22:11:32.097-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posts'/><title type='text'>First Post</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.chicagobears.com"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 96px; height: 96px;" src="http://2.bp.blogspot.com/_eBTPF_obcqI/RbbODC7l10I/AAAAAAAAAAU/nvwuzsl9A5Q/s320/bears.jpg" alt="" id="BLOGGER_PHOTO_ID_5023428986100111170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;So here's my first post.  I have nothing in particular to say right now but I needed to get something on here.  Read the "About This Blog" section to find out why I bother with this nonsense.  Oh, I almost forgot...GO BEARS!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8394935270705642239-1030880530612603882?l=minushumanblog.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://minushumanblog.blogspot.com/feeds/1030880530612603882/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8394935270705642239&amp;postID=1030880530612603882&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/1030880530612603882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8394935270705642239/posts/default/1030880530612603882'/><link rel='alternate' type='text/html' href='http://minushumanblog.blogspot.com/2007/01/first-post.html' title='First Post'/><author><name>AC</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_eBTPF_obcqI/RbbODC7l10I/AAAAAAAAAAU/nvwuzsl9A5Q/s72-c/bears.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
