Quicky - how do I remove GRUB?

Soldato
Joined
4 Jan 2004
Posts
20,802
Location
¯\_(ツ)_/¯
I want ti use syslinux instead, and am planning on using Linux Mint 5.


Now Ubuntu offers the option to not install grub while installing, but I couldn't see this option in Mint... So how do I go about removing it?
 
You have to insert your windows CD, reboot go into the recovery console by pressing R and then type fixboot and then fixmbr if i remember corectly.
 
The Internet said:
Using Linux

You can also use dd command from Linux itself (it removes partition table):
# dd if=/dev/null of=/dev/sdX bs=512 count=1

Just remove MBR, without the partition table (see comment below):
# dd if=/dev/null of=/dev/sdX bs=446 count=1

Replace /dev/hdX with your actual device name such as /dev/hda. Use fdisk -l command to find out device name:
# fdisk -lOutput:

Disk /dev/sda: 251.0 GB, 251000193024 bytes
255 heads, 63 sectors/track, 30515 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 30384 243955057+ 83 Linux
/dev/sda3 30385 30515 1052257+ 82 Linux swap
 
Thanks I'll give it a whirl

I'm not using Windows at all,just 1 partition with Linux on for this machine. I just need to remove Grub so I can install syslinux.
 
Last edited:
Depends how quickly you want to remove it really. A strong electro magnet would be the fastest. Otherwise I would just dd it as above.
 
syslinux will be installed on another partition. In other words you can simply add an entry to /boot/grub/menu.lst. That way you can choose which distro to start when you boot. :)
 
Back
Top Bottom