LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-23-2024, 12:31 AM   #151
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074

Quote:
Originally Posted by beginstart View Post
Code:
$ uname -r
4.9.0-18-686-pae
$
Is this the old kernel?
It is a Debian 9 Stretch kernel. What does 'dpkg-query -W | grep linux' report?
 
Old 02-23-2024, 10:38 AM   #152
beginstart
Member
 
Registered: Nov 2023
Posts: 97

Original Poster
Rep: Reputation: 0
Thank You.



Code:
dpkg-query -W |grep linux
console-setup-linux    1.205
firmware-linux    20210315-3
firmware-linux-free    20200122-1
firmware-linux-nonfree    20210315-3
libselinux1:i386    3.1-3
linux-base    4.6
linux-image-3.16.0-10-686-pae    3.16.74-1
linux-image-3.16.0-4-686-pae    3.16.51-3
linux-image-4.19.0-19-686-pae    4.19.232-1
linux-image-4.9.0-12-686-pae    4.9.210-1+deb9u1
linux-image-4.9.0-17-686-pae    4.9.290-1
linux-image-4.9.0-18-686-pae    4.9.303-1
linux-image-5.10.0-10-686-pae    5.10.84-1
linux-image-5.10.0-13-686-pae    5.10.106-1
linux-image-5.10.0-15-686-pae    5.10.120-1
linux-image-5.10.0-27-686-pae    5.10.205-2
linux-image-5.10.0-28-686-pae    5.10.209-2
linux-image-686-pae    5.10.209-2
util-linux    2.36.1-8+deb11u1
#
 
Old 02-23-2024, 05:36 PM   #153
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
I suggest you navigate through your Grub menu and try to find a selection whose label includes 5.10.0-28 and/or 5.10.209 and try to boot it normally. If you are unable to find such an option, please attach file /boot/grub/grub.cfg to this thread.

I suggest also that you run these commands, preferably before doing anything else, to ensure freespace is a non-issue, among other reasons:
Code:
sudo apt purge linux-image-3.16.0-4-686-pae
sudo apt purge linux-image-3.16.0-10-686-pae
After running those two commands, show here input/ouput from:
Code:
ls -l /vm* /in* /boot

Last edited by mrmazda; 02-23-2024 at 05:45 PM.
 
Old 02-24-2024, 08:54 AM   #154
beginstart
Member
 
Registered: Nov 2023
Posts: 97

Original Poster
Rep: Reputation: 0
Thank You for help.

I did or 1 tried to do it.





/boot/grub/grub.cfg


Code:
#
# 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
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

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,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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
else
  search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
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=de_DE
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=50
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=50
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
else
  search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
fi
insmod png
if background_image /usr/share/desktop-base/homeworld-theme/grub/grub-4x3.png; then
  set color_normal=white/black
  set color_highlight=black/white
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/10_linux ###
function gfxmode {
    set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
    load_video
    insmod gzio
    if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
    insmod part_msdos
    insmod ext2
    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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
    else
      search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
    fi
    echo    'Loading Linux 5.10.0-28-686-pae ...'
    linux    /boot/vmlinuz-5.10.0-28-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro  quiet
    echo    'Loading initial ramdisk ...'
    initrd    /boot/initrd.img-5.10.0-28-686-pae
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-28-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-28-686-pae-advanced-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 5.10.0-28-686-pae ...'
        linux    /boot/vmlinuz-5.10.0-28-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-28-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-28-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-28-686-pae-recovery-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 5.10.0-28-686-pae ...'
        linux    /boot/vmlinuz-5.10.0-28-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro single 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-28-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-27-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-27-686-pae-advanced-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 5.10.0-27-686-pae ...'
        linux    /boot/vmlinuz-5.10.0-27-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-27-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-27-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-27-686-pae-recovery-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 5.10.0-27-686-pae ...'
        linux    /boot/vmlinuz-5.10.0-27-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro single 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-27-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-15-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-15-686-pae-advanced-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 5.10.0-15-686-pae ...'
        linux    /boot/vmlinuz-5.10.0-15-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-15-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 5.10.0-15-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.10.0-15-686-pae-recovery-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 5.10.0-15-686-pae ...'
        linux    /boot/vmlinuz-5.10.0-15-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro single 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-5.10.0-15-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 4.9.0-18-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-18-686-pae-advanced-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 4.9.0-18-686-pae ...'
        linux    /boot/vmlinuz-4.9.0-18-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.9.0-18-686-pae
    }
    menuentry 'Debian GNU/Linux, with Linux 4.9.0-18-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-18-686-pae-recovery-f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        insmod part_msdos
        insmod ext2
        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 --hint='hd0,msdos1'  f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        else
          search --no-floppy --fs-uuid --set=root f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc
        fi
        echo    'Loading Linux 4.9.0-18-686-pae ...'
        linux    /boot/vmlinuz-4.9.0-18-686-pae root=UUID=f0295e7e-ea3f-42c4-bef6-e7df6ef9d9bc ro single 
        echo    'Loading initial ramdisk ...'
        initrd    /boot/initrd.img-4.9.0-18-686-pae
    }
}

