LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Manjaro
User Name
Password
Manjaro This forum is for the discussion of Manjaro Linux. Note: This forum does not have any official participation.

Notices


Reply
  Search this Thread
Old 05-11-2016, 12:20 PM   #16
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,388

Rep: Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594Reputation: 1594

look in your /boot to see what the name of the kernel that is installed and then edit the linux line of the grub menu for the correct name
 
1 members found this post helpful.
Old 05-12-2016, 09:39 PM   #17
vienswuer
Member
 
Registered: May 2014
Posts: 47

Original Poster
Rep: Reputation: Disabled
this is the kernel:

vmlinuz-3.10-x86_64

and this grub.cfg:

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-f3516f43-3779-4fab-af00-5bfd1ad57b6a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 f3516f43-3779-4fab-af00-5bfd1ad57b6a
else
search --no-floppy --fs-uuid --set=root f3516f43-3779-4fab-af00-5bfd1ad57b6a
fi
echo 'Cargando Linux 3.10.54-1-MANJARO x64...'
linux /boot/vmlinuz-310-x86_64 root=UUID=f3516f43-3779-4fab-af00-5bfd1ad57b6a rw quiet
echo 'Cargando imagen de memoria inicial...'
initrd /boot/initramfs-310-x86_64.img
}
submenu 'Opciones avanzadas para Manjaro Linux' $menuentry_id_option 'gnulinux-advanced-f3516f43-3779-4fab-af00-5bfd1ad57b6a' {
menuentry 'Manjaro Linux (Kernel: 3.10.54-1-MANJARO x64)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10.54-1-MANJARO x64-advanced-f3516f43-3779-4fab-af00-5bfd1ad57b6a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 f3516f43-3779-4fab-af00-5bfd1ad57b6a
else
search --no-floppy --fs-uuid --set=root f3516f43-3779-4fab-af00-5bfd1ad57b6a
fi
echo 'Cargando Linux 3.10.54-1-MANJARO x64...'
linux /boot/vmlinuz-310-x86_64 root=UUID=f3516f43-3779-4fab-af00-5bfd1ad57b6a rw quiet
echo 'Cargando imagen de memoria inicial...'
initrd /boot/initramfs-310-x86_64.img
}
menuentry 'Manjaro Linux (Kernel: 3.10.54-1-MANJARO x64 - fallback initramfs)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10.54-1-MANJARO x64-fallback-f3516f43-3779-4fab-af00-5bfd1ad57b6a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 f3516f43-3779-4fab-af00-5bfd1ad57b6a
else
search --no-floppy --fs-uuid --set=root f3516f43-3779-4fab-af00-5bfd1ad57b6a
fi
echo 'Cargando Linux 3.10.54-1-MANJARO x64...'
linux /boot/vmlinuz-310-x86_64 root=UUID=f3516f43-3779-4fab-af00-5bfd1ad57b6a rw quiet
echo 'Cargando imagen de memoria inicial...'
initrd /boot/initramfs-310-x86_64-fallback.img
}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
 
Old 05-12-2016, 10:10 PM   #18
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Is this the exact description in your /boot directory?
Quote:
vmlinuz-3.10-x86_64
I'm asking because it says "Kernel: 3.10.54-1" in your grub.cfg.

The image in my boot directory says "vmlinuz-generic-3.10.17"


To edit the Grub Menu press the 'e' key while the GNU Grub MENU is up and running.
Add your kernel to that line; when done type the 'b' key and you should be able to boot into your distro.

Nevermind-
I saw this at the end of your grub.cfg file-
Quote:
linux /boot/vmlinuz-310-x86_64 root=UUID=f3516f43-3779-4fab-af00-5bfd1ad57b6a rw quiet

Last edited by Ztcoracat; 05-12-2016 at 10:27 PM. Reason: 3.10.54-1
 
1 members found this post helpful.
Old 05-13-2016, 01:09 AM   #19
vienswuer
Member
 
Registered: May 2014
Posts: 47

Original Poster
Rep: Reputation: Disabled
woooowww!! I finally solved it!!! It has been a year and a half since I last booted into Manjaro. I was about to reinstall but I gave me one more chance haha. Thanks to all of you who showed some interest. As you may be able to see, within my grub.cfg, the kernel is vmlinuz-310-x86_64. BUT the kernel is actually vmlinuz-3.10-x86_64 !! See the difference? A SINGLE DOT!!! So, instead of messing up with the grub file, I changed kernel's name to look exactly as in grub, and problem solved. Can't believe a simple dot didn't allow me to use my Manjaro linux. Thanks to this thread and you people, I gained more knowledge, now I know where to look in this situations. Thanks again!!
BTW, any ideas on the other unsolved post? Please take a look at it. Changing mouse button won't take effect.
 
1 members found this post helpful.
Old 05-13-2016, 01:29 AM   #20
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by vienswuer View Post
woooowww!! I finally solved it!!! It has been a year and a half since I last booted into Manjaro. I was about to reinstall but I gave me one more chance haha. Thanks to all of you who showed some interest. As you may be able to see, within my grub.cfg, the kernel is vmlinuz-310-x86_64. BUT the kernel is actually vmlinuz-3.10-x86_64 !! See the difference? A SINGLE DOT!!! So, instead of messing up with the grub file, I changed kernel's name to look exactly as in grub, and problem solved. Can't believe a simple dot didn't allow me to use my Manjaro linux. Thanks to this thread and you people, I gained more knowledge, now I know where to look in this situations. Thanks again!!
BTW, any ideas on the other unsolved post? Please take a look at it. Changing mouse button won't take effect.
Yup, a dot can make all the difference in the world.

Glad you solved the issue. Enjoy your Manjaro:-
 
  


Reply

Tags
kernel panic



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Determining cause of Linux kernel panic "Kernel panic - not syncing: Fatal exception" gladman002 Linux - Kernel 1 09-07-2015 08:04 PM
Logging a Kernel Panic Event - Problem writing the log in panic situation lucasct Linux - Embedded & Single-board computer 5 09-08-2011 01:44 PM
Fixing the kernel configuration MahendraL Linux - Newbie 1 07-03-2009 01:11 AM
fixing kernel errors entropyguy Linux - Newbie 0 10-13-2004 06:01 PM
mandrake 9.1 fixing tweaking kernel JUDOLIZARD Linux - Newbie 4 12-15-2003 03:30 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Manjaro

All times are GMT -5. The time now is 04:11 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration