LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 12-13-2023, 12:53 PM   #46
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068

Please try this instruction:
  1. Start computer
  2. When Grub menu appears, select "Advanced options for Debian GNU/Linux" and proceed
  3. Select "Debian GNU/Linux, with Linux 5.10.0-13-686-pae"
  4. Strike F10 to proceed to try booting this older 5.10.0-13 kernel
Does it boot Debian 11 without kernel panic?
 
Old 12-13-2023, 01:20 PM   #47
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by beginstart View Post
Here is the pic:

https://ibb.co/ZMsN1Rr
When next you get a kernel panic, give us a more complete picture of the messages. Include all from top to bottom of the screen, instead of the lesser number from the lower part of the screen shown in this image.
 
Old 12-14-2023, 01:47 AM   #48
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,353

Rep: Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590
At the grub menu press e for edit, add "init 2" without the quotes to the end of the line that begins with linux. crtrl-x or f10 to boot. What happens?
 
Old 12-14-2023, 03:54 AM   #49
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by colorpurple21859 View Post
init 2
With systemd, that's equivalent to simply 3, which is equivalent to simply 2, which gets you multi-user.target state. Default is usually graphical.target, which equates to 5.

Code:
# inxi -S
System:
  Host: ab250 Kernel: 6.1.0-13-amd64 arch: x86_64 bits: 64 Console: pty pts/0
    Distro: Debian GNU/Linux 12 (bookworm)
# cat /proc/cmdline root=LABEL=<filter> noresume ipv6.disable=1 net.ifnames=0 consoleblank=0 preempt=full mitigations=off init 2
# systemctl list-units --type target --state active | egrep 'multi|graph|basic'
  basic.target          loaded active active Basic System
  multi-user.target     loaded active active Multi-User System
#
Code:
# inxi -S
System:
  Host: ab250 Kernel: 6.1.0-13-amd64 arch: x86_64 bits: 64 Console: pty pts/0
    Distro: Debian GNU/Linux 12 (bookworm)
# cat /proc/cmdline root=LABEL=<filter> noresume ipv6.disable=1 net.ifnames=0 consoleblank=0 preempt=full mitigations=off 3
# systemctl list-units --type target --state active | egrep 'multi|graph|basic'
  basic.target          loaded active active Basic System
  multi-user.target     loaded active active Multi-User System
# systemctl is-active single.target
inactive
# systemctl is-active user-defined.target
inactive
# systemctl is-active multi-user.target
active
# systemctl is-active graphical.target
inactive
#
https://serverfault.com/questions/83...running-target
 
Old 12-14-2023, 10:18 AM   #50
beginstart
Member
 
Registered: Nov 2023
Posts: 92

Original Poster
Rep: Reputation: 0
"strike E key at Grub menu
move cursor to quiet
remove quiet
type just a 3 where quiet was
after 3, type a space and then type plymouth.enable=0
strike F10 key "

This I did.

I hit e before menue appeared.
Then I did boot "normal".

Panic.

What did I do wrong?

Thank You.
 
Old 12-14-2023, 10:44 AM   #51
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,524

Rep: Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494
In your explanation in post 50, did you see the menuentry on screen when you hit the 'e' key? Did you arrow down with your keyboard to the line beginning with linux and make the suggested changes there? If that is what you did, then hitting either F10 or Ctrl+X should boot so if you did it that way another possible problem was eliminated but a solution was not found. When you do boot successfully from the Advanced menu, are you selecting a menuentry with the vmlinuz file with 13 in it rather than 15?
 
Old 12-14-2023, 02:07 PM   #52
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Based upon the way you responded in post #50, it's unclear whether you correctly followed the instruction. If indeed you followed the instruction correctly, then the following response would have been somewhat more clear:
Quote:
This I did.

I hit e before menu appeared.

"strike E key at Grub menu on 'normal'.
move cursor to quiet
remove quiet
type just a 3 where quiet was
after 3, type a space and then type plymouth.enable=0
strike F10 key "

Then it did

Panic.
Please try to boot using 13 kernel instead of 15. Try normally (without using E key) first. If that fails with panic, try again using E key to edit the linu line as before.
 
Old 12-15-2023, 09:48 AM   #53
beginstart
Member
 