### 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 ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### 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 ###


Code:
sudo apt purge linux-image-3.16.0-4-686-pae
command not found


sudo apt purge linux-image-3.16.0-10-686-pae
This did work.


ls -l /vm* /in* /boot


Code:

 ls -l /vm* /in* /boot
lrwxrwxrwx 1 root root   33 21. Feb 13:00 /initrd.img -> boot/initrd.img-5.10.0-28-686-pae
lrwxrwxrwx 1 root root   33 21. Feb 13:00 /initrd.img.old -> boot/initrd.img-5.10.0-27-686-pae
lrwxrwxrwx 1 root root   30 21. Feb 13:00 /vmlinuz -> boot/vmlinuz-5.10.0-28-686-pae
lrwxrwxrwx 1 root root   30 21. Feb 13:00 /vmlinuz.old -> boot/vmlinuz-5.10.0-27-686-pae

/boot:
insgesamt 288024
-rw-r--r-- 1 root root   189212  7. Mär 2022  config-4.9.0-18-686-pae
-rw-r--r-- 1 root root   236068  9. Jun 2022  config-5.10.0-15-686-pae
-rw-r--r-- 1 root root   236066 31. Dez 16:46 config-5.10.0-27-686-pae
-rw-r--r-- 1 root root   236066 31. Jan 22:14 config-5.10.0-28-686-pae
drwxr-xr-x 5 root root     4096 21. Feb 13:01 grub
-rw-r--r-- 1 root root 17593666 12. Mär 2022  initrd.img-4.9.0-18-686-pae
-rw-r--r-- 1 root root 63751339 30. Jan 21:14 initrd.img-5.10.0-15-686-pae
-rw-r--r-- 1 root root 63751348 24. Jan 21:38 initrd.img-5.10.0-15-686-pae.old
-rw-r--r-- 1 root root 63790452  2. Feb 17:12 initrd.img-5.10.0-27-686-pae
-rw-r--r-- 1 root root 63787533 21. Feb 13:01 initrd.img-5.10.0-28-686-pae
-rw-r--r-- 1 root root  2517205  7. Mär 2022  System.map-4.9.0-18-686-pae
-rw-r--r-- 1 root root       83  9. Jun 2022  System.map-5.10.0-15-686-pae
-rw-r--r-- 1 root root       83 31. Dez 16:46 System.map-5.10.0-27-686-pae
-rw-r--r-- 1 root root       83 31. Jan 22:14 System.map-5.10.0-28-686-pae
-rw-r--r-- 1 root root  3702240  7. Mär 2022  vmlinuz-4.9.0-18-686-pae
-rw-r--r-- 1 root root  5003232  9. Jun 2022  vmlinuz-5.10.0-15-686-pae
-rw-r--r-- 1 root root  5042208 31. Dez 16:46 vmlinuz-5.10.0-27-686-pae
-rw-r--r-- 1 root root  5042752 31. Jan 22:14 vmlinuz-5.10.0-28-686-pae
#

Last edited by beginstart; 02-24-2024 at 08:57 AM.
 
Old 02-24-2024, 10:15 PM   #155
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
  1. What results when you select to boot from the menu entry described thus?:
    Code:
    'Debian GNU/Linux, with Linux 4.9.0-18-686-pae'
  2. If you:
    1. select for booting the default entry described 'Debian GNU/Linux'
    2. strike the E key
    3. navigate to the end of the line beginning 'linu'
    4. remove 'ro' and remove 'quiet'
    5. add in their place '3'
    6. proceed with boot via 'F10' or 'Ctrl-X'
    What result follows?
    |
  3. If above produce panic, try repeating, except instead of typing '3', type 'systemd.unit=multi-user.target' before proceding, and then report result.
 
