<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help with grub in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161307#M50466</link>
    <description>grub&amp;gt; kernel /boot/&lt;TAB&gt;&lt;/TAB&gt;&lt;BR /&gt;grub&amp;gt; kernel /boot/grub/&lt;BR /&gt;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&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 04 Mar 2009 21:29:23 GMT</pubDate>
    <dc:creator>KathyK</dc:creator>
    <dc:date>2009-03-04T21:29:23Z</dc:date>
    <item>
      <title>Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161300#M50459</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I am trying to load grub with the following steps:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; root (hd0,3)   (where i put my files)&lt;BR /&gt;grub&amp;gt; kernel /vmlinuz root=/dev/sda3&lt;BR /&gt;&lt;BR /&gt;and I get:&lt;BR /&gt;Error 15: File not found&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Kathy</description>
      <pubDate>Wed, 04 Mar 2009 19:19:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161300#M50459</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T19:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161301#M50460</link>
      <description>some more information:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; cat /boot/grub/device.map&lt;BR /&gt;(fd0)  /dev/fd0&lt;BR /&gt;(hd0)  /dev/sda&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; cat /boot/grub/grub.conf&lt;BR /&gt;Error 15: file not found&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; cat /boot/grub/menu.lst&lt;BR /&gt;Error 15: file not found&lt;BR /&gt;&lt;BR /&gt;thanks again</description>
      <pubDate>Wed, 04 Mar 2009 20:05:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161301#M50460</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T20:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161302#M50461</link>
      <description>Hey Kathy,&lt;BR /&gt;&lt;BR /&gt;/dev/sda3 is where your kernel resides, or your root filesystem (or both)? Is '/boot' mounted on a separate partition than '/'?&lt;BR /&gt;&lt;BR /&gt;Typically /boot is on its own partition at /dev/sda1. In that case, you would do:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; root (hd0,0)&lt;BR /&gt;grub&amp;gt; setup (hd0)&lt;BR /&gt;^ this installs grub information to the disk's MBR.&lt;BR /&gt;&lt;BR /&gt;If your kernel is actually on /dev/sda3 (as well as your root filesystem), you may want to do:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; root (hd0,3)&lt;BR /&gt;grub&amp;gt; kernel /boot/vmlinuz root=/dev/sda3&lt;BR /&gt;&lt;BR /&gt;And to prevent possible conflicts, you could (at the shell prompt (not in grub)):&lt;BR /&gt;&lt;BR /&gt;cd /boot&lt;BR /&gt;ln -s . boot&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;HTH, but please reply if you continue to have trouble. Please also provide your fstab and a description of the contents of /dev/sda3.</description>
      <pubDate>Wed, 04 Mar 2009 20:32:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161302#M50461</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-04T20:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161303#M50462</link>
      <description>thanks Steven,&lt;BR /&gt;the linux kernel is on 3rd partition and windows is on the first, so when i do this:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; root (hd0,3)&lt;BR /&gt;grub&amp;gt; kernel /boot/vmlinuz root=/dev/sda3&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i get error 15: file not found, and &lt;BR /&gt;find /vmlinuz gives me the same error.&lt;BR /&gt;&lt;BR /&gt;and reboot, brings me back to grub.&lt;BR /&gt;&lt;BR /&gt;any suggestions would be appreciated.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:16:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161303#M50462</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T21:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161304#M50463</link>
      <description>Hey Kathy,&lt;BR /&gt;&lt;BR /&gt;Could you try doing:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; root (hd0,3)&lt;BR /&gt;grub&amp;gt; kernel /&lt;HIT tab="" key=""&gt;&lt;BR /&gt;&lt;BR /&gt;Does anything display after hitting the TAB key a couple times?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/HIT&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:19:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161304#M50463</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-04T21:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161305#M50464</link>
      <description>this is the result:&lt;BR /&gt;grub&amp;gt; kernel /&lt;TAB&gt;&lt;BR /&gt;Possible file are: bin dev etc lib mnt opt tmp sys var usr boot home proc sbin root .reiserfs_priv pentest&lt;BR /&gt;&lt;/TAB&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:22:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161305#M50464</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T21:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161306#M50465</link>
      <description>how about:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; kernel /boot/&lt;TAB&gt;&lt;BR /&gt;&lt;BR /&gt;?&lt;/TAB&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:25:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161306#M50465</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-04T21:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161307#M50466</link>
      <description>grub&amp;gt; kernel /boot/&lt;TAB&gt;&lt;/TAB&gt;&lt;BR /&gt;grub&amp;gt; kernel /boot/grub/&lt;BR /&gt;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&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:29:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161307#M50466</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T21:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161308#M50467</link>
      <description>Those are grub files. They should be in '/boot/grub/', not '/boot/'. Is there anyway you can boot to a LiveCD, mount the filesystem and show us what the contents of /dev/sda3 are?&lt;BR /&gt;&lt;BR /&gt;How did you install this system? What events led up to this?&lt;BR /&gt;&lt;BR /&gt;Thanks,</description>
      <pubDate>Wed, 04 Mar 2009 21:32:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161308#M50467</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-04T21:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161309#M50468</link>
      <description>the files are in /boot/grub/&lt;BR /&gt;&lt;BR /&gt;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 &lt;BR /&gt;appget install grub&lt;BR /&gt;&lt;BR /&gt;I personally am not familiar with that. I'm also new to linux, so your help is very much appreciated.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;kathy&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Mar 2009 21:37:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161309#M50468</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T21:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161310#M50469</link>
      <description>Also please list the command to boot into LiveCD.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;Kathy</description>
      <pubDate>Wed, 04 Mar 2009 21:40:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161310#M50469</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T21:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161311#M50470</link>
      <description>In this case, there does not appear to be any kernels installed on that system (since '/boot' is empty other than the 'grub' dir).&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;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).</description>
      <pubDate>Wed, 04 Mar 2009 21:48:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161311#M50470</guid>
      <dc:creator>Steven McCoy</dc:creator>
      <dc:date>2009-03-04T21:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help with grub</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161312#M50471</link>
      <description>Steven,&lt;BR /&gt;Thank you for all your help. I was able to boot the linux.</description>
      <pubDate>Wed, 04 Mar 2009 22:58:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-with-grub/m-p/5161312#M50471</guid>
      <dc:creator>KathyK</dc:creator>
      <dc:date>2009-03-04T22:58:53Z</dc:date>
    </item>
  </channel>
</rss>

