- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Linux Boot Loader
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2003 11:29 PM
тАО05-04-2003 11:29 PM
While installing Red Hat, I did not select the option to activate the "Linux Boot Loader". Now since I want the boot loader to be active, would you be able to indicate the steps? Also, If I want to disable the bootloader, is there anythings needs to be taken into consideration?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2003 11:46 PM
тАО05-04-2003 11:46 PM
SolutionYou can use, GRUP or LILO, if you decide to use lilo, you must edit the file /etc/lilo.conf and write your configuration, then execute lilo command.
To disable the boot loader, enter in windows and issue a fdisk /mbr
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-04-2003 11:52 PM
тАО05-04-2003 11:52 PM
Re: Linux Boot Loader
What's GRUP?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-05-2003 12:37 AM
тАО05-05-2003 12:37 AM
Re: Linux Boot Loader
http://www.gnu.org/software/grub/
The new RH versions lets you to choose between LILO and GRUB
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-05-2003 02:53 AM
тАО05-05-2003 02:53 AM
Re: Linux Boot Loader
it is grub and not grup. the GRand Unified Boot loader.
do you have a boot floppy. boot it thru the floppy and if you want grub, just type grub-install and if it is lilo, then lilo -v after editing the /etc/lilo.conf.
assuming that u have the rpms already installed.
hth
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-05-2003 03:59 PM
тАО05-05-2003 03:59 PM
Re: Linux Boot Loader
Balaji - Appreciate for the commands highlighted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-05-2003 04:00 PM
тАО05-05-2003 04:00 PM
Re: Linux Boot Loader
Balaji - Appreciate for the commands highlighted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-05-2003 04:08 PM
тАО05-05-2003 04:08 PM
Re: Linux Boot Loader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-05-2003 08:04 PM
тАО05-05-2003 08:04 PM
Re: Linux Boot Loader
RPM is the Redhat Package manager. It is the format in which binaries are distributed for a RedHat distro.
So you need to look for the below rpms (i am using RHL 8.0)
and install them.
lilo-21.4.4-20
grub-0.92-7
man rpm for more info.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2003 06:14 AM
тАО05-06-2003 06:14 AM
Re: Linux Boot Loader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2003 02:56 PM
тАО05-06-2003 02:56 PM
Re: Linux Boot Loader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2003 07:49 PM
тАО05-06-2003 07:49 PM
Re: Linux Boot Loader
boot using a floopy drive. or if you have the cd, just start the cd in rescue mode. you might need to mount your root partition and then chroot to it.
assuming that you have installed the lilo rpm,
edit the /etc/lilo.conf to look like this. (this is my config. modify it accordingly)
+++++++++++++++++++++
prompt
timeout=50
default=linux
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
message=/boot/message
linear
image=/boot/vmlinuz-2.4.18-14
label=linux
initrd=/boot/initrd-2.4.18-14.img
read-only
append="root=LABEL=/"
other=/dev/hda5
optional
label=DOS
+++++++++++++++++++++++++++++++++
here the image is my kernel image which you can find in the /boot directory.
the other=/dev/hda5 partition points to the drive on which windows is installed.
note that the boot=/dev/hda points to the master boot record on the device hda. so this will overwrite your existing mbr.
after this run "lilo -v". this will install lilo on your mbr.
and then reboot and voila.
if you still have problems, pls post back with errors. also attach a fdisk -l output if you have problems with lilo.conf
-balaji
ps: it is always a good practice to install dumb OS (read Windows) first and then Linux.