LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 11-20-2019, 04:52 PM   #1
TheMagicCookie
LQ Newbie
 
Registered: Nov 2019
Location: Florida, USA
Distribution: Linux Mint
Posts: 10

Rep: Reputation: 0
Question Have to try several times to get Linux to boot


Hello linuxquestions.org!

A few months ago, I installed Linux on a computer I built several years ago. First I installed Fedora, but had this strange problem where after the grub menu, the monitor would say "No signal". I would hold the power button to shut down the computer and try again, and after several attempts it would boot successfully. I continued having this problem, so I switched to Linux Mint to see if this solved the problem. It did not.

The problem seems totally random. Sometimes it boots successfully first try. Sometimes I have to try up to six or seven times. Usually it "catches" after the second or third restart.

I have tried different monitor, different HDMI cable, and tried connecting the HDMI port on the motherboard, and none of it helped, so it is not a graphics problem.

I am currently dual booting with Windows 7 on one hard drive and Linux Mint on the other. I used Windows 7 for years and it never had a problem like this.

When I can get Mint to boot, it works perfectly fine. No crashes or anything to suggest a hard drive or memory or CPU problem.

I have been dealing with this for several months, and its getting a little old! I love Linux Mint otherwise, especially it's Cinnamon desktop, but I would like to resolve this issue. What on earth could be causing a problem like this?

My setup:

AMD Athlon II x3

4GB RAM

1TB Western Digital Hard Drive

ASUS motherboard

Linux Mint 19
 
Old 11-20-2019, 06:48 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,321
Blog Entries: 28

Rep: Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141
Have you looked in log files for some hint as to what might be going awry? https://www.fosslinux.com/8984/how-t...sage-guide.htm

You can also check the logs with the SystemD utility, journalctl. https://www.digitalocean.com/communi...e-systemd-logs
 
Old 11-20-2019, 07:06 PM   #3
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
from your description I suspect hardware problem

intermittent post/boot doesn't scream out "faulty ram" to me
but memtest would rule that out
Code:
sudo apt install memtest86+
will add memtest86+ to grub menu
or you can usually find it on liveCDs boot menu
or stand-alone http://www.memtest.org/

it could be something simple like a dead cmos battery

go into bios setup and make a note of all the settings
save those settings as a profile ( some menu will say load/save , or similar )

reboot and power down

completely disconnect power
leave for a few min
reconnect power, power on

are bios settings reset?

if so , a new "button cell" battery may resolve all your problems

if not,
carefully inspect the mainboard.
you are looking for bad capacitors
https://en.wikipedia.org/wiki/Capacitor_plague

fixable, new caps. are cheap
but soldering skills required, so the real expense is labour costs

it could be the PSU at fault, simply swapping for a new one may fix it
"beg/borrow/steal" one before purchase

and if there is a build up of dust, a can of compressed air might be a worth while investment
 
1 members found this post helpful.
Old 11-20-2019, 09:15 PM   #4
TheMagicCookie
LQ Newbie
 
Registered: Nov 2019
Location: Florida, USA
Distribution: Linux Mint
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by frankbell View Post
Have you looked in log files for some hint as to what might be going awry? https://www.fosslinux.com/8984/how-t...sage-guide.htm

You can also check the logs with the SystemD utility, journalctl. https://www.digitalocean.com/communi...e-systemd-logs
Thank you for those links! I tried the journalctl --list-boot command as specified in the article. One thing I noticed is it doesn't list multiple boots each day. Apparently, the failed boots are not being recorded.

As for the log files, I admit I'm not sure what I'm looking for. I quickly used grep to search the boot log for "error" and "fail" looking for any problems, and didn't find anything. I will keep looking through the other logs to see if anything fishy comes up.
 
Old 11-20-2019, 11:51 PM   #5
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,807
Blog Entries: 1

Rep: Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066
Quote:
Originally Posted by TheMagicCookie View Post
...tried connecting the HDMI port on the motherboard
Instead of what? Are you normally using a PCIe graphics card? If so, you may see improvement by changing the "Primary Video Adapter" setting in the BIOS.

