- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- help with grub on proliant 1600
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
Forums
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
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
тАО04-25-2003 07:18 PM
тАО04-25-2003 07:18 PM
help with grub on proliant 1600
grub-install /dev/sda
/boot/grub/device.map:11: error: Bad device number
Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install'.
(fd0) /dev/fd0
(hd0) /dev/sda
(hd1) /dev/sdb
(hd2) /dev/sdc
(hd3) /dev/sdd
(hd4) /dev/sde
(hd5) /dev/sdf
(hd6) /dev/sdg
(hd7) /dev/sdh
(hd8) /dev/sdi
(hd9) /dev/sdj
output of df:
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 3.6G 3.2G 274M 93% /
/dev/sda1 38M 16M 20M 43% /boot
Any idea, why grub fail to install. BTW the what key stroke do I hit to get into the Bios Setting for Compac PC? F10? Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-26-2003 01:32 AM
тАО04-26-2003 01:32 AM
Re: help with grub on proliant 1600
But for Grub, I have no idea. I own a Proliant 1500 with Debian and Lilo, and never tried Grub, so it's not easy for me to help you. What have you for hard disks ? Array ? or singles scsi drives ?
You can maybe check this link, about Linux and Proliant 1500. It's not 1600, but can be similar ! : http://www.joelschneider.net/compaq_proliant_1500_debian_potato.html
Have fun !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2003 07:08 AM
тАО05-01-2003 07:08 AM
Re: help with grub on proliant 1600
grub
root (hd0,0)
setup (hd0)
This sets up grub as the default bootloader. From there, I put my various linux boot sections in the menu.lst file and add in one for the compaq system partition like so:
title=Linux
root (hd0,0)
kernel hd0,0)/vmlinuz root=/dev/cciss/c0d0p3
initrd (hd0,0)/initrd.gz
title=Compaq System Partition root (hd0,2)
chainloader +1
Note that I'm using devfs, and the cciss driver. Under those conditions, at boot time when grub is looking it will find the driver at the above path, even though once the system boots if you go through that structure you'll find /dev/cciss/disc0/part3. If you're not setup this way that might not be the correct root path for you to put in.
Since I built cciss as a module I also had to make an initrd for loading it at boot time.
Oh, and the root= goes on the same line as kernel. (That's what the \ means at the end of the kernel line above...but just in case someone reading this might not be familiar with that syntax I wanted to clarify it.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2003 05:12 AM
тАО05-27-2003 05:12 AM
Re: help with grub on proliant 1600
have you tried rebooting ? Don't you get into the grub menu ?
The map looks OK.
Don't know why it complains about the device map. It might be OK though.
Rgds Jarle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-27-2003 08:03 AM
тАО05-27-2003 08:03 AM
Re: help with grub on proliant 1600
grub-install --force-lba /dev/sda.
Could fix things if your BIOS doesn't anounce to support lba.
hth
J