Registered: Nov 2023
Posts: 92

Original Poster
Rep: Reputation: 0
Shall I do this?


At the grub menu press e for edit,

ok


add "init 2" without the quotes to the end of the line that begins with linux. crtrl-x or f10 to boot.

I go to

the line
linux. crtrl-x

I do add
init 2
at the end of that line

What does mean:

f10 to boot.

I understood

add inti 2

then I ll do f10.

Thank You.

Last edited by beginstart; 12-15-2023 at 09:49 AM.
 
Old 12-15-2023, 11:37 AM   #54
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Ctrl-X and F10 both do the same thing, end the editing session your "E" keystroke started.

Appending init or inti to the linu line does nothing at all.

Appending 2 or 3 to the linu line causes the post-Grub Linux boot process to terminate without attempting to start X. If boot is successful, you should have shell login prompts on each of tty1-tty6, and be facing the one on tty1 with boot messages remaining on it. You can opt to leave tty1 to goto any of the other ttys using the Alt key, such as Alt-F3, to reach an otherwise empty screen except for a welcome message and login prompt.
 
Old 12-15-2023, 12:01 PM   #55
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,524

Rep: Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494
At the end of the line beginning with linux, you are to add the number 2 and THEN hit Ctrl+x OR F10 to try to boot.
 
Old 12-17-2023, 06:32 AM   #56
beginstart
Member
 
Registered: Nov 2023
Posts: 92

Original Poster
Rep: Reputation: 0
I shall do:
At the grub menu press e for edit,
ok


add "init 2" without the quotes to the end of the line that begins with linux. crtrl-x or f10 to boot.

I go to

the line
linux. crtrl-x

I do add
init 2
at the end of that line.
Then there is a booting.

Quote:

If boot is successful, you should have shell login prompts on each of tty1-tty6, and be facing the one on tty1 with boot messages remaining on it. You can opt to leave tty1 to goto any of the other ttys using the Alt key, such as Alt-F3, to reach an otherwise empty screen except for a welcome message and login prompt.

Sorry.
I dont understand.
There was then a booting.
Then I see black screen like a terminal.
What do I have to do then?

Shall I tell: ALT
or
ALT with F3?

Then there will appear the "normal" GUI for loging username password?




I follow mrmazda.
I dont understand yancek.

Im sorry.

Thank You.
 
Old 12-17-2023, 08:59 AM   #57
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,813
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by beginstart View Post
There was then a booting.
Then I see black screen like a terminal.
What do I have to do then?

Shall I tell: ALT
or
ALT with F3?
Why do you ask? Your computer is not a bomb. It will not blow you up if you hit a wrong key. Try Alt-F3 here. What do you see?

Quote:
Then there will appear the "normal" GUI for loging username password?
No. But, we expect a black screen that says some things that ends with "login:", so that you can login without a GUI, and type commands like you can in a GUI terminal. Try typing these:
Code:
ls -l /var/log/Xorg.0.lo*
ls -l .local/share/xorg/
ls -l /var/log/journal/*/
Show us what happens by typing here exactly what you see in between code tags.
 
Old 12-17-2023, 11:29 AM   #58
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,524

Rep: Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494Reputation: 2494
Your last post seems to indicate you are hitting Ctrl+X too soon. After going to the line beginning with linux, go to the end of the line using the arrow keys on your keyboard and make any changes you want. After you have done that, you should be able to use either the F10 key or Ctrl+X. You do not use either key until AFTER you have made change to reboot.
 
Old 12-18-2023, 10:00 AM   #59
beginstart
Member
 
Registered: Nov 2023
Posts: 92

Original Poster
Rep: Reputation: 0
I did it.
But panic.
I followed Your suggests
did f10
then many messages from DEBIAN until panic.
Im sorry.

Regards

Last edited by beginstart; 12-21-2023 at 10:53 AM.
 
Old 12-23-2023, 07:58 AM   #60
beginstart
Member
 
Registered: Nov 2023
Posts: 92

Original Poster
Rep: Reputation: 0
Which file is corrupt
which content of a file shall I post?
Regards
Attached Thumbnails
Click image for larger version

Name:	debboot.png
Views:	18
Size:	33.4 KB
ID:	42266  
 
  


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 02:15 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