What's the motherboard model number? If Asus has a BIOS update available, try it.

Have you tried having the Grub menu stay on screen for a period before proceeding? Does result of selection improve if you keep the menu onscreen 12, 25, 60 or more seconds?

Something else to try, set the BIOS to do a long POST instead of fast boot.

Try turning off the ASUS powerup graphic if it's enabled now.

Try eliminating graphical boot. To test, strike the E key at the Grub menu, navigate to the end of the line that begins with linu, append a space and plymouth.enable=0, then proceed with boot. If that doesn't help, try noplymouth instead. If neither work, try a few others, such as video=1920x1080 or video=1440x900 or vga=791 or nomodeset, just to see if any of them produce a reliable result. If any do, whatever works can be applied to /etc/default/grub, and/or the alternative video options GRUB_TERMINAL= and/or GRUB_GFXMODE= in /etc/default/grub can be utilized.
 
Old 11-21-2019, 12:01 AM   #6
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
Quote:
Originally Posted by TheMagicCookie View Post
Thank you for those links! I tried the journalctl --list-boot command as specified in the article. One thing I noticed is it doesn't list multiple boots each day. Apparently, the failed boots are not being recorded.

As for the log files, I admit I'm not sure what I'm looking for. I quickly used grep to search the boot log for "error" and "fail" looking for any problems, and didn't find anything. I will keep looking through the other logs to see if anything fishy comes up.
Code:
sudo journalctl -b    # current boot 
sudo journalctl -b -1 # previous boot
sudo journalctl -b -2 # two boots ago
sudo journalctl -b -3 # three ....


#
but how far is it getting?
is it just the display that doesn't work?

can you ssh in after waiting a few min ?
 
Old 11-21-2019, 03:56 PM   #7
TheMagicCookie
LQ Newbie
 
Registered: Nov 2019
Location: Florida, USA
Distribution: Linux Mint
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Firerat View Post
from your description I suspect hardware problem

intermittent post/boot doesn't scream out "faulty ram" to me
but memtest would rule that out
Code:
sudo apt install memtest86+
will add memtest86+ to grub menu
or you can usually find it on liveCDs boot menu
or stand-alone http://www.memtest.org/
OK I ran memtest for over 2 hours. It completed two passes and found no errors.

Quote:
it could be something simple like a dead cmos battery
Actually I changed the CMOS battery around the time I installed linux a few months ago. I cant quite remember if it was right before or after I installed Mint, but it is a new battery.
 
Old 11-21-2019, 04:05 PM   #8
TheMagicCookie
LQ Newbie
 
Registered: Nov 2019
Location: Florida, USA
Distribution: Linux Mint
Posts: 10

Original Poster
Rep: Reputation: 0
OK... So today I tried booting Mint (after I ran memtest) and got the "No signal" message. I had to leave the room for a few minute, and when I came back, it had finished booting. I have tried leaving it for several minutes before and it hadnt helped, so I'm not sure why it worked this time.

I looked at the boot logs in "journalctl -b 0" and I found something interesting. In today's boot that went to "No Signal" for several minutes, I see a number of messages in red stating "watchdog: BUG: soft lockup - CPU#0 stuck for 22s! [kworker/0:2:92]". There were a whole bunch of the exact same warning, some of them stating CPU#1 had locked up, others saying CPU#0.

I did not remember seeing this in the log last night, so I compared this boot to "-b -1", and did not see this message anywhere.

Basically, yesterday's normal startup does not show any "CPU stuck" error, today's startup, which stalled for several minutes, does. Could this indicate the problem?
 
Old 11-21-2019, 04:47 PM   #9
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,807
Blog Entries: 1

Rep: Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066Reputation: 2066
Quote:
Originally Posted by TheMagicCookie View Post
Basically, yesterday's normal startup does not show any "CPU stuck" error, today's startup, which stalled for several minutes, does. Could this indicate the problem?
I believe so, but have no more idea now what to do that what I already wrote, other than searching the web for the CPU stuck error message with accompanying solution or troubleshooting steps.
 
