Issue with Grub after install

When selecting Arch in Grub I'm getting the error "You need to load the kernal first". I'm not sure where I've gone wrong. I followed the Beginner's Guide very carefully, I read through the installing Grub section a dozen times and even the section about installing it on the Grub page; I later used Helmuthdu's script to see if that would work since it's automated and would hopefully avoid making the same mistakes I may have made but even that didn't work.
Here's my grub.cfg file, hopefully someone can spot what I can't.
As a sidenote, I installed os-prober before running grub-mkconfig, yet Windows hasn't shown up in Grub. I'm not sure if the two problems are related or not; I'm more worried about not being able to log into Arch at the moment though.
# 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 ad4103fa-d940-47ca-8506-301d8071d467
else
search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
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 Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-ad4103fa-d940-47ca-8506-301d8071d467' {
load_video
set gfxpayload=keep
insmod gzio
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 ad4103fa-d940-47ca-8506-301d8071d467
else
search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
fi
echo 'Loading Linux core repo kernel ...'
linux /boot/vmlinuz-linux root=UUID=ad4103fa-d940-47ca-8506-301d8071d467 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
menuentry 'Arch 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-ad4103fa-d940-47ca-8506-301d8071d467' {
load_video
set gfxpayload=keep
insmod gzio
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 ad4103fa-d940-47ca-8506-301d8071d467
else
search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
fi
echo 'Loading Linux core repo kernel ...'
linux /boot/vmlinuz-linux root=UUID=ad4103fa-d940-47ca-8506-301d8071d467 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/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 ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### 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 ###
I'm not sure if viewing this will help or not.
sudo fdisk -l
Disk /dev/sda: 640.1 GB, 640133946880 bytes
255 heads, 63 sectors/track, 77825 cylinders, total 1250261615 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: 0xc80ac80a
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 206847 102400 7 HPFS/NTFS/exFAT
/dev/sda2 206848 741279743 370536448 7 HPFS/NTFS/exFAT
/dev/sda3 741279744 745474047 2097152 82 Linux swap / Solaris
/dev/sda4 * 745474048 1250261614 252393783+ 83 Linux
Disk /dev/sdb: 160.0 GB, 160040803840 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312579695 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: 0xb36eb36e
Device Boot Start End Blocks Id System
/dev/sdb1 63 312579694 156289816 83 Linux
Disk /dev/sdc: 16.0 GB, 16008609792 bytes
255 heads, 63 sectors/track, 1946 cylinders, total 31266816 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: 0x096fcef9
Device Boot Start End Blocks Id System
/dev/sdc1 * 32 31266815 15633392 c W95 FAT32 (LBA)
Last edited by Axalon (2013-12-19 07:06:38)

hi, Axalon.
Here is the explanation. http://ubuntuforums.org/showthread.php?t=2066130
unfortunately, nobody here wants to say WHY.
it's because os-prober tends to read other OSes' grub.cfg. And the UUID=ad4103fa-d940-47ca-8506-301d8071d467 comes from some builder's disk partition.
it's so easy to solve now.

Similar Messages

  • Issue with wsconfig after installing APSB07-02

    After installing the patches on
    APSB07-02
    I get this message?
    "The JRun servers(s) found on host 127.0.0.1 must be upgraded
    to use this version of the web server configuration tool."
    This is a clean install of CF MX 7.02 in multi server, jrun
    updater 6, all jrun hotfixes since updater 6
    TIA

    I found the issue it was with the hotfix 62070_64614.jar
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=f9db1285
    JRun 4 Updater 6: Hot fix for remote transactions
    Adding Each hotfix one at a time and this one broke it
    all.

  • HT4623 still having issues with keyboard after installing 8.0.2

    I am still having keyboard issues after installing 8.0.2.  Phone is useless now.  Please provide help ASAP.

    what help do you need?  What are the "issues" you're having?
    If you don't provide any information, you can't possibly expect a helpful answer.

  • Is anyone having issues with trackpad after install lion?

    Since I have installed Lion(clean install from flashdrive) my track pad makes me "click" and hold to move windows around. I use to be able to just "tap" without fully compressing the trackpad. Is anyone else having this issue?
    Thanks

    I've noticed peculiarities with the trackpad on both Mac laptops as well as the Magic Trackpad on our home iMac since updating to Lion.
    The biggest one is random right-click only where it seems the touchpad gets stuck in right-click mode. The only way to stop it is to "tap" rather than click and it seems to fix it. Otherwise, I've not had problems with dragging or anything.
    What you may try is turning the option off/on again in Trackpad under System Preferences that is giving you problems. I had this problem on our home iMac with the Magic Trackpad with three-finger drag. Works fine now.

  • Issues with TNS after install on XP

    I installed XE (used administrator account)
    get 'page cannot be displayed' from browser, when I try SQL plus, I get this error:
    SQL> connect / as sysdba;
    ERROR:
    ORA-12560: TNS:protocol adapter error
    There is no other TNS enties or ORACLE_HOME on this computer.
    any ideas welcome

    I tried to run the scripts by hand and noticed this error in my sqlnet.log file
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleXE)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=XE)(CID=(PROGRAM=C:\oraclexe\app\oracle\product\10.2.0\server\bin\sqlplus.exe)(HOST=VANDERBI-M8R870)(USER=ORACLE))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
    Time: 25-JAN-2006 16:21:03
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12560
    TNS-12560: Message 12560 not found; No message file for product=NETWORK, facility=TNS
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Message 530 not found; No message file for product=NETWORK, facility=TNS
    nt secondary err code: 2
    nt OS err code: 0
    1) why is it using bequeath (sp)? how do I make it use TCPIP and why is it using the windows user instead of sysdba?

  • Usually i back my IPhone with ICloud, after installing IOS 5 it asked me to restore from I Tunes what i have to do?

    usually i back my IPhone with ICloud, after installing IOS 5 it asked me to restore from ITunes what i have to do to restore all my contact, applications and others?

    If your iPhone does not search for a wi-fi connection before you are asked whether you want to set it up as new phone or restore a backup from iTunes, then I guess you have the same issue as highlighted in this thread:
    https://discussions.apple.com/message/19638850?ac_cid=tw123456#19638850
    iCloud back ups can only be accessed via wi-fi that's why you are not granted this option, I have the exact same issue.

  • Send & Recieve functionality not working with  WebDav after installing Acrobat XI

    Send & Recieve functionality not working with  WebDav after installing Acrobat XI for PDF.  Acrobat XI is complete installations(Trial Version).

    Hi Kiro ,
    Did you try opening that file in any other browser ?If not ,please try doing that once and see if that  works for you.
    Try Repairing Acrobat once and see if  that helps.
    Launch Acrobat>Navigate to Help>Repair Acrobat Installation.
    Regards
    Sukrit Dhingra

  • Cant get ical to sync with iphone after installing OSX

    cant get ical to sync with iphone after installing OSX

    I too was a mobileme user and have just migrated to iCloud on mackbook pro w/OS 10.7.4. Transition caused my sent mailboxes to rearrange themselves so that I have no comprehensive 'sent' mailbox as I did previously and the view on both incoming and outgoing mailboxes keeps rearranging itself no matter how many times I set preferences. One result is that search function no longer works.  Is anyone else having problems like this?  All was fine for a week after transition but after having an evening when my password was repeatedly rejected I had to log in and out of iCloud (as directed by tech support) and w/in an hour or so the mailbox problem began.

  • Anyone have trouble with IPad3 after installing OS6.1.3?  keeps crashing

    Anyone having trouble with iPad3 after installing OS6.1.3?  Mine keeps crashing.

    Mine seems to be just fine. 
    Try a reset,
    Reset your iPad by pressing the 'Sleep' and 'Home' button at the same time for about 15 seconds or so. Your iPad  will then go through a reset / reboot procedure and will be ready for use within about a minute.
    Don't worry about doing this as you will not lose data or settings.
    Good luck and do report back.

  • TS3694 I just received the unknown software error (6) do you have a resolution for this issue?  Occurred after install of software and firmware in the final validation phase. I have a 4S

    I just received the unknown software error (6) do you have a resolution for this issue?  Occurred after install of software and firmware in the final validation phase. I have a 4S

    http://lmgtfy.com/?q=iPhone+error+code+6

  • HT4623 issues with texting after the 6.1 update on my iPhone

    issues with texting after the 6.1 update on my iPhone

    My wife and I are on different networks ie GCI vs AT&T after we both updated our iphones to 6.1 we no longer can receive texts messaging even though both are phones say the message was delivered. we can however text with other iphone users as long they are withing the same carrier and with everyone as long as they are not other iphones regardless of the carrier as well as with other iphon users that are still using 6.0. My wife and I also have ipads with wifi only and the one we updated to 6.1 is having the same issue while the one that is still 6.0 has no issue and will send and receive messages with out issue even to and from the 6.1 devives that are having issues. I have contacted both service providers and was told it is a Apple messaging issue. At this point I just would like to find and reinstal the 6.

  • Is anyone else having issues with airplay after the Lion update?

    Is anyone else having issues with airplay after the Lion update? It sees the libaray but won't connect...

    I'm having the same issue.  So far all lion has done for me is make all my microsoft office documents un-readable until I upgrade (about $150) and lose my home share capabilities...can anyone assist with this?

  • Issues printing with iPhoto after installing OS X 10.10.2

    After working with 2nd and 3rd level Apple Support I was able to print photos using iPhoto after installing OS X 10.10.2. I have an HP 7520 all in one ePrinter and the latest Yosemite driver have been installed. When I tried to print a photo using iPhoto the application would hang and I had to force quit to continue. Apple support was able to identify the problem. The iPhoto application had an outstanding print job listed in the Recent heading on the left side of the screen, I do not know how this happened, but after clearing out this print job I was able to print from iPhoto. The Apple Support person said I could avoid this problem by hitting the cancel button located near the print button on the bottom of iPhoto, after any print activity had finished. He said this was a known problem when using iPhoto and Yosemite.

    EW,
    Kernel Panics here on the same model. My problems started after the recent Firmware Update for Airport and Airport Expresses (7.6). No other new software installed besides the Firmware Update and they are occurring daily.
    I haven't seen any remedies yet....

  • [SOLVED]Some issues with fresh arch install.

    I freshly installed arch after a pretty long period of time of using other distributions and forgot how many issues I have to deal with when using it.
    Alsamixer does not detect my headphones when i plug them in...(does not mute / unmute automatically speakers / headphones)
    And another issue with the xorg server i think, I have a notebook and after every reboot i have to look up after touchpad with xinput --list then   --setprop <id>. How can I make it permanent? It's annoying.
    Last edited by dede24ever (2014-12-27 22:11:08)

    Add a command to toggle the auto-mute with the same key, perhaps?
    Anyway, that command in my i3 set up does not effect the auto-mute mode so there may be something else going on in your system.
    Ooops -- my mistake, my system does that as well...
    Maybe something to do with pulseaudio -- I didn't have pulseaudio when I used i3 and I didn't notice that problem then.
    EDIT: It might be wise to open a fresh thread for this specific problem -- be sure to use a descriptive title to get the attention of the sound experts (not me!).
    Last edited by Head_on_a_Stick (2014-12-27 20:26:11)

  • Issue with amavisd after upgrade to 2.6.4 folowing topicdesk tutorial

    Running into various issues with my mail server after applying Security Update 2009-005 to my MacOS X Server 10.4.11, I have upgraded Amavisd, SpamAssassin and ClamAV to the most recent versions respectively 2.6.4, 3.2.5 and 0.95.2 using the topicdesk tutorials as in the past.
    Amavisd now refuses to start issuing a
    setrgid() not implemented at /usr/bin/amavisd line 13421
    I have reinstalled everything several times in case I would have made a mistake but no luck.
    Falling back to the previous version of amavisd (2.6.3) does not fix the problem.
    Has someone an idea on where to look.
    A thread in 2008 speaks about the same massage but I have been able to figure out how the problem was fixed.
    Urgent help welcome.

    Thanks for your reply. Neither amavisd.log not system.log gives any clue on where the problem comes from. I was trying to use debug to get an idea on where the problem comes from but it seems not to work as before though.
    I am definitely not a UNIX specialist. How do you run amavisd in debug mode than if you can't no longer run it from the command line with debug.
    Regarding the installation process, I have followed the tutorial line by line and did it 5 times just to be sure.
    I nevertheless experienced several issues that I fixed :
    1. force install Convert::UUlib failed. I had to run the install out of CPAN.
    2. running /usr/local/bin/spamassassin -V fails with command not found but succeed when run as /usr/bin/spamassassin -V
    3. sudo su clamav "spamassassin --lint" generating 2 warnings due to ok_locales and ok_languages in /etc/mail/spamassassin/local.cf even after running spamtrainer -f, fixed by commenting out the two lines.
    To ensure that I did not do a typo, I have copied an unmodified version of amavisd.conf tp /etc/amavisd.conf. Same issue. Amavisd won't start.
    Is there a way to get what executing amavisd debug from the terminal was doing ?
    Will run a clean install on a different server that runs the same os level but was never upgraded using topicdesk tutorials and see what happens.

