boot problem [SOLVED]

Archived topics about LMDE 1 and LMDE 2
Locked
allorder

boot problem [SOLVED]

Post by allorder »

I installed yesterday Lmde x64 (201012/201101)
Just before I had ubuntu and win7 in dual boot without any problem.
Lmde boot 1/4 of the time... the other time it's a blank screen.
Since I installed lmde, win7 and lmde doesn't keep the good time.
When lmde boot, there is no problem.
Windows 7 always boot at the first time.
My laptop is: HP Pavilion dv6-2164ca Entertainment Notebook PC
Any tips ?
Sorry for my english, my first language is french.

http://pastebin.com/709jeAgN (kern.log)
http://pastebin.com/UykvFPZk (Xorg.0.log)
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 3 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
seeley

Re: Weird problems...

Post by seeley »

Hi allorder!
Please first read my help (link1 below) and post some relevant outputs.
seeley
allorder

Re: boot problem

Post by allorder »

Linux Mint Debian Edition/gnome 2.30.2/64bit/
Installed from live Dvd/dualboot Lmde-Win7
Disks: HDD Total Size: 500.1GB (0.8% used) 1: /dev/sda ST9500420AS 500.1GB
seeley

Re: boot problem

Post by seeley »

Hi!
Okay.
We need some more information; please search "findGrub" in my help, copy it into a Terminal and post the output.
The thread http://forums.linuxmint.com/viewtopic.p ... 6&start=20 could be helpful, especially my post Jan. 30, 7:05 pm.
seeley
allorder

Re: boot problem

Post by allorder »

/dev/sda: GRUB 2 v1.97 or higher
/dev/sda1: No GRUB 55aa
/dev/sda2: No GRUB 55aa
/dev/sda3: No GRUB 745
/dev/sda4: No GRUB 616e
/dev/sda5: No GRUB 00
/dev/sda6: No GRUB 00
seeley

Re: boot problem

Post by seeley »

Hi!
GRUB"2" had been installed into the MBR of the hd, that's okay. (At the moment it seems that it is not necessary to repair Grub.)
Please post your grub.cfg

Code: Select all

cat /boot/grub/grub.cfg
seeley
allorder

Re: boot problem

Post by allorder »

allorder@lmde /etc/apt $ cat /boot/grub/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 ###
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
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 {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos5)'
search --no-floppy --fs-uuid --set 707540fd-e4cf-4d9a-831c-40725d3e32e4
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos5)'
search --no-floppy --fs-uuid --set 707540fd-e4cf-4d9a-831c-40725d3e32e4
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos5)'
search --no-floppy --fs-uuid --set 707540fd-e4cf-4d9a-831c-40725d3e32e4
insmod png
if background_image /boot/grub/linuxmint.png; then
true
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/06_mint_theme ###
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos5)'
search --no-floppy --fs-uuid --set 707540fd-e4cf-4d9a-831c-40725d3e32e4
insmod png
if background_image /boot/grub/linuxmint.png ; then
set color_normal=white/black
set color_highlight=white/light-gray
else
set menu_color_normal=white/black
set menu_color_highlight=white/light-gray
fi
### END /etc/grub.d/06_mint_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'LinuxMint GNU/Linux, with Linux 2.6.32-5-amd64' --class linuxmint --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos5)'
search --no-floppy --fs-uuid --set 707540fd-e4cf-4d9a-831c-40725d3e32e4
echo 'Loading Linux 2.6.32-5-amd64 ...'
linux /boot/vmlinuz-2.6.32-5-amd64 root=UUID=707540fd-e4cf-4d9a-831c-40725d3e32e4 ro quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-5-amd64
}
menuentry 'LinuxMint GNU/Linux, with Linux 2.6.32-5-amd64 (recovery mode)' --class linuxmint --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(/dev/sda,msdos5)'
search --no-floppy --fs-uuid --set 707540fd-e4cf-4d9a-831c-40725d3e32e4
echo 'Loading Linux 2.6.32-5-amd64 ...'
linux /boot/vmlinuz-2.6.32-5-amd64 root=UUID=707540fd-e4cf-4d9a-831c-40725d3e32e4 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-5-amd64
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows 7 (loader) (on /dev/sda1)" {
insmod part_msdos
insmod ntfs
set root='(/dev/sda,msdos1)'
search --no-floppy --fs-uuid --set 4294d32494d318ed
chainloader +1
}
menuentry "Windows 7 (loader) (on /dev/sda2)" {
insmod part_msdos
insmod ntfs
set root='(/dev/sda,msdos2)'
search --no-floppy --fs-uuid --set 01ca9954d4e59a00
chainloader +1
}
### 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 $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
allorder

Re: boot problem

Post by allorder »

When Lmde is able to boot I always got this two messages before everything load. Otherwise it's a blank screen. I dunno if it's important.... :roll:

Feb 2 11:57:28 lmde kernel: [ 0.236862] pci 0000:01:00.0: BAR 6: no parent found for of device [0xfffe0000-0xffffffff]
Feb 2 11:57:28 lmde kernel: [ 0.236910] pci 0000:09:00.0: BAR 6: no parent found for of device [0xffff0000-0xffffffff]
seeley

Re: boot problem

Post by seeley »

Hi!
Sorry, that I could not answer earlier, but we had a health problem in my family.
I can't say what the problem is - maybe a hardware problem (PCI).
I found the following sites (I know, Mint depends on Ubuntu, but LMDE depends on Debian):
https://bugs.launchpad.net/ubuntu/+sour ... bug/413419
Maybe you should search in a Debian forum or Linuxquestions (they have a Mint subforum) or bump!
seeley
craig10x

Re: boot problem

Post by craig10x »

Hi seeley :)

Just wanted to thank you for helping me get LMDE properly installed...I am really loving it :wink:
PS: any updates i got through the update manager for the boot has been installed just fine, so it was only that one time a "boot-related" update would not install...so everything seems to be ok now....
allorder

Re: boot problem

Post by allorder »

I installed the liquorix kernel, everything is fixed now... Solved
Locked

Return to “LMDE Archive”