Installing GRUB in USB Flash Drive
Posted by mypapit on 29 Jan 2006 in Open Source, Tips & Guides
|
|
GRUB (GRand Unified Boot) loader is a boot loader for multiple operating system. It is one of the most popular bootloader for GNU/Linux operating system (the other is LILO). GRUB flexibility and easy-to-configure boot parameter has made it the default choice for most of GNU/Linux distros.
This article highlights yet another GNU GRUB usefulness in booting GNU/Linux inside a portable USB Flash drive : Installing GRUB on a USB flash memory key
Keep updated with the latest posts, be a part of over 1,000 subscribers! :
Subscribe to your email
You might also want to read...
- How to Boot Linux from USB Drive
- Ubuntu 10.04 fix for USB Drive not mounting on pc with Floppy Drive
- My experience with AMD decTOP computer running on Android
- How to use rsync to backup and synchronize files to USB drive
- How to add “Send To” removable USB drive in GNOME
- Create Ubuntu Live USB Drive easily with uSbuntu
- Portable Pidgin Instant Messenger (Windows)


March 9th, 2006 at 4:46 pm
[...] [...]
April 21st, 2006 at 8:26 pm
Seems like a dead/broken link above
this works (maybe the same article)
http://www.freesoftwaremagazine.com/articles/grub_intro/
April 21st, 2006 at 8:45 pm
Thanks LGee, I’ve changed the url
March 14th, 2007 at 9:07 pm
[...] http://lists.debian.org/debian-user/2001/09/msg00968.html (gefunden von exalead.de) Thread Index] Re: Bootloader with USB support Subject: Re: … I wonder how hard it would be to port the basic usbkbd part of the Linux kernel to GRUB . 28 ) * Installing GRUB in USB Flash Drive : mypapit gnu/linux blog QCheck: [...]
July 20th, 2011 at 2:18 pm
Installing grub in a flash drive:
Execute the commands that follow as ROOT
user@user-pc $sudo -s
[sudo] password for user:*******
(*****) is your password,
then,
1)Use fdisk -l to find the mount point of the drive
2)On my computer the flash drive is mounted on /dev/sdb1
3)root@user-pc:# mount /dev/sdb1
4)mount –bind /proc /mnt/proc
5)mount –bind /dev /mnt/dev
6)mount –bind /sys /mnt/sys
7)chroot /mnt
8)update-grub2
9)grub-install /dev/sdb
hope that helps