Old 11-21-2019, 04:49 PM   #10
Crippled
Member
 
Registered: Sep 2015
Distribution: MX Linux 21.3 Xfce
Posts: 595

Rep: Reputation: Disabled
This reminds me of one of the computers I built that had a similar booting issue. What I found out was the reboot button on the case went bad and caused random boot fails and other times it would boot fine. Does it boot fine with Windows or any other LINUX disto?
 
Old 11-21-2019, 05:27 PM   #11
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
Quote:
Originally Posted by TheMagicCookie View Post
OK... So today I tried booting Mint (after I ran memtest) and got the "No signal" message. I had to leave the room for a few minute, and when I came back, it had finished booting. I have tried leaving it for several minutes before and it hadnt helped, so I'm not sure why it worked this time.

I looked at the boot logs in "journalctl -b 0" and I found something interesting. In today's boot that went to "No Signal" for several minutes, I see a number of messages in red stating "watchdog: BUG: soft lockup - CPU#0 stuck for 22s! [kworker/0:2:92]". There were a whole bunch of the exact same warning, some of them stating CPU#1 had locked up, others saying CPU#0.

I did not remember seeing this in the log last night, so I compared this boot to "-b -1", and did not see this message anywhere.

Basically, yesterday's normal startup does not show any "CPU stuck" error, today's startup, which stalled for several minutes, does. Could this indicate the problem?
do any stacktraces follow the "lockups"?
what filesystem(s) ?
right now I'm wondering if fsck is running, and causing the lockups


basically we need "lines" above and below those Lockups
 
Old 11-22-2019, 12:22 PM   #12
TheMagicCookie
LQ Newbie
 
Registered: Nov 2019
Location: Florida, USA
Distribution: Linux Mint
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Firerat View Post
do any stacktraces follow the "lockups"?
what filesystem(s) ?
right now I'm wondering if fsck is running, and causing the lockups


basically we need "lines" above and below those Lockups
Now that I look, I notice that there are several lines that always follow the error.

