Table of Content

This is a four-parts article. There are few sections here.

Supplementary Article for BSD.

Where to Discuss?

This is a remake of my facebook note with the same title.

Why stay with one distro (linux distribution)?
Let’s play with multiboot.

In this example I’m using four OS

Win7 + Debian + Kali + Arch

Multiboot: Cover

Choose your Distro

Before trying any new Distro,
consider Live DVD/USB before making decision.

VM would also help for temporary solution.
But you will feel more like home using multi boot solution.

Windows user?

If you are coming from Windows, you might be familiar with this image.

Let’s start with this example.

Multiboot: Ease-us Partition

Please prepare before installing linux.

  • Continuous free space in EXTENDED partition

  • MBR type should be BASIC, this type is more flexible than DYNAMIC.

  • Disable UEFI if you are using Win 8.

To rearrange MS Windows partition, you can use

  • Easeus Partition Manager.: http://www.filehippo.com/download_easeus_partition_master_home/

Note: I have never tried this with Windows 8.

Caution: While installing, choose largest continuous space, and DO NOT choose ENTIRE SPACE, as it will wipe your Windows entirely.

Which to install first

It is easier to install windows first, then Linux.
But it’s okay to install linux first, then windows.
There’s a trick for this, but the scope is outside of this article.

Tips: Linux learning stage

With Dual boot, Windows + Linux

  1. Download ISO burn to DVD, or USB

  2. Backup your important data.

  3. Prepare your Partition. Easeus is a nice tool. 10 GB would be enough. 20 GB better. 60 GB luxury.

  4. Install, follow the step. Click. Click. Click.

  5. Now you have dual-boot. Win 7, and Ubuntu

  6. First step to linux, have fun.

  7. Try some DE: KDE, XFCE, LXDE, Cinnamon.

  8. Experiencing Command line. Read manual. # man man

  9. You don’t need to erase your windows. But at this stage you don’t want to go home through windows.

Partition Structure

This my partition structure in my computer,
just in case you need some example.

Multiboot: GParted sda

Set-up as multi boot system,

  • (0) /dev/sda (MBR): GRUB2

OS Available

  • (1) /dev/sda1: C:> Windows in primary

  • (2) /dev/sda8: Debian Linux

  • (3) /dev/sda7: Kali Linux

  • (4) /dev/sda10: Arch Linux

The other part contain

  • (5) /dev/sda9: Linux Swap

  • (6) /dev/sda5: D:> NTFS Partition

  • (7) /dev/sda6: E:> FAT32 Partition

The only primary partition is (/dev/sda1)
While others (5-10) belong to extended (/dev/sda2)

Multiboot: cfdisk

How do I keep my Windows Recovery Partition safely?

It is a matter of Primary and Logical Partition.
So my answer is, it should work on Primary Partition.

  1. Windows (and Recovery) should be placed on Primary Partition.

  2. Linux is very nice, any distribution could be placed in Logical Partition. Swap also ini Logical.

  3. GRUB (boot loader) should be placed in MBR (master boot record).

  4. An HDD may have four (Primary and Extended) Partition. An extended partition can have many Logical Partition.

So a partition can be rearranged to something similar like this, but order is not neccesary:

  • Primary: /dev/sda1 Windows Recovery

  • Primary: /dev/sda2 Windows

  • Extended: /dev/sda3

Bonus: Post Install: fstab

This section does not really related with multiboot, but rather a file system or disk management.
The /etc/fstab for that sample partition scheme could be arranged just like this:

(Debian/ Kali)

># pico /etc/fstab

OR

(Ubuntu)

 $ sudo nano /etc/fstab

OR

(Ubuntu)

 $ gksu gedit /etc/fstab

Multiboot: /etc/fstab

For more information you can

 $ man fstab
 $ man mount

What’s Next

Consider continue reading [ Multiboot: Partition Schema ].