Monday, August 15, 2011

Dual Boot Windows and Ubuntu (with Ubuntu installed first)

I use my laptop for a number of purposes, and gaming is not one of them, and it works just fine with Ubuntu 11.04 as the sole OS. However, I recently decided to let go of my desktop and realized my laptop was not ready as a complete replacement yet. Now, I had two options : installing Windows on a virtual machine using VirtualBox or setting up a dual boot. The first is a very good option, especially if you have enough RAM and a decent processor; and it also has the advantage of switching between the OS a breeze. However, with my limited resources, I settled on the second option.

The easiest way to set up a dual boot on a computer with Windows already installed is by Wubi. Setting up a dual boot on computer with Ubuntu installed is a little more complicated than that.


Here is what you will need:
1. Windows ISO OR Windows Installation CD/USB
2. Ubuntu ISO OR Ubuntu Live CD/USB
3. USB Drive
4. UNetbootin
Note: If you wish to install Windows 7, you can also use A Bootable USB to burn the ISO. It needs a Windows host, though.

Step1. Download the Ubuntu ISO and UNetbootin. The installation instructions for UNetbootin for both Windows and Linux are here. You may skip the manual download of the Ubuntu ISO as UNetbootin can also do the same for you. It is simply a matter of choice.

Step2. Run UNetbootin. Select Diskimage>ISO and enter the path for the Ubuntu ISO file. Alternatively, you may download the distribution of your choice directly from the internet. Then Select USB Drive as the Type and sdbX (where X is usually 1) as the Drive. Click OK.



Step3. Now, you need to have your partitions in place. With Ubuntu as the sole OS, there would typically be two partitions - Ubuntu Installation Partition and Swap. You would need to resize the Ubuntu partition using GParted to make space for a Windows installation - you can only do this using a Ubuntu Live CD/USB. Select the Try Ubuntu option and go to System>Administration>GParted to make the partitions.


The Ubuntu partitions are typically in ext3 or ext4. Windows and other shared partitions should be NTFS. For my computer, I have set up two 30 GB partitions for Ubuntu and Windows installations, and another 80 GB for the common data - Dropbox, Music, Documents, etc. The other 5 GB is in Swap.

Step4. Repeat the steps 1 and 2, with the Windows ISO instead of Ubuntu ISO. The size of the USB drive used in this step should be at least 4 GB.

Important: If you are just overwriting the same USB drive used in Step2, remember to copy the Ubuntu ISO in a common drive before proceeding. Windows CANNOT access the Ubuntu filesystem and you may have to re-download the Ubuntu ISO if you do not have a backup.

Step5. Now, restart your computer and ensure that the USB drive is given the highest preference in your boot sequence in the BIOS settings. Boot your computer using the USB drive and install Windows.

Step6. After Windows has been installed, you will realize that you are unable to access the Ubuntu partition. This is because Windows overwrites the MBR. At this point of time,you would require UNetbootin and the Ubuntu ISO again. Repeat steps 1 and 2.

Step7. To restore the MBR, we will make use of a free software called Boot-Repair. Boot your computer using the Ubuntu Live USB. Select the Try Ubuntu option and run the terminal. Type in the following commands in the terminal:

sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update && sudo apt-get install -y boot-repair

Step8. Finally, fire up Boot-Repair and select First Repair and click Apply.


Bingo! The dual boot has been set up successfully on your computer. Now, you can merge your Dropbox, Firefox, Pidgin and Thunderbird profiles between Ubuntu and Windows so that your settings for chat and internet are always synced. The simplest way to do it is to set it up in Windows or relocating the profile from Ubuntu to Windows folder, as Windows cannot access the Ubuntu filesystem.

For Firefox, you can always use Firefox Sync or XMarks to sync all settings between different computers and also the different OS on the same computer. But, sharing a single profile is more convenient and logical for the same computer.

Monday, August 8, 2011

Log into your remote computer (even with a dynamic IP!)

Every now and then, I need to access my remote desktop at home for a variety of reasons - the file I wanted to access is not in my Dropbox folder, the torrent queue needs to be prioritized or just logging in just for the fun of it! Thankfully, there exist a myriad of solutions for this very problem - VNC clients and Microsoft's very own "Remote Desktop". However, we forget a very basic requirement for either of these to work - we need to know the external IP of our remote desktop.

Now, there are a number of options available - most ISPs provide an option for a static IP Internet connection, albeit for monthly premium. It is also possible to do it by registering for DNS services. These services work by installing a client on your remote computer that keeps mapping your IP to a more friendly name like mycomputer.myvnc.com. Although this is quite useful, I personally find it quite tedious because of the hassle of constantly logging into their site and enabling my account - some of the free ones require you to do that periodically. Not to mention, I could never get it to work like it should.

Here is an alternate, simpler and free solution to the problem and it makes good use of Dropbox! Here is what we will need:
- Dropbox
- VNC Server
- Windows Task Scheduler
- wget
- VNC Client


Step1. Install Dropbox your remote computer if you haven't already done that.
http://www.dropbox.com

Step2. Install a VNC Server on you remote computer. You can choose from Tight VNC, Real VNC, and the like.


Step3. Download wget from the link below and save the wget executable file in a Dropbox folder (for e.g. \Dropbox\IP Updater)
http://users.ugent.be/~bpuype/wget/wget.exe

Step4. Create a batch file in your Dropbox folder that runs the following command.
wget -q -O - http://whatismyip.com/automation/n09230945.asp > IP.txt

Step5. Now, open the Task Scheduler and create a task that executes the above batch file every hour.

Step6. Presto! Simply log into your Dropbox account from anywhere in the world and you will be able to keep a tab on the most recent IP of your remote computer.  Use this IP (in the IP.txt file) to log in remotely using Tight VNC/Real VNC client!

Although the above solution works for a Windows machine, it can be tweaked slightly to work for Linux/Mac as well.