Code:
Nov 21 14:19:48 Enterprise kernel: watchdog: BUG: soft lockup - CPU#0 stuck for 23s! [kworker/0:2:92]
Nov 21 14:19:48 Enterprise kernel: Modules linked in: uas usb_storage hid_generic usbhid hid radeon(+) i2c_algo_bit ttm drm_kms_helper syscopyarea sysfillrect sysimgblt pata_acpi fb_sys_fops psmouse i2c_piix4 pata_atiixp r8169 ahci drm mi
Nov 21 14:19:48 Enterprise kernel: CPU: 0 PID: 92 Comm: kworker/0:2 Tainted: G             L   4.15.0-45-generic #48-Ubuntu
Nov 21 14:19:48 Enterprise kernel: Hardware name: System manufacturer System Product Name/M4A88T-M/USB3, BIOS 0703    12/23/2010
Nov 21 14:19:48 Enterprise kernel: Workqueue: events work_for_cpu_fn
Nov 21 14:19:48 Enterprise kernel: RIP: 0010:set_clock+0x43/0xa0 [radeon]
Nov 21 14:19:48 Enterprise kernel: RSP: 0018:ffffb54c8091f7e8 EFLAGS: 00000286 ORIG_RAX: ffffffffffffff11
Nov 21 14:19:48 Enterprise kernel: RAX: ffffb54c80d26488 RBX: ffff9d7fde36f000 RCX: 0000000000000001
Nov 21 14:19:48 Enterprise kernel: RDX: 00000000000078d9 RSI: 0000000000000001 RDI: ffff9d7fde36f000
Nov 21 14:19:48 Enterprise kernel: RBP: ffffb54c8091f800 R08: ffff9d7fefc270e0 R09: 0000000000000000
Nov 21 14:19:48 Enterprise kernel: R10: ffffb54c8091f9a8 R11: 00000000000001c7 R12: ffff9d7fdf2f0000
Nov 21 14:19:48 Enterprise kernel: R13: 0000000000000001 R14: 0000000000000074 R15: ffff9d7fde36f3f0
Nov 21 14:19:48 Enterprise kernel: FS:  0000000000000000(0000) GS:ffff9d7fefc00000(0000) knlGS:0000000000000000
Nov 21 14:19:48 Enterprise kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Nov 21 14:19:48 Enterprise kernel: CR2: 00007f0a939e25a0 CR3: 000000011dcb2000 CR4: 00000000000006f0
Nov 21 14:19:48 Enterprise kernel: Call Trace:
Nov 21 14:19:48 Enterprise kernel:  sclhi+0x20/0x90 [i2c_algo_bit]
Nov 21 14:19:48 Enterprise kernel:  bit_xfer+0x1dd/0x4f0 [i2c_algo_bit]
Nov 21 14:19:48 Enterprise kernel:  __i2c_transfer+0x123/0x400
Nov 21 14:19:48 Enterprise kernel:  ? _cond_resched+0x19/0x40
Nov 21 14:19:48 Enterprise kernel:  i2c_transfer+0x5e/0xf0
Nov 21 14:19:48 Enterprise kernel:  drm_do_probe_ddc_edid+0xbc/0x140 [drm]
Nov 21 14:19:48 Enterprise kernel:  ? drm_rgb_quant_range_selectable+0x110/0x110 [drm]
Nov 21 14:19:48 Enterprise kernel:  drm_do_get_edid+0xae/0x300 [drm]
Nov 21 14:19:48 Enterprise kernel:  ? drm_do_get_edid+0xae/0x300 [drm]
Nov 21 14:19:48 Enterprise kernel:  drm_get_edid+0x54/0x3d0 [drm]
Nov 21 14:19:48 Enterprise kernel:  radeon_connector_get_edid+0x99/0x140 [radeon]
Nov 21 14:19:48 Enterprise kernel:  radeon_dvi_detect+0x16a/0x670 [radeon]
Nov 21 14:19:48 Enterprise kernel:  ? ww_mutex_lock+0x5a/0x70
Nov 21 14:19:48 Enterprise kernel:  drm_helper_probe_detect+0x84/0x90 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  drm_helper_probe_single_connector_modes+0xe2/0x710 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  ? klist_next+0x1f/0xd0
Nov 21 14:19:48 Enterprise kernel:  ? restart_poweroff_probe+0x40/0x40
Nov 21 14:19:48 Enterprise kernel:  drm_setup_crtcs+0x13f/0xa30 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  ? radeon_dpm_single_display+0x3d/0x50 [radeon]
Nov 21 14:19:48 Enterprise kernel:  ? radeon_pm_compute_clocks+0xcd/0x7a0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  __drm_fb_helper_initial_config_and_unlock+0x41/0x400 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  ? ww_mutex_unlock+0x26/0x30
Nov 21 14:19:48 Enterprise kernel:  drm_fb_helper_initial_config+0x35/0x40 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  radeon_fbdev_init+0x117/0x140 [radeon]
Nov 21 14:19:48 Enterprise kernel:  radeon_modeset_init+0x4a6/0x9f0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  radeon_driver_load_kms+0x140/0x2a0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  drm_dev_register+0x149/0x1d0 [drm]
Nov 21 14:19:48 Enterprise kernel:  drm_get_pci_dev+0x9a/0x180 [drm]
Nov 21 14:19:48 Enterprise kernel:  radeon_pci_probe+0xa0/0xc0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  local_pci_probe+0x47/0xa0
Nov 21 14:19:48 Enterprise kernel:  work_for_cpu_fn+0x1a/0x30
Nov 21 14:19:48 Enterprise kernel:  process_one_work+0x1de/0x410
Nov 21 14:19:48 Enterprise kernel:  worker_thread+0x32/0x410
Nov 21 14:19:48 Enterprise kernel:  kthread+0x121/0x140
Nov 21 14:19:48 Enterprise kernel:  ? process_one_work+0x410/0x410
Nov 21 14:19:48 Enterprise kernel:  ? kthread_create_worker_on_cpu+0x70/0x70
Nov 21 14:19:48 Enterprise kernel:  ret_from_fork+0x22/0x40
Nov 21 14:19:48 Enterprise kernel: Code: 41 89 f5 4c 8b 60 28 8b 87 4c 04 00 00 49 3b 84 24 b0 01 00 00 72 0a 3d ff ff 00 00 48 89 c6 77 5a 49 03 84 24 e8 01 00 00 8b 08 <89> c8 8b 8b 6c 04 00 00 89 ca 09 c1 f7 d2 21 c2 45 85 ed 8b 83 
Nov 21 14:19:48 Enterprise kernel: INFO: NMI handler (perf_event_nmi_handler) took too long to run: 71.781 msecs
Nov 21 14:19:48 Enterprise kernel: INFO: rcu_sched self-detected stall on CPU
These are some of lines that appear before the message:

