- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Help with grub
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
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
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
03-04-2009 11:19 AM
03-04-2009 11:19 AM
I am trying to load grub with the following steps:
grub> root (hd0,3) (where i put my files)
grub> kernel /vmlinuz root=/dev/sda3
and I get:
Error 15: File not found
any ideas?
Thanks
Kathy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 12:05 PM
03-04-2009 12:05 PM
Re: Help with grub
grub> cat /boot/grub/device.map
(fd0) /dev/fd0
(hd0) /dev/sda
grub> cat /boot/grub/grub.conf
Error 15: file not found
grub> cat /boot/grub/menu.lst
Error 15: file not found
thanks again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 12:32 PM
03-04-2009 12:32 PM
Solution/dev/sda3 is where your kernel resides, or your root filesystem (or both)? Is '/boot' mounted on a separate partition than '/'?
Typically /boot is on its own partition at /dev/sda1. In that case, you would do:
grub> root (hd0,0)
grub> setup (hd0)
^ this installs grub information to the disk's MBR.
If your kernel is actually on /dev/sda3 (as well as your root filesystem), you may want to do:
grub> root (hd0,3)
grub> kernel /boot/vmlinuz root=/dev/sda3
And to prevent possible conflicts, you could (at the shell prompt (not in grub)):
cd /boot
ln -s . boot
Also, when doing some of the commands in grub, you can hit the 'Tab' key which allows completion. That might help you find your kernel.
HTH, but please reply if you continue to have trouble. Please also provide your fstab and a description of the contents of /dev/sda3.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:16 PM
03-04-2009 01:16 PM
Re: Help with grub
the linux kernel is on 3rd partition and windows is on the first, so when i do this:
grub> root (hd0,3)
grub> kernel /boot/vmlinuz root=/dev/sda3
i get error 15: file not found, and
find /vmlinuz gives me the same error.
and reboot, brings me back to grub.
any suggestions would be appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:19 PM
03-04-2009 01:19 PM
Re: Help with grub
Could you try doing:
grub> root (hd0,3)
grub> kernel /
Does anything display after hitting the TAB key a couple times?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:22 PM
03-04-2009 01:22 PM
Re: Help with grub
grub> kernel /
Possible file are: bin dev etc lib mnt opt tmp sys var usr boot home proc sbin root .reiserfs_priv pentest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:25 PM
03-04-2009 01:25 PM
Re: Help with grub
grub> kernel /boot/
?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:29 PM
03-04-2009 01:29 PM
Re: Help with grub
grub> kernel /boot/grub/
possible files are: default device.map e2fs_stage1_5 jfs_stage1_5 xfs_stage1_5 minix_stage1_5 fat_stage1_5 stage1 stage2 installed-version reiserfs_stage1-5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:32 PM
03-04-2009 01:32 PM
Re: Help with grub
How did you install this system? What events led up to this?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:37 PM
03-04-2009 01:37 PM
Re: Help with grub
and yes i do have the live cd. what happened is that my co-worker installed dual boot linux on this machine and then decided he likes grub better than lilo so installed the grub using
appget install grub
I personally am not familiar with that. I'm also new to linux, so your help is very much appreciated.
regards,
kathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:40 PM
03-04-2009 01:40 PM
Re: Help with grub
thanks
Kathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 01:48 PM
03-04-2009 01:48 PM
Re: Help with grub
How the LiveCD works is very dependent on your Linux distribution. Just set CDROM as the boot device in the BIOS with the disc installed, and it should get you to a place where you can mount and chroot into your system.
Once you can get into your existing system you'll want to reinstall your kernel. It should put the necessary files in '/boot/' (vmlinuz, initrd, etc).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2009 02:58 PM
03-04-2009 02:58 PM
Re: Help with grub
Thank you for all your help. I was able to boot the linux.