Old 02-25-2024, 06:22 AM   #156
beginstart
Member
 
Registered: Nov 2023
Posts: 97

Original Poster
Rep: Reputation: 0
Code:
'Debian GNU/Linux, with Linux 4.9.0-18-686-pae'
Sorry
I dont understand.

I do booting.
Then there is this line?


Booting.
I chose "recovery"
If I dont chose this: panic.

Quote:
select for booting the default entry described 'Debian GNU/Linux'
I do booting
when do I have to see this?
Do I say "E" before the recovery mode is offered?


Quote:
remove 'ro' and remove 'quiet'
add in their place '3'
I do clean away ro at the ende
and repcae it by quiet
and where do I have to put in "3"?

Thank You.
 
Old 02-26-2024, 05:57 PM   #157
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
According to the grub.cfg file you pasted here instead of following the directions given to attach the file, when the Grub menu appears, the following is approximately what you should see (if your menu is in English):
Code:
Debian GNU/Linux
Advanced options for Debian GNU/Linux
From it you need to select Advanced options for Debian GNU/Linux. After you do you should see a longer list of selections. The first one should be 'Debian GNU/Linux, with Linux 5.10.0-28-686-pae'. That's the one I want you to highlight (if it is not already highlighted), then strike the E key, following which move the cursor to ro quiet and remove them, and in that space add '3'. It should be on the same line where root=UUID= appears, and which started with linu. Sometimes this line starting with linu doesn't fit completely, and so wraps onto another line. If it does, pretend the two lines are only one line, and put 3 at the end.

That "Advanced" menu should provide 4 selections described as 'recovery mode' and another 4 not so described. I want you to try one that does not show 'recovery mode', but with the modification described above before proceeding to boot using the F10 key or Ctrl-X. If panic occurs this way, take a photograph of your whole display output and attach it or pastebin it.
 
Old 02-28-2024, 07:01 AM   #158
beginstart
Member
 
Registered: Nov 2023
Posts: 97

Original Poster
Rep: Reputation: 0
I dont want to make You angry.
I do and try my best to follow.

As far as I understand
You asked me do do it
in post 37
and post 157 is the same instruction.
Is this right?
The only difference I should make a photo with the output
when there will be appaear the panic.
Is this another screen than
I posted here the panic screen
made with the digicam?

Regards.

Sorry again for stupid asking.
 
Old 02-28-2024, 09:12 PM   #159
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,371

Rep: Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593
post the output of
Code:
free
 
Old 02-29-2024, 12:34 AM   #160
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
Quote:
Originally Posted by beginstart View Post
The only difference I should make a photo with the output
when there will be appaear the panic.
Is this another screen than
I posted here the panic screen
made with the digicam?
I don't see any panic screen images posted here, and don't remember having seen any. However, this is a very very long thread and I can't remember everything already discussed, or remember what to expect to find in trying to review.
 
Old 02-29-2024, 05:03 AM   #161
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,371

Rep: Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593
I would also like an updated screenshot of the panic with as many lines as possible showing before the panic
 
1 members found this post helpful.
Old 02-29-2024, 09:42 AM   #162
beginstart
Member
 
Registered: Nov 2023
Posts: 97

Original Poster
Rep: Reputation: 0
I tried to uploag png from HD.

This did happen:

Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

So I did this:

https://ibb.co/XtmTbzd

Thank You
 
Old 02-29-2024, 09:37 PM   #163
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,371

Rep: Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593Reputation: 1593
AT the grub menu press e for edit, add this to the end of the linux line:
Code:
boot_delay=10
ctrl-x or f10 to boot

What is output of free command?
 
Old 03-04-2024, 07:48 AM   #164
beginstart
Member
 
Registered: Nov 2023
Posts: 97

Original Poster
Rep: Reputation: 0
I did change the task
end of linux line
f10
Panic.
Im sorry.
Thank You
 
Old 03-05-2024, 10:00 PM   #165
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,852
Blog Entries: 1