Code:
Call Trace:
Nov 21 14:19:48 Enterprise kernel:  sclhi+0x56/0x90 [i2c_algo_bit]
Nov 21 14:19:48 Enterprise kernel:  bit_xfer+0x1dd/0x4f0 [i2c_algo_bit]
Nov 21 14:19:48 Enterprise kernel:  __i2c_transfer+0x123/0x400
Nov 21 14:19:48 Enterprise kernel:  ? _cond_resched+0x19/0x40
Nov 21 14:19:48 Enterprise kernel:  i2c_transfer+0x5e/0xf0
Nov 21 14:19:48 Enterprise kernel:  drm_do_probe_ddc_edid+0xbc/0x140 [drm]
Nov 21 14:19:48 Enterprise kernel:  ? drm_rgb_quant_range_selectable+0x110/0x110 [drm]
Nov 21 14:19:48 Enterprise kernel:  drm_do_get_edid+0xae/0x300 [drm]
Nov 21 14:19:48 Enterprise kernel:  ? drm_do_get_edid+0xae/0x300 [drm]
Nov 21 14:19:48 Enterprise kernel:  drm_get_edid+0x54/0x3d0 [drm]
Nov 21 14:19:48 Enterprise kernel:  radeon_connector_get_edid+0x99/0x140 [radeon]
Nov 21 14:19:48 Enterprise kernel:  radeon_dvi_detect+0x16a/0x670 [radeon]
Nov 21 14:19:48 Enterprise kernel:  ? ww_mutex_lock+0x5a/0x70
Nov 21 14:19:48 Enterprise kernel:  drm_helper_probe_detect+0x84/0x90 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  drm_helper_probe_single_connector_modes+0xe2/0x710 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  ? klist_next+0x1f/0xd0
Nov 21 14:19:48 Enterprise kernel:  ? restart_poweroff_probe+0x40/0x40
Nov 21 14:19:48 Enterprise kernel:  drm_setup_crtcs+0x13f/0xa30 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  ? radeon_dpm_single_display+0x3d/0x50 [radeon]
Nov 21 14:19:48 Enterprise kernel:  ? radeon_pm_compute_clocks+0xcd/0x7a0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  __drm_fb_helper_initial_config_and_unlock+0x41/0x400 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  ? ww_mutex_unlock+0x26/0x30
Nov 21 14:19:48 Enterprise kernel:  drm_fb_helper_initial_config+0x35/0x40 [drm_kms_helper]
Nov 21 14:19:48 Enterprise kernel:  radeon_fbdev_init+0x117/0x140 [radeon]
Nov 21 14:19:48 Enterprise kernel:  radeon_modeset_init+0x4a6/0x9f0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  radeon_driver_load_kms+0x140/0x2a0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  drm_dev_register+0x149/0x1d0 [drm]
Nov 21 14:19:48 Enterprise kernel:  drm_get_pci_dev+0x9a/0x180 [drm]
Nov 21 14:19:48 Enterprise kernel:  radeon_pci_probe+0xa0/0xc0 [radeon]
Nov 21 14:19:48 Enterprise kernel:  local_pci_probe+0x47/0xa0
Nov 21 14:19:48 Enterprise kernel:  work_for_cpu_fn+0x1a/0x30
Nov 21 14:19:48 Enterprise kernel:  process_one_work+0x1de/0x410
Nov 21 14:19:48 Enterprise kernel:  worker_thread+0x32/0x410
Nov 21 14:19:48 Enterprise kernel:  kthread+0x121/0x140
Nov 21 14:19:48 Enterprise kernel:  ? process_one_work+0x410/0x410
Nov 21 14:19:48 Enterprise kernel:  ? kthread_create_worker_on_cpu+0x70/0x70
Nov 21 14:19:48 Enterprise kernel:  ret_from_fork+0x22/0x40
Nov 21 14:19:48 Enterprise kernel: Code: 00 00 48 89 fb 48 8b 78 28 8b 83 54 04 00 00 48 3b 87 b0 01 00 00 72 0a 3d ff ff 00 00 48 89 c6 77 18 48 03 87 e8 01 00 00 8b 00 <85> 83 74 04 00 00 5b 5d 0f 95 c0 0f b6 c0 c3 e8 c2 12 01 00 85 
Nov 21 14:19:48 Enterprise kernel: watchdog: BUG: soft lockup - CPU#0 stuck for 23s! [kworker/0:2:92]
Note: Enterprise is the name of my computer.

