Skip to main content

Painless Linux Multi-boot Setup

I found this post by carla interesting. This is what is says:

Virtualization, especially with nice virtualizers like VirtualBox and KVM, makes it easy to run multiple guest operating systems and not have to hassle with rebooting, like you do with a multi-boot setup. But I still favor multi-booting for testing new Linux distributions. There are fewer hassles with networking and file-sharing, and when there are problems I don't have to figure out if it's something weird with the VM.

The common wisdom is to have a shared home directory in a multiboot setup, but this has its own set of potential problems because it mixes data files and configuration files. So when you're trying out different distributions, your desktop settings may not translate gracefully across all of them. So what's the answer?

The answer is simple: create a separate data partition, and let every distro that you install have its own unique ~/home for your dotfiles. You'll jump through a couple of extra hoops to make your data directory accessible across all of your installed Linuxes, but it's no big deal, and it's easier than trying to make your dotfiles work across multiple distros and desktop versions.

Your data directory has to go somewhere other than ~/home. I put it on its own partition or on a separate hard drive. You could even use a nice USB stick.

You must start from already having at least one Linux installed. In this example I will use the partition (block device) /dev/sda5 for data storage. GParted and Parted are very nice for graphical partitioning and creating filesystems.

Once the partition is created and formatted with a filesystem, mount it temporarily in your own home directory. To do this first create a mountpoint:
$ mkdir mydata
Then you'll need rootly powers to mount your new partition there:
$ su
# mount /dev/sda5 /home/carla/mydata
Ubuntu's sudo command works too, for this and all the root commands in this article:
$ sudo mount /dev/sda5 /home/carla/mydata
Now you need to give yourself ownership of this directory, since root owns it:
# chown -R carla:carla /home/carla/mydata
Now you should have full read/write access to this directory as your ordinary unprivileged user, and should be able to copy files to it.

The final step, since this is going to function as your home data files directory, is to have it mount automatically at boot. We'll do this by editing good old /etc/fstab. Add a line like this to /etc/fstab, using your own filenames and filesystem type:
/dev/sda5 /home/carla/mydata ext3 user,defaults 0 0
I prefer to use the block device UUIDs since those are unique and can't be messed up by hotplug or udev or anything else, especially for a USB stick. Find your UUID with the vol_id command, which requires rootly powers:
# vol_id --uuid /dev/sda2
40295806-448b-4fdf-9ce8-5f5fc7984c9b
Then use the UUID in place of /dev/sda5, or whatever your block device is, like this:
UUID=40295806-448b-4fdf-9ce8-5f5fc7984c9b /home/carla/mydata ext3 user,defaults 0 0
Now every time you boot up your new data directory will be there all ready to use.

Now all you need to do is create the same mountpoint and use the same line in /etc/fstab in every Linux that you install on your multiboot machine, and your data directory will appear in your home directory in every one of them. Your dotfiles will be unique to each Linux, so you won't have any configuration conflicts.

Tips: use the mount command with no options to see your mounted filesystems and what block devices they are on. umount manually unmounts a filesystem. If you get a "device busy" error with umount it means something is reading the filesystem, like your file manager. Close any documents or change your file manager to a different directory. lsof mydata, or whatever your directory name, lists any open files.

Comments

Popular posts from this blog

Howto Install BSNL wll clarity phone in Ubuntu

Hello linixians, Failed to access internet through your bsnl clarity phone.... Here is an easy way 1. Just download this executable..... bsnlclarity and save it to your home folder. 2. Connect your phone to the system with the usb cable. 3. Now at terminal type $ sudo ./bsnlclarity You will be asked for your username and password for accessing the internet enter it ..... now start surffing Ctrl+C to stop

Blank (or black) screen after boot process in Ubuntu

You may encounter a blank screen after boot in ubuntu. This will be due to some update of certain packages. Follow these steps to correct the problem. 1. Select recovery mode from the boot menu. 2. Select login as root from the menu in recovery mode. 3. Type this at the prompt # sudo apt-get remove xorg-driver-fglrx # sudo dpkg-reconfigure -phigh xserver-xorg 4. Exit # exit 5. Now select Resume normal boot from the menu. Every thing should be OK by now. Please comment about your experience.

gtalx: Howto Gtalk in ubuntu ( google talk )

Did you fail to use " gtalk in ubuntu " ... Now you can chat and talk to your gmail buddies in ubuntu... 1. check for gtk2.0 and qt4 $ sudo apt-get install libgtk2.0-dev $ sudo apt-get install libqt4-dev libogg-dev libtheora-dev $ sudo apt-get install libsdl-dev libavcodec-dev libswscale-dev $ sudo apt-get install libexpat-dev libraw1394-dev libvorbis-dev $ sudo apt-get install libgsm1-dev  libspeexdsp-dev libmediastreamer0-dev libortp-dev 2. Remove 'pulse audio sound server' Open synaptic package manager and remove pulse audio 3. "Download gtalx" from here Dowload it here 4. Extract the file.... $ tar -zxvf 0.0.4.tar.gz 5. Get into the directory.... $ cd 0.0.4 and then... $ sudo chmod u+x make $ ./make $ sudo ./make install 6. Enjoy..... Please comment about your installation(whether it was a success or not....) Take gtalx from Applications > Internet > gtalx Enter your gmail login information..and click connect...