Rep: Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074Reputation: 2074
You can boot your Debian 11 installation media and select
Code:
Advanced options
Rescue mode
which will start the installation system in rescue mode. After initialization and selection of your /dev/sda1 / filesystem on your disk you will be presented with a Rescue operations menu:
Code:
Execute a shell in /dev/sda1
Execute a shell in the installer environment
Reinstall GRUB boot loader
Choose a different root file system
Reboot the system
Because of the thread title, I suggest to try "Reinstall GRUB boot loader". If this succeeds, you should be able to boot from HD and the problem should be solved. If this fails, report as best you can the results in as much detail as possible. While awaiting a response, or before reporting, you may start over and try the first option "Execute a shell in /dev/sda1". If this succeeds, you will actually be running your installed Debian system, from which I would try the following operations (in order):
  1. df ## ensure the / filesystem has ample freespace
  2. # ensure /etc/apt/sources.list has no uncommented lines that do not contain the string "bullseye". If any do, abort after making a copy of that file that you can paste here exactly to get instructions what to do next.
  3. apt clean
  4. apt update
  5. apt-get upgrade
  6. apt-get full-upgrade
  7. apt --fix-broken install ## only if the previous commands end in apparent failure
  8. Ctrl-D ## exit rescue mode
  9. choose "Reboot the system"
If apparently successful, at this point I would shutdown and try to boot the installed system normally without using nomodeset. If not successful, please copy and paste here the content of /etc/apt/sources.list from your installed Debian system on /dev/sda1.

All I have written in this post was done in conjunction with booting Debian 11.9 installation media burned to USB from a Pentium 4 PC with multiple Gnu/Linux installations, including Debian 11. I actually booted using USB into the installed Debian 11 system and performed the above steps 1-6 (skipping #2) successfully, which installed linux-image-5.10.0-28-686. I then shutdown, removed the USB stick, booted Debian 11, and produced what follows:
Code:
# inxi -GSaz --vs --zl --hostname
inxi 3.3.33-00 (2024-02-06)
System:
  Host: gx280 Kernel: 5.10.0-28-686 arch: i686 bits: 32 compiler: gcc
    v: 10.2.1 clocksource: tsc avail: hpet,acpi_pm parameters: ro
    root=LABEL=<filter> ipv6.disable=1 net.ifnames=0 noresume
    plymouth.enable=0 consoleblank=0 mitigations=off
  Desktop: TDE (Trinity) v: R14.1.1 tk: Qt v: 3.5.0 wm: Twin v: 3.0
    with: kicker vt: 7 dm: 1: TDM 2: XDM Distro: Debian GNU/Linux 11 (bullseye)
Graphics:
  Device-1: Intel 82915G/GV/910GL Integrated Graphics vendor: Dell
    driver: i915 v: kernel arch: Gen-3 code: Intel 130nm built: 2004-05 ports:
    active: VGA-1 empty: none bus-ID: 00:02.0 chip-ID: 8086:2582
    class-ID: 0300
  Display: x11 server: X.Org v: 1.20.11 compositor: Twin v: 3.0 driver: X:
    loaded: intel unloaded: fbdev,modesetting,vesa dri: i915 gpu: i915
    display-ID: :0 screens: 1
  Screen-1: 0 s-res: 1680x1050 s-dpi: 108 s-size: 395x246mm (15.55x9.69")
    s-diag: 465mm (18.32")
  Monitor-1: VGA-1 mapped: VGA1 model: Dell P2213 serial: <filter>
    built: 2012 res: 1680x1050 hz: 60 dpi: 91 gamma: 1.2
    size: 470x300mm (18.5x11.81") diag: 558mm (22") ratio: 16:10 modes:
    max: 1680x1050 min: 720x400
  API: OpenGL v: 1.4 vendor: intel mesa v: 20.3.5 glx-v: 1.4 es-v: 2.0
    direct-render: yes renderer: Mesa DRI Intel 915G x86/MMX/SSE2
    device-ID: 8086:2582 memory: 187.5 MiB unified: yes
#
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: 'I'm sorry, your lift has had a problem and had to shut down' LXer Syndicated Linux News 0 09-05-2016 07:20 AM
Infinite Grub Loop: GRUB GRUB GRUB GRUB GRUB GRUB GRUB GRUB GRUB GRUB... beeblequix MEPIS 2 11-02-2013 10:56 PM
Hello. I've had this computer for five years and have had MANY different distros on i graeyhat Linux - Desktop 2 10-08-2013 01:12 AM
I had a windows xp pro 64 & ubuntu 10.4 dual boot in which I had to reload windows. JEBUP2JE Ubuntu 2 09-24-2010 12:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:39 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