There is no mention of fsck anywhere.
 
Old 11-22-2019, 12:28 PM   #13
TheMagicCookie
LQ Newbie
 
Registered: Nov 2019
Location: Florida, USA
Distribution: Linux Mint
Posts: 10

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Crippled View Post
This reminds me of one of the computers I built that had a similar booting issue. What I found out was the reboot button on the case went bad and caused random boot fails and other times it would boot fine. Does it boot fine with Windows or any other LINUX disto?
It never has this problem booting to Windows. However, I had this exact problem when I first installed Fedora. Its one of the reasons (there were others) that I switched to Mint. I was hoping switching to Mint would fix this, but it didn't.
 
Old 11-22-2019, 12:48 PM   #14
Crippled
Member
 
Registered: Sep 2015
Distribution: MX Linux 21.3 Xfce
Posts: 595

Rep: Reputation: Disabled
Quote:
Originally Posted by TheMagicCookie View Post
It never has this problem booting to Windows. However, I had this exact problem when I first installed Fedora. Its one of the reasons (there were others) that I switched to Mint. I was hoping switching to Mint would fix this, but it didn't.
That rules out a hardware problem. That means there are issues with the boot loader (Grub). If you have Windows and Linux on one computer it can cause all kinds of issues including this. The only other thing is the settings in the BIOS might need to be changed. Disable secure boot then try to boot. If still no good, try changing in the BIOS to boot in Legacy mode. Then try booting. If all fails you can try a different distro, like MX Linux or one of the Ubuntu flavors like Xubuntu, Kubuntu.
 
Old 11-22-2019, 12:49 PM   #15
Firerat
Senior Member
 
Registered: Oct 2008
Distribution: Debian sid
Posts: 2,683

Rep: Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783Reputation: 783
Quote:
Originally Posted by TheMagicCookie View Post
It never has this problem booting to Windows.
This is making me drift away from the idea of a hardware problem
Quote:
Originally Posted by TheMagicCookie View Post
However, I had this exact problem when I first installed Fedora. Its one of the reasons (there were others) that I switched to Mint. I was hoping switching to Mint would fix this, but it didn't.
This could be a bug in the kernel
it might only be triggered with certain "older hardware" combinations

the stack traces ( which should be in the dmesg ) will begin to narrow things down
 
  


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
The system has failed to boot several times jamasoo Slackware 7 09-13-2018 03:08 PM
With Linux 4.15.4 or later several systemd services fail, like flush and partition services, for several distros fusion809 Linux - Laptop and Netbook 6 04-13-2018 11:23 PM
Resetting several Linux account passwords on several systems using Windows ssh Melindhra667 Linux - Enterprise 1 02-26-2009 07:38 PM
I get this annoying kernel error several times a minute mandrakethepenguin Linux - Hardware 2 08-05-2006 02:20 AM

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

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