Search This Blog

Labels

adobe (1) android (3) apache (3) aviation (1) bash (2) chrome (2) composer (1) cookery (3) dev (2) dodanperks (1) extensions (1) facebook (2) firefox (1) git (2) grafana (1) guzzle (1) headaches (11) htaccess (1) html5 (2) jquery (2) lamp (1) life hacks (10) linux (28) mysqli (2) native (1) opera (2) php (10) railfanning (1) reactjs (3) reactnative (1) servers (11) sinhala (1) smartphones (2) snap (1) sound (1) tech (22) troubleshoots (4) ubuntu (29) unicode (4) virtualbox (1) wamp (2) web (11) windows (4) wordpress (3) youtube (2) කෑම (3)

Monday, 14 July 2014

Linux 3: GRUB, dual boot


LILO GRUB (Grand Unified Bootloader)
16 boot selections unlimited
can't boot from network can boot from network
has to be rewritten again dynamically configurable

Supports Logical Block Address Mode modern BIOS can access more than 8GB of disk, grub can access all of it

Can run from or install into any device

can decompress OS images before boot

replaces default MBR 512 bytes primary boot loader and partition table

works in stages

has own notation

Grub has it's own notation,
hd - hard drive
fd - floppy disk
cd - CD - ROM

eg: (hd0,1) First hard drive second partition

(It's to say that GRUB don't discriminate among IDE, SCSI, primary or logical)

default=0
timeout=30
splashimage=(hd0,0)/grub/spash.xpm.gz


#Linux
title Linux
root(hd0,3)
kernel /boot/vmlinuz26 root=/dev/hda4 ro

# (1) Windows
title Windows XP
rootnoverify (hd0,0)
makeactive
chainloader + 1

No comments:

Post a Comment