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
тАО12-09-2008 02:56 PM
тАО12-09-2008 02:56 PM
I installed ESXi on additional drive in my server and now I'm struggling with GRUB configuration.
The drive on witch ESXi was installed is /dev/sdb and the /dev/sdb4 partition is described as "boot".
I was trying this:
title ESXi
rootnoverify (hd1,1)
chainloader +1
Unfortunately - no joy.
I'm getting: "Error 21 - selected disk doesn' exist"
Can you help ?
Regards
Peter
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2008 03:45 PM
тАО12-09-2008 03:45 PM
SolutionIt may be a mis-detection of the disk by grub
http://www.linuxquestions.org/questions/linux-software-2/grub-bootloader-spits-out-grub-hard-disk-error-282421/
http://ubuntuforums.org/showthread.php?t=829005
One of these links should do it.
The key issue is figuring out what GRUB sees as far as disks go.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2008 04:16 PM
тАО12-09-2008 04:16 PM
Re: GRUB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2008 04:41 PM
тАО12-09-2008 04:41 PM
Re: GRUB
Probing devices to guess BIOS drives. This may take a long time.
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
I was also trying (hd1,0),(hd1,1),(hd1,2),(hd1,3),(hd1,4)
No joy :(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2008 10:45 PM
тАО12-09-2008 10:45 PM
Re: GRUB
You should first embed the mbr with a boot signature, like this
grub> root (hd0,0)
grub> kernel (hd0,0)/boot/vmlinuz-XX root=/dev/sda1 ro
grub> setup (hd0)
or
grub> setup(hd1)
Hth.