Reboot stuck at GRUB Loading stage2

I am trying to install OEL 5 u 4. I downloaded the .iso image to install it on vmware workstation. I configured it as given in
http://startoracle.com/2007/09/30/so-you-want-to-play-with-oracle-11gs-rac-heres-how/
After installing the package when I hit reboot it's stuck on "Grub Loading Stage 2 .....". I am new to this installation and not sure how to proceed further. Could you please help?

At what step are you talking about? If you are getting a GRUB hang at step #19 from that note then the O/S did not install properly.
1) Delete the virtual disk.
2) Create a new virtual disk with the same characteristics as the original disk.
3) Reinstall the O/S and be sure to put the GRUB bootloader into the MBR.
4) Reboot the VM guest.
During the GRUB booting sequence there is very little software involved and everything must just work even to get far enough to get some reasonable debugging info.
You might have better luck using http://www.virtualbox.org Virtual Box.
Cheers

Similar Messages

  • Oracle Linux 4 hangs after first reboot....@ GRUB Loading stage2

    Hi Linux experts,
    after I installed Oracle Linux 4(on Vmware), I go through the 4 ISO images(that I had burnt to CDs)...After the 4th CD is done, I have to do the first Linux reboot...Linux hangs on
    "GRUB Loading stage2...."
    Any idea how to fix this?
    Thanks.

    Hi,
    I'm using Chan's article to install Linux on top of Vmware. His article is on http://www.oracle.com/technology/pub/articles/chan-bul-vmware.html#2.
    Maybe I missed step 11 of his instructions.....but it says leave the default /dev/sda1...thats what I did.

  • [Resolved] Stuck on "Grub Loading" Screen.

    Hello everyone!
    I have been attempting to set up a dual boot Windows 8/Arch Linux system.
    I have installed Windows 8 and Arch Linux, and I have correctly set up and configured Grub.
    I have been having a very puzzling problem however, which stems from my BIOS settings.
    Whenever I set my boot sequence to "Hard Disk, CDROM" and attempt to boot, my system hangs on the "Grub Loading" screen indefinitely.
    However, when I set the boot sequence to "CDROM, Hard Disk", the system goes to the "Loading Operating System ..." screen, scans the CDROM for bootable partitions, fails to find them (Presumably. No actual error message it outputted), then successfully loads Grub.
    I have searched the web and the wiki for an answer, but because all of my queries are interpreted as changing the boot order of the OSes listed in Grub, I have been unable to find an answer.
    While this is not a critical problem, I wish to have it configured as "Hard Disk, CDROM" because otherwise it adds about 10-15 seconds to the boot time as it has to scan the CDROM before proceeding.
    Can anyone help me with this problem?
    ADDITIONAL INFO:
    I am using AHCI, with three hard drives. Both operating systems are installed to the first one (an SSD), with:
    /dev/sda1 - SYSTEM_RESERVED
    /dev/sda2 - Windows 8
    /dev/sda3 - /boot
    /dev/sda4 - Extended partition (following partitions belong to /dev/sda4)
    /dev/sda5 - /
    /dev/sda6 - /var
    /dev/sda7 - /home
    The other two hard drives simply store data.
    Last edited by indiv0 (2013-12-02 06:44:21)

    Commands I used:
    pacman -S grub-bios
    grub-mkconfig -o /boot/grub/grub.cfg
    modprobe dm-mod
    grub-install --target=i386-pc --recheck --debug /dev/sda
    mkdir -p /boot/grub/locale
    cp /usr/share/locale/en\@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo
    Yes, I am booting in legacy BIOS mode using grub-bios.
    fdisk output:
    Disk /dev/sda: 256.1 GB, 256060514304 bytes, 500118192 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xb61a40eb
    Device Boot Start End Blocks Id System
    /dev/sda1 2048 718847 358400 7 HPFS/NTFS/exFAT
    /dev/sda2 718848 163842047 81561600 7 HPFS/NTFS/exFAT
    /dev/sda3 * 163842048 164366335 262144 83 Linux
    /dev/sda4 164366336 500117503 167875584 5 Extended
    /dev/sda5 164368384 205328383 20480000 83 Linux
    /dev/sda6 205330432 246290431 20480000 83 Linux
    /dev/sda7 246292480 500117503 126912512 83 Linux
    grub.cfg
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="0"
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3ec2db7b-ff67-4aa1-8202-daf71513beea
    else
    search --no-floppy --fs-uuid --set=root 3ec2db7b-ff67-4aa1-8202-daf71513beea
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-3ec2db7b-ff67-4aa1-8202-daf71513beea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 e1698dc0-becc-4ed7-a446-2bd79b337946
    else
    search --no-floppy --fs-uuid --set=root e1698dc0-becc-4ed7-a446-2bd79b337946
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=3ec2db7b-ff67-4aa1-8202-daf71513beea ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux.img
    menuentry 'Arch GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-3ec2db7b-ff67-4aa1-8202-daf71513beea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 e1698dc0-becc-4ed7-a446-2bd79b337946
    else
    search --no-floppy --fs-uuid --set=root e1698dc0-becc-4ed7-a446-2bd79b337946
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /vmlinuz-linux root=UUID=3ec2db7b-ff67-4aa1-8202-daf71513beea ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    ### END /etc/grub.d/20_memtest86+ ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    menuentry 'Windows 8 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-88A85381A8536D26' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 88A85381A8536D26
    else
    search --no-floppy --fs-uuid --set=root 88A85381A8536D26
    fi
    drivemap -s (hd0) ${root}
    chainloader +1
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    Sorry for not including grub-related information. I just thought that it wouldn't be needed considering grub works fine (sees Arch and Windows 8) when the bios boot order is correct, and within VirtualBox (Win 8 host, Arch guest) it also works fine.

  • SUN Storage 7000 stuck on GRUB Stage2

    Hi all,
    after a reboot due to a system stuck the storage stops at "GRUB Loading stage2..." any suggestion?
    Many thanks.
    d.

    Yes the above answer is correct you will need to connect via a the serial port to see the CLI interface. If you connect a monitor
    to the vga port, all you will see once the system is booted is the GRUB words.
    Refer to the install guide here which contains more information on this.
    http://wikis.sun.com/download/attachments/186238602/2010_Q3_2_INSTALL.pdf

  • PCI SATA disk causes GRUB to fail "loading Stage2..."

    Hi,
    I'm setting up a small home server using an old PC.  The motherboard is an Aopen MX46U2-GN.  It has a 40GB IDE HDD and an IDE CD-ROM drive.
    I have bought a new 1TB SATA HDD for data storage, and a PCI SATA adapter card because this motherboard has no SATA ports.  All of the hardware is working, except it is causing a strange boot problem.
    I have a working Arch installation on the IDE drive.  I can boot to this, or to the Arch liveCD or install CDROM in the optical drive.
    However, if I power up the system with the SATA drive connected to the PCI card, it detects everything but hangs with the message "GRUB loading stage2...."
    Powering up without the SATA drive connected is fine - I can then hotplug the SATA drive into the PCI card and it is detected as /dev/sdb.  However, unplugging and replugging the drive every time the machine is rebooted is impractical.
    I believe from Googling that it is related to the order in which the various drives are detected (hd0,0 etc.) and the new PCI card being detected before the IDE devices??
    Question:  How do I fix the GRUB installation so I can boot the machine with the SATA drive connected?
    Thanks in advance

    Hmm... thanks for the advice.
    I think you are correct that the new disk is recognised first and therefore becomes sda for Linux and hd0 for grub.
    Therefore, I changed the Grub menu.lst entries to hd1,0 etc. (from hd0,0).  Booted from CD, chrooted into the partition and reinstalled grub.
    Unfortunately it still doesn't work.
    Strangely, when the new SATA disk is connected, I can't even boot from the CD-ROM!    I get as far as
    Boot from CD : Loading stage2 ....
    before the system hangs.
    Again, if I hotplug the SATA disk after booting from either the CD or the old HDD, I have no problem.  Weird.

  • My MacBook Pro is stuck on the loading screen and sounds as if its about the take off?!

    Hi everyone. About 3 hours ago my laptop suddenly became very unresponsive and began freezing a lot. I cleared the cookies on Firefox, but the problem carried on so I tried rebooting. Now it has been stuck on the loading screen for about half an hour, sounding like a rocket ready to take off.. I brought it second hand and I don't have an installation CD, at least if I do it's not here at uni with me anyway.. Any ideas?! Thanks

    Not knowing what your os is very difficult regarding offering troubleshooting solutions.  Most if not all the system discs are machine specific. 
    Replacement System Discs can be obtained from Apple's Customer Support - US (800) 767-2775 for a nominal fee. You'll need to have the model and serial number of your Mac available. 
    If you're not in the US, you may need to go through the regional Apple Store that serves your location to find the contact number - http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html
    Mac OS X versions (builds) for computers 

  • New install, hangs at "GRUB Loading ..."

    I just finished installing Arch on a new system, following the beginners guide, and everything went fine, until I restarted the system.
    It shows "GRUB Loading ...", and a blinking cursor, and nothing else. The GRUB menu never comes up.
    Has anyone encountered this before?
    I'd say I have a fairly simple setup:
    /boot /dev/sda1 ext2 300MB
    / ext4 /dev/sda2  120GB
    I made the partitions with fdisk, so I have the "old" MBR partition table.
    I have installed grub with:
    (boot the install medium)
    loadkeys hu
    mount /dev/sda2 /mnt
    mount /dev/sda1 /mnt/boot
    arch-chroot /mnt
    pacman -S grub-bios
    grub-install --target=i386-pc --recheck /dev/sda
    (Grub install finishes, says no errors detected)
    cp /usr/share/locale/en\@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo
    grub-mkconfig -o /boot/grub/grub.cfg
    exit
    umount /mnt/boot
    umount /mnt
    reboot
    And then I'm back to the hanging BIOS Loading screen.
    Edit:
    There were some pieces of information regarding an encrypt root drive, I have retried the install without encrypting the root drive, and the problem perists.
    Edit2:
    Syslinux boots it just fine.
    Last edited by WishCow (2012-10-02 12:32:55)

    Yes, 2 MiB if GPT is used. That's what I meant. And don't use "/dev/sda1" or "/dev/sda2" when installing GRUB. You want to install to the MBR, so use /dev/sda.
    https://wiki.archlinux.org/index.php/Be … bootloader
    Also: https://wiki.archlinux.org/index.php/Be … partitions
    Pay attention, because the mounting order is important.
    First, mount the root partition on /mnt.
    Then mount the /home partition and any other separate partition (/boot, /var, etc), if you have any.
    So do not mount the boot partition first, then the root partition after. That's just wrong.
    You mentioned encryption earlier. Well? Which is it? Encrypted or not? Because you can't just mount it like any regular partition if it's encrypted.
    If you still want to go with Syslinux, see the Basic Config for encryption examples.

  • Stuck at grub prompt

    Hi, i'm new to solaris and am trying to install it on my pc.
    I downloaded bot the a and b dvd images and burned them to disc
    I then put the disk in and start up, I see:
    Loading stage2...
    Then I see:
    GNU GRUB version 0.95
    [some stuff here about minimal BASH-like line editing]
    grub>
    Now what do I do?
    I tried typing install but that was unrecognised.. What do i need to type to start the install process?

    The 'a' and 'b' files need to be combined into one ISO file. You can do it like this:
    % for i in sol-10-u4-ga-x86-dvd-iso-?.zip; do unzip -p $i; done > sol-10-u4-ga-x86-dvd.iso
    Alternatively, if you've already unzipped the files, you can make one file like this:
    % cat sol-10-u4-ga-x86-dvd-iso-? > sol-10-u4-ga-x86-dvd.iso
    Then, burn the resulting ISO and boot off of it.

  • Pro9000 Mark II stuck in front load mode

    I printed using front load (13x19 sheet) on my last print job. I changed just now to using 8.5x11 (after the printer was shut off) and now it's stuck in front load mode and will not print (unless I printed from front load which makes no sense to do).
    Is there a setting I need to change to get it back to normal printing? Getting it into front load is done using the buttons on the front of the printer. Nothing is lit up now except the power button. The bottom tray is down in normal printing mode. The back tray is up. 
    I opened Print Setting > Quality & Media > Paper Source > change to Rear Tray and hit Save. It doesn't take. I hit Print (Lightroom Print Module) and print queue still says it wants to print from the front tray. When I go back to Print Settings to check the Paper Source it again reads Rear Tray.  
    Thanks for your help! 
    Terry

    What system are you using?  You may need to delete your print spooler (Win).  You also need to turn off the printer for some time, overnight, perhaps.  Reboot the computer. Turn the printer on.
    EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
    Photoshop CS6, ACR 9, Lightroom 6

  • Apple tv movies stuck in endless "loading"

    My Apple TV movies no longer download.  They seem stuck in endless "loading."  What are my options?

    Reboot ATV and router
    Make sure DNS is set to auto (setting - general - network)
    If on wifi try ethernet

  • Using: Suspend2kernel Grub Loading takes 20+ seconds

    Hi!
    Is it normal for resuming from suspend2 patched kernel to take 20 seconds at the "GRUB loading...." stage?
    Kind of defeats the whole purpose of hibernation if its meant to take that long....
    This happens almost every time. Atomic copy and stuff is quite snappy though.
    Any ideas?

    No it doesn't happen with the stock kernel and suspend2 works fine here. Successful resumes practically every single time. I suppose that means hibernate scripts are configured right.
    /boot/grub/menu.lst
    title Suspend2
    root   (hd0,1)
    kernel /boot/vmlinuz26suspend2 root=/dev/disk/by-label/hda2 ro resume2=swap:/dev/disk/by-label/hda1 earlymodules=piix
    initrd /boot/kernel26suspend2.img
    From arch wiki,
    Do never use a different kernel to resume than you used to suspend! If pacman updates your kernel, don't suspend before you have rebooted properly.
    Could this be related to the issue?
    I'm thinking of reinstalling grub completely since I have had weird grub problems long before this...

  • My curve 8520 is stuck on the loading screen :(

    Hi,
    I bought my curve 8520 about 5 months ago. And just yesterday when I tried rebooting it, it remains stuck on the boot loading screen. I tried battery pull, alt+shiftl+del, but all that happens is it getting stuck on the loading screen.
    Any advice on what to do, cause I dont wanna format the phone memory as I dont have a backup of my contacts.
    Thanks

    danielle3007 wrote:
    hia did u ever work out how to fix this as mine is doind exactly the same! and 5 months old also!
    Have you tried the battery removal and key pressing I suggested above?
    The original poster said they didn't want to reload the OS but ultimately, that is the course of action to follow. If you want to do that then
    http://tinyurl.com/2eraxhc
    Blackberry Best Advice - Back-up weekly
    If I have helped you please check the "Kudos" star on the right >>>>

  • HT1937 my ipod is stuck on the loading screen

    my ipod had to reboot and it did, but whenn it turned back on, it got stuck on the loading screen with the apple logo on it. please help.

    Go to this page: http://www.ifans.com/forums/threads/how-to-force-ipod-ipad-or-iphone-into-restor e-mode.2790/

  • My White Macbook is stuck at the loading screen, and disk utility, safe mode doesn't work either. What should I do?

    I went on vacation a few days ago and in El Salvador, they have this mobile broadband sticks. Well, I was using one until it gave me a network error. After that, it shut down my computer entirely. The first time it happened, I didn't think much of it. I took the battery out and put it back in for it could work. It happened another two times, and after the third time, my MacBook stays stuck at the loading screen, and it will take 5-10 minutes on that screen, before it shuts down, or it wouldn't turn on at all. I've tried booting into safe mode, but it appears to not boot into it. I've tried resetting the Pram, and using disk utility, but that still won't work. I don't know what else to do to make it boot into  OS X  Lion.
    I'm an AP student, and the majority of my work is in that computer, and it is very important! What can I do? Not only that, but I enter school in a few weeks and I need the AP work by the time I enter.
    What can I do? Can someone help?
    Thanks

    Reinstalling Lion Without the Installer
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • My Macbook is stuck at the loading screen (the apple with the spinning circle beneath it). I went to Best Buy, they told me to call Apple Help and ask them to restore my unit. But Apple help wont help me without charging me. Help please !!

    My Macbook Pro is stuck at the loading screen (the apple with the spinning circle underneath). I went to Best Buy to get help, and they told me to call Apple Help and ask them to 'restore my unit', which he said is a matter of only about 4 mouse clicks. If it was so easy, I didn't understand why he couldn't do it for me. But he said that even though I have a 3 year warranty and protection plan with them, they were not responsible for this type of problem. Whatever.
    Anyway, so I called Apple Help, and even though he was familiar with my problem, it's been more than 90 days since I purchased the laptop, therefore I'd have to set up a service agreement to get his assistance, meaning I'd have to PAY him. So now i'm stuck, and I'm just hoping somebody knows what to do to help me
    I don't have any disc that I apparently need, and I don't remember ever getting one. However, if there is some other way to fix this issue, please let me know. Thanks for your time and assistance
    Brenna

    HI, have you blown the dust out lately?
    Does it boot better/further if allowed to cool?
    If you're sure the RAM is good, try the Hair Dryer trick...
    http://discussions.apple.com/message.jspa?messageID=13240047#13240047
    https://discussions.apple.com/message/15223603#15223603
    https://discussions.apple.com/message/15499912#15499912
    https://discussions.apple.com/message/15613068#15613068
    https://discussions.apple.com/thread/3270112
    https://discussions.apple.com/message/16053892#16053892
    No power light at all...
    https://discussions.apple.com/thread/3692775?tstart=0
    It can show on any G5, and even many other computers & electronic devices of the period.
    http://www.macintouch.com/reliability/pmg5.html
    http://lowendmac.com/ppc/power-macintosh-g5.html
    And see this last one in particular...
    https://discussions.apple.com/message/16781690#16781690
    Heat gun better...
    https://discussions.apple.com/thread/3916312?tstart=0
    If we don't get more help or answers here, feel free to join my site & ask...
    http://x704.net/bbs

Maybe you are looking for