Maybe you are looking for

  • How to install windows 7 32 bit virtual machine on windows 7 64 bit

    Wondering what would be involved in installing windows 7 32 bit as a virtual machine on a windows 7 64 bit laptop, trying to continue to use software that only has 32 bit drivers to talk to specialized hardware before scrapping the hardware.  Drivers

  • Playing Videos from iPhoto in any other player than Quicktime

    Hi, is there any way to make iPhoto open video files in anything but Quicktime X. I'd prefer them all starting in VLC. Setting VLC as the default player for all .MPG files works when selecting the files in Finder, yet iPhoto will still try and start

  • Constraints are not created when using a cart

    Hi all, I have created a cart in SQL Developer with all the tables from HR schema. If I apply the cart to my database cloud service the tables and data are there but most of the constraints are missing. In log I can see error messages like: Error sta

  • Don't see parent and child nodes in tree control with switcher, enclose xml

    Hi, i.m a novice for jdev 11.1.1.2, i need to create a tree menu, but when i put the switcher + n°2 face whith link object, inside the tree and run my application i don't see the node, but i see the bookmarks that collapease and expand Why ???? Thank

  • Can i use malloc function while using DLL created from C program

    Hi, I have written a simple program in C , which uses malloc function for allocating memory for the array.When iam calling that DLL using call library function node in labview, it is not giving any output, my doubt is can we use malloc function in C