LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 10-25-2023, 02:15 AM   #1
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Rep: Reputation: Disabled
Boot time errors in KDE plasma


Is there a file where boot time errors / warnings that show briefly on screen are recorded ?
It is very hard to try and sift through the entire bootlog file, I am just looking for a file that records only those errors.

Thanks
 
Old 10-25-2023, 05:47 AM   #2
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,660
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
Hi, you can find the logs at /var/log

boot, syslog, dmesg. and plenty of others.
 
Old 10-25-2023, 04:50 PM   #3
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
Hi, you can find the logs at /var/log

boot, syslog, dmesg. and plenty of others.
But, is there no way to just see those errors flashing rapidly on screen and I don't manage to read, I assume those showing are the important ones and trying to sift through 1,100 lines is not what I am trying to see. for example:

Code:
RAS: Correctable Errors collector initialized
hp_wmi: query 0x4 returned error 0x5
kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_TZ.ETMD], AE_NOT_FOUND (20221020/psargs-330)
kernel: ACPI Error: Aborting method \_SB.IETM._OSC due to previous error (AE_NOT_FOUND) (20221020/psparse-529)
Thanks
 
Old 10-25-2023, 05:34 PM   #4
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,660
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
There are numerous files that cover different aspects of your system booting.

This may help, I have not read all of this doc, but

it may give you an idea of what process in the boot sequence to research.
https://www.freecodecamp.org/news/th...bed-in-detail/
You could record a video of the boot process, and watch it in slow motion.

I hope this helps your research.

Last edited by GlennsPref; 10-25-2023 at 05:35 PM. Reason: link to web page...
 
Old 10-26-2023, 01:55 AM   #5
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
Hi, you can find the logs at /var/log

boot, syslog, dmesg. and plenty of others.
I read the document, most of it is over my head...
I posted another query to see if I can record the booth process in a vide clip

Many thanks
 
Old 10-26-2023, 05:58 AM   #6
lvm_
Member
 
Registered: Jul 2020
Posts: 983

Rep: Reputation: 348Reputation: 348Reputation: 348Reputation: 348
Try /var/log/boot.log first
 
Old 10-26-2023, 06:11 AM   #7
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by lvm_ View Post
Try /var/log/boot.log first
OK, what should I expect to see?
Thanks
 
Old 10-26-2023, 04:19 PM   #8
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,660
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
some of the quick ways to see errors and failures after boot...

you can scan a text file filter with grep to select only lines that contain ... search-item, like nftables.

Code:
cat /var/log/boot.0 | grep nftables
some other stages...
dmesg | grep -i "error\|warning\|fail\|segfault\|fatal\|not"

system log
cat /var/log/syslog | tail

starting X...
cat /var/log/Xorg.0.log | grep -i "(WW)\|(EE)\|(??)"

cat /home/$USER/.xsession-errors | grep -i "(WW)\|(EE)\|(??)|error\|fail \|segfault\|fatal"

you can use ls (list) to see what a directory contains... because different distros use different names at times.

Last edited by GlennsPref; 10-26-2023 at 04:28 PM. Reason: syslog
 
Old 10-26-2023, 05:37 PM   #9
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
some of the quick ways to see errors and failures after boot...

you can scan a text file filter with grep to select only lines that contain ... search-item, like nftables.

Code:
cat /var/log/boot.0 | grep nftables
some other stages...
dmesg | grep -i "error\|warning\|fail\|segfault\|fatal\|not"

system log
cat /var/log/syslog | tail

starting X...
cat /var/log/Xorg.0.log | grep -i "(WW)\|(EE)\|(??)"

cat /home/$USER/.xsession-errors | grep -i "(WW)\|(EE)\|(??)|error\|fail \|segfault\|fatal"

you can use ls (list) to see what a directory contains... because different distros use different names at times.
I ran the bfollowing command:

Code:
sudo  cat /var/log/boot.log.1 | grep nftables
And, nothing I see nothing after that. This is waht I asking, what do i need to look for after executing the command?

The same with the other commands

Thanks again
 
Old 10-26-2023, 07:34 PM   #10
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,784

Rep: Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936Reputation: 5936
Have you actually looked at the /var/log/boot.log file?
Here is a copy of mine. If there was an error you should see a fail instead of an ok.
Attached Files
File Type: log test1.log (13.3 KB, 4 views)

Last edited by michaelk; 10-26-2023 at 07:44 PM.
 
Old 10-26-2023, 07:50 PM   #11
Jan K.
Member
 
Registered: Apr 2019
Location: Esbjerg
Distribution: Windows 7...
Posts: 773

Rep: Reputation: 489Reputation: 489Reputation: 489Reputation: 489Reputation: 489
Could a logfile viewer be of interest or help? https://www.ubuntupit.com/best-linux...agement-tools/
 
Old 10-26-2023, 08:15 PM   #12
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,660
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
hi, your question of what to do when it comes up empty.

use the ls command to list the directory contents, so you can find the address of the log file.

use cd to change to other directories.

change to log directory (as root)
Code:
cd /var/log
to list the files in this directory
Code:
ls
alternatives.log  boot.4.gz               diskfree.log       exim4           lastlog               popularity-contest       setuid      Xorg.0.log
apt               btmp                    diskfree.log.1.gz  fail2ban.log    lynis.log             popularity-contest.0     syslog      Xorg.0.log.old
auth.log          checksecurity           dmesg              fail2ban.log.1  lynis-report.dat      popularity-contest.1.gz  syslog.1
auth.log.1        checksecurity.log       dmesg.0            faillog         mail.log              popularity-contest.2.gz  sysstat
boot              checksecurity.log.1.gz  dmesg.1.gz         fontconfig.log  mail.log.1            popularity-contest.3.gz  tiger
boot.0            chkrootkit              dmesg.2.gz         fsck            nordvpn               popularity-contest.gpg   tor
boot.1.gz         clamav                  dmesg.3.gz         installer       nvidia-installer.log  runit                    user.log
boot.2.gz         cron.log                dmesg.4.gz         kern.log        nvidia-uninstall.log  samba                    user.log.1
boot.3.gz         cron.log.1              dpkg.log           kern.log.1      openvpn               sddm.log                 wtmp
ls -la will give more details.
 
Old 10-27-2023, 01:47 AM   #13
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
hi, your question of what to do when it comes up empty.

use the ls command to list the directory contents, so you can find the address of the log file.

use cd to change to other directories.

change to log directory (as root)
Code:
cd /var/log
to list the files in this directory
Code:
ls
alternatives.log  boot.4.gz               diskfree.log       exim4           lastlog               popularity-contest       setuid      Xorg.0.log
apt               btmp                    diskfree.log.1.gz  fail2ban.log    lynis.log             popularity-contest.0     syslog      Xorg.0.log.old
auth.log          checksecurity           dmesg              fail2ban.log.1  lynis-report.dat      popularity-contest.1.gz  syslog.1
auth.log.1        checksecurity.log       dmesg.0            faillog         mail.log              popularity-contest.2.gz  sysstat
boot              checksecurity.log.1.gz  dmesg.1.gz         fontconfig.log  mail.log.1            popularity-contest.3.gz  tiger
boot.0            chkrootkit              dmesg.2.gz         fsck            nordvpn               popularity-contest.gpg   tor
boot.1.gz         clamav                  dmesg.3.gz         installer       nvidia-installer.log  runit                    user.log
boot.2.gz         cron.log                dmesg.4.gz         kern.log        nvidia-uninstall.log  samba                    user.log.1
boot.3.gz         cron.log.1              dpkg.log           kern.log.1      openvpn               sddm.log                 wtmp
ls -la will give more details.
OK, this what I see when i move to that directory, I am still unclear what to do next

Code:
drwxrwxr-x  10 root   syslog              4096 Oct 27 17:33 .
drwxr-xr-x  12 root   root                4096 Sep 28 17:38 ..
-rw-r--r--   1 root   root               35772 Oct 21 19:04 alternatives.log
drwxr-xr-x   2 root   root                4096 Oct 22 17:05 apt
-rw-r-----   1 syslog adm                91541 Oct 27 17:38 auth.log
-rw-------   1 root   root                6956 Oct 27 17:33 boot.log
-rw-------   1 root   root                6533 Oct 26 00:00 boot.log.1
-rw-------   1 root   root               61440 Oct 25 18:11 boot.log.2
-rw-------   1 root   root               31087 Oct 24 00:00 boot.log.3
-rw-r--r--   1 root   root              119989 Sep 28 17:22 bootstrap.log
-rw-rw----   1 root   utmp                   0 Sep 28 17:21 btmp
drwxr-xr-x   2 root   root                4096 Oct 27 00:00 cups
drwxr-xr-x   2 root   root                4096 Aug 24 20:45 dist-upgrade
-rw-r-----   1 root   adm                90222 Oct 27 17:33 dmesg
-rw-r-----   1 root   adm                92938 Oct 25 17:56 dmesg.0
-rw-r-----   1 root   adm                24166 Oct 24 17:15 dmesg.1.gz
-rw-r-----   1 root   adm                24258 Oct 24 12:31 dmesg.2.gz
-rw-r-----   1 root   adm                23989 Oct 24 10:35 dmesg.3.gz
-rw-r-----   1 root   adm                24006 Oct 22 17:46 dmesg.4.gz
-rw-r--r--   1 root   root             1547819 Oct 22 17:05 dpkg.log
-rw-r--r--   1 root   root               32032 Oct 21 18:00 faillog
-rw-r--r--   1 root   root                3937 Sep 28 17:32 fontconfig.log
-rw-r--r--   1 root   root                1489 Oct 27 17:33 gpu-manager.log
drwxr-xr-x   3 root   root                4096 Sep 28 17:27 hp
drwxr-xr-x   2 root   root                4096 Oct 21 18:01 installer
drwxr-sr-x+  3 root   systemd-journal     4096 Oct 21 18:02 journal
-rw-r-----   1 syslog adm              1183661 Oct 27 17:38 kern.log
-rw-rw-r--   1 root   utmp              292292 Oct 21 18:00 lastlog
-rw-r--r--   1 root   root               64333 Oct 25 18:25 output
drwx------   2 root   root                4096 Sep 28 17:21 private
drwxr-x---   2 root   adm                 4096 Aug 18 23:53 samba
-rw-r--r--   1 sddm   sddm                   0 Oct 21 19:02 sddm.log
-rw-r-----   1 syslog adm             26229746 Oct 27 17:43 syslog
-rw-rw-r--   1 root   utmp               14208 Oct 27 17:33 wtmp
-rw-r--r--   1 root   root               38453 Oct 27 17:33 Xorg.0.log
-rw-r--r--   1 root   root               95955 Oct 27 10:12 Xorg.0.log.old
 
Old 10-27-2023, 02:12 AM   #14
alex4buba
Member
 
Registered: Jul 2020
Posts: 624

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by GlennsPref View Post
some of the quick ways to see errors and failures after boot...

you can scan a text file filter with grep to select only lines that contain ... search-item, like nftables.

Code:
cat /var/log/boot.0 | grep nftables
some other stages...
dmesg | grep -i "error\|warning\|fail\|segfault\|fatal\|not"

system log
cat /var/log/syslog | tail

starting X...
cat /var/log/Xorg.0.log | grep -i "(WW)\|(EE)\|(??)"

cat /home/$USER/.xsession-errors | grep -i "(WW)\|(EE)\|(??)|error\|fail \|segfault\|fatal"

you can use ls (list) to see what a directory contains... because different distros use different names at times.
I executed the command "cat /var/log/syslog | tail"

and got the following

Code:
Oct 27 17:48:59 alexe kioslave5[3759]: QObject::connect: No such slot DesktopProtocol::_k_slotRedirection(KIO::Job *, QUrl)
Oct 27 17:49:04 alexe plasmashell[1134]: kf.service.services: KApplicationTrader: mimeType "x-scheme-handler/file" not found
Oct 27 17:49:04 alexe systemd[887]: Started Kate - Advanced Text Editor.
Oct 27 17:49:05 alexe plasmashell[3766]: Hspell: can't open /usr/share/hspell/hebrew.wgz.sizes.
Oct 27 17:49:05 alexe kate[3766]: kf.sonnet.clients.hspell: HSpellDict::HSpellDict: Init failed
Oct 27 17:51:57 alexe systemd[887]: Started Kate - Advanced Text Editor.
Oct 27 17:51:59 alexe plasmashell[3805]: Hspell: can't open /usr/share/hspell/hebrew.wgz.sizes.
Oct 27 17:51:59 alexe kate[3805]: kf.sonnet.clients.hspell: HSpellDict::HSpellDict: Init failed
Oct 27 17:52:28 alexe kwin_x11[1062]: kwin_core: XCB error: 152 (BadDamage), sequence: 9162, resource id: 18896980, major code: 143 (DAMAGE), minor code: 3 (Subtract)
Oct 27 17:59:59 alexe baloo_file_extractor[1611]: kf.baloo: "/home/alexe/afolders/cktwsbhx.default-release-20230302-1745/ImapMail/imap.gmail.com/[Gmail].sbd/Important" id seems to have changed. Perhaps baloo was not running, and this file was deleted + re-created
alexe@alexe:/var/log$ sudo journalctl
Oct 21 18:02:23 alexe kernel: microcode: microcode updated early to revision 0x4119, date = 2023-06-06
Oct 21 18:02:23 alexe kernel: Linux version 6.2.0-33-generic (buildd@lcy02-amd64-073) (x86_64-linux-gnu-gcc-11 (Ubu>
Oct 21 18:02:23 alexe kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-6.2.0-33-generic root=UUID=d4b05b1e-24b1-4aef->
Oct 21 18:02:23 alexe kernel: KERNEL supported cpus:
Oct 21 18:02:23 alexe kernel:   Intel GenuineIntel
Oct 21 18:02:23 alexe kernel:   AMD AuthenticAMD
Oct 21 18:02:23 alexe kernel:   Hygon HygonGenuine
Oct 21 18:02:23 alexe kernel:   Centaur CentaurHauls
Oct 21 18:02:23 alexe kernel:   zhaoxin   Shanghai  
Oct 21 18:02:23 alexe kernel: BIOS-provided physical RAM map:
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000698b0fff] usable
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x00000000698b1000-0x000000006f913fff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x000000006f914000-0x000000006fb13fff] ACPI NVS
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x000000006fb14000-0x000000006fbfefff] ACPI data
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x000000006fbff000-0x000000006fbfffff] usable
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x000000006fc00000-0x0000000075ffffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x0000000077400000-0x00000000777fffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x0000000078000000-0x00000000807fffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Oct 21 18:02:23 alexe kernel: BIOS-e820: [mem 0x0000000100000000-0x000000087f7fffff] usable
Oct 21 18:02:23 alexe kernel: NX (Execute Disable) protection: active
Oct 21 18:02:23 alexe kernel: efi: EFI v2.70 by HP
Oct 21 18:02:23 alexe kernel: efi: ACPI=0x6fbfe000 ACPI 2.0=0x6fbfe014 TPMFinalLog=0x6fa90000 SMBIOS=0x6a024000 ESR>
Oct 21 18:02:23 alexe kernel: random: crng init done
Oct 21 18:02:23 alexe kernel: efi: Remove mem450: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
Oct 21 18:02:23 alexe kernel: e820: remove [mem 0xc0000000-0xcfffffff] reserved
Oct 21 18:02:23 alexe kernel: efi: Remove mem452: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Oct 21 18:02:23 alexe kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Oct 21 18:02:23 alexe kernel: secureboot: Secure boot enabled
Oct 21 18:02:23 alexe kernel: Kernel is locked down from EFI Secure Boot mode; see man kernel_lockdown.7
Oct 21 18:02:23 alexe kernel: SMBIOS 3.4 present.
Oct 21 18:02:23 alexe kernel: DMI: HP HP ProBook 450 15.6 inch G10 Notebook PC/8B7C, BIOS V72 Ver. 01.01.07 05/11/2>
Oct 21 18:02:23 alexe kernel: tsc: Detected 2600.000 MHz processor
Oct 21 18:02:23 alexe kernel: tsc: Detected 2611.200 MHz TSC
Oct 21 18:02:23 alexe kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Oct 21 18:02:23 alexe kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Oct 21 18:02:23 alexe kernel: last_pfn = 0x87f800 max_arch_pfn = 0x400000000
Oct 21 18:02:23 alexe kernel: total RAM covered: 63424M
Oct 21 18:02:23 alexe kernel: Found optimal setting for mtrr clean up
Oct 21 18:02:23 alexe kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 6          lose cover RAM: >
Oct 21 18:02:23 alexe kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Oct 21 18:02:23 alexe kernel: e820: update [mem 0x7c000000-0xffffffff] usable ==> reserved
Oct 21 18:02:23 alexe kernel: last_pfn = 0x6fc00 max_arch_pfn = 0x400000000
Oct 21 18:02:23 alexe kernel: esrt: Reserving ESRT space from 0x000000006a022198 to 0x000000006a022248.
Oct 21 18:02:23 alexe kernel: Using GB pages for direct mapping
Oct 21 18:02:23 alexe kernel: Incomplete global flushes, disabling PCID
Oct 21 18:02:23 alexe kernel: secureboot: Secure boot enabled
Oct 21 18:02:23 alexe kernel: RAMDISK: [mem 0x3e57f000-0x45e62fff]
Oct 21 18:02:23 alexe kernel: ACPI: Early table checksum verification disabled
Oct 21 18:02:23 alexe kernel: ACPI: RSDP 0x000000006FBFE014 000024 (v02 HPQOEM)
Oct 21 18:02:23 alexe kernel: ACPI: XSDT 0x000000006FB44228 000184 (v01 HPQOEM SLIC-BPC 00000000      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: FACP 0x000000006FBCD000 000114 (v06 HPQOEM SLIC-BPC 00000000 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: DSDT 0x000000006FB77000 052EBB (v02 HPQOEM 8B7C     00000000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: FACS 0x000000006FA6E000 000040
Oct 21 18:02:23 alexe kernel: ACPI: RTMA 0x000000006FBFC000 00009E (v01 HP     _HBMART_ 00001000 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBFA000 001A39 (v02 HP     UcsiAcpi 00000001 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBF9000 0000FB (v02 HP     UcsiCntr 00000001 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBF8000 0002D7 (v02 HP     NVTEC    00000001 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBF7000 00013E (v02 HP     ShmTable 00000001 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBF6000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBF0000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBEB000 004F46 (v02 HPQOEM PLT_RTD3 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: OEML 0x000000006FBEA000 000028 (v03 HPQOEM RPL      00000002      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBE8000 001D8A (v02 HP     LAPTOPPC 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBE6000 0005FB (v02 HPQOEM Tpm2Tabl 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: TPM2 0x000000006FBE5000 00004C (v04 HPQOEM RPL      00000002      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBE2000 0029B6 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBDE000 00345E (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBD0000 00D488 (v02 INTEL  TcssSsdt 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: MSDM 0x000000006FBCF000 000055 (v03 HPQOEM SLIC-BPC 00000000 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: WSMT 0x000000006FBCE000 000028 (v01 HPQOEM 8B7C     00000001 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: HPET 0x000000006FBCC000 000038 (v01 HPQOEM 8B7C     00000001 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: APIC 0x000000006FBCB000 0001DC (v05 HPQOEM 8B7C     00000001 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: MCFG 0x000000006FBFD000 00003C (v01 HPQOEM 8B7C     00000001 HP   00000001)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB76000 0009D2 (v02 HPQOEM HP_XHC_P 00000000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB6C000 009A9A (v02 DptfTb DptfTabl 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: WSMT 0x000000006FB6A000 000028 (v01 HPQOEM          00000000      00000000)
Oct 21 18:02:23 alexe kernel: ACPI: NHLT 0x000000006FB69000 000F21 (v00 HPQOEM RPL      00000002      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: DMAR 0x000000006FB68000 000088 (v02 INTEL  RPL      00000002 INTL 01000013)
Oct 21 18:02:23 alexe kernel: ACPI: FPDT 0x000000006FB67000 000044 (v01 HPQOEM RPL      00000002      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB5B000 00B2EC (v02 HPQOEM MS-SSDT  00003000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: LPIT 0x000000006FB6B000 0000CC (v01 HPQOEM RPL      00000002      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB57000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB53000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB52000 0002C7 (v02 HP     HPNBCONV 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB51000 0003ED (v02 HP     INTTPL   00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB4E000 002102 (v02 Rtd3   AdlP_Rvp 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB4D000 000493 (v01 HP     PECNBSDT 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB49000 00365C (v02 HP     HPINNBWL 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB48000 000032 (v02 HP     HPCONDEV 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB47000 000116 (v02 HP     HPSANIMD 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB46000 000F24 (v02 HP     HPINTELG 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FB45000 000069 (v02 HP     HPCAHWID 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBCA000 00004B (v01 HP     CAPAHWID 00001000 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: BGRT 0x000000006FB43000 000038 (v01 HPQOEM RPL      00000002      01000013)
Oct 21 18:02:23 alexe kernel: ACPI: PHAT 0x000000006FB42000 0004EA (v01 HPQOEM SLIC-BPC 00000005 MSFT 0100000D)
Oct 21 18:02:23 alexe kernel: ACPI: SSDT 0x000000006FBE7000 0002F9 (v02 HP     PwrCtlEv 00000001 INTL 20200717)
Oct 21 18:02:23 alexe kernel: ACPI: Reserving FACP table memory at [mem 0x6fbcd000-0x6fbcd113]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving DSDT table memory at [mem 0x6fb77000-0x6fbc9eba]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving FACS table memory at [mem 0x6fa6e000-0x6fa6e03f]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving RTMA table memory at [mem 0x6fbfc000-0x6fbfc09d]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbfa000-0x6fbfba38]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbf9000-0x6fbf90fa]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbf8000-0x6fbf82d6]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbf7000-0x6fbf713d]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbf6000-0x6fbf638b]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbf0000-0x6fbf5d33]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbeb000-0x6fbeff45]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving OEML table memory at [mem 0x6fbea000-0x6fbea027]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbe8000-0x6fbe9d89]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbe6000-0x6fbe65fa]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving TPM2 table memory at [mem 0x6fbe5000-0x6fbe504b]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbe2000-0x6fbe49b5]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbde000-0x6fbe145d]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbd0000-0x6fbdd487]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving MSDM table memory at [mem 0x6fbcf000-0x6fbcf054]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving WSMT table memory at [mem 0x6fbce000-0x6fbce027]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving HPET table memory at [mem 0x6fbcc000-0x6fbcc037]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving APIC table memory at [mem 0x6fbcb000-0x6fbcb1db]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving MCFG table memory at [mem 0x6fbfd000-0x6fbfd03b]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb76000-0x6fb769d1]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb6c000-0x6fb75a99]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving WSMT table memory at [mem 0x6fb6a000-0x6fb6a027]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving NHLT table memory at [mem 0x6fb69000-0x6fb69f20]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving DMAR table memory at [mem 0x6fb68000-0x6fb68087]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving FPDT table memory at [mem 0x6fb67000-0x6fb67043]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb5b000-0x6fb662eb]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving LPIT table memory at [mem 0x6fb6b000-0x6fb6b0cb]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb57000-0x6fb5aae9]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb53000-0x6fb569d9]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb52000-0x6fb522c6]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb51000-0x6fb513ec]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb4e000-0x6fb50101]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb4d000-0x6fb4d492]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb49000-0x6fb4c65b]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb48000-0x6fb48031]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb47000-0x6fb47115]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb46000-0x6fb46f23]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fb45000-0x6fb45068]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbca000-0x6fbca04a]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving BGRT table memory at [mem 0x6fb43000-0x6fb43037]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving PHAT table memory at [mem 0x6fb42000-0x6fb424e9]
Oct 21 18:02:23 alexe kernel: ACPI: Reserving SSDT table memory at [mem 0x6fbe7000-0x6fbe72f8]
Oct 21 18:02:23 alexe kernel: No NUMA configuration found
Oct 21 18:02:23 alexe kernel: Faking a node at [mem 0x0000000000000000-0x000000087f7fffff]
Oct 21 18:02:23 alexe kernel: NODE_DATA(0) allocated [mem 0x87f7d5000-0x87f7fffff]
Oct 21 18:02:23 alexe kernel: Zone ranges:
Oct 21 18:02:23 alexe kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Oct 21 18:02:23 alexe kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Oct 21 18:02:23 alexe kernel:   Normal   [mem 0x0000000100000000-0x000000087f7fffff]
Oct 21 18:02:23 alexe kernel:   Device   empty
Oct 21 18:02:23 alexe kernel: Movable zone start for each node
Oct 21 18:02:23 alexe kernel: Early memory node ranges
Oct 21 18:02:23 alexe kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Oct 21 18:02:23 alexe kernel:   node   0: [mem 0x0000000000100000-0x00000000698b0fff]
Oct 21 18:02:23 alexe kernel:   node   0: [mem 0x000000006fbff000-0x000000006fbfffff]
Oct 21 18:02:23 alexe kernel:   node   0: [mem 0x0000000100000000-0x000000087f7fffff]
Oct 21 18:02:23 alexe kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000087f7fffff]
Oct 21 18:02:23 alexe kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Oct 21 18:02:23 alexe kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Oct 21 18:02:23 alexe kernel: On node 0, zone DMA32: 25422 pages in unavailable ranges
Oct 21 18:02:23 alexe kernel: On node 0, zone Normal: 1024 pages in unavailable ranges
Oct 21 18:02:23 alexe kernel: On node 0, zone Normal: 2048 pages in unavailable ranges
Oct 21 18:02:23 alexe kernel: Reserving Intel graphics memory at [mem 0x7c800000-0x807fffff]
Oct 21 18:02:23 alexe kernel: ACPI: PM-Timer IO Port: 0x1808
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Oct 21 18:02:23 alexe kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Oct 21 18:02:23 alexe kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 21 18:02:23 alexe kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 21 18:02:23 alexe kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Oct 21 18:02:23 alexe kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Oct 21 18:02:23 alexe kernel: e820: update [mem 0x5ce20000-0x5ce95fff] usable ==> reserved
Oct 21 18:02:23 alexe kernel: TSC deadline timer available
Oct 21 18:02:23 alexe kernel: smpboot: Allowing 12 CPUs, 0 hotplug CPUs
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x5ce20000-0x5ce95fff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x698b1000-0x6f913fff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x6f914000-0x6fb13fff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x6fb14000-0x6fbfefff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x6fc00000-0x75ffffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x76000000-0x773fffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x77400000-0x777fffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x77800000-0x77ffffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x78000000-0x807fffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0x80800000-0xfed1ffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Oct 21 18:02:23 alexe kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
Oct 21 18:02:23 alexe kernel: [mem 0x80800000-0xfed1ffff] available for PCI devices
Oct 21 18:02:23 alexe kernel: Booting paravirtualized kernel on bare hardware
Oct 21 18:02:23 alexe kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7>
Oct 21 18:02:23 alexe kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
Oct 21 18:02:23 alexe kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
Oct 21 18:02:23 alexe kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
Oct 21 18:02:23 alexe kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
Oct 21 18:02:23 alexe kernel: Fallback order for Node 0: 0 
Oct 21 18:02:23 alexe kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8164719
Oct 21 18:02:23 alexe kernel: Policy zone: Normal
Oct 21 18:02:23 alexe kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.2.0-33-generic root=UUID=d4b05b1e-24b>
Oct 21 18:02:23 alexe kernel: Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.2.0-33-gene>
Oct 21 18:02:23 alexe kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
alexe@alexe:/var/log$ cat /var/log/Xorg.0.log | grep -i "(WW)\|(EE)\|(??)"
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     6.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[     6.453] (WW) Falling back to old probe method for fbdev
[    34.586] (WW) Option "xkb_variant" requires a string value
[    34.586] (WW) Option "xkb_options" requires a string value
[    34.612] (WW) Option "xkb_variant" requires a string value
[    34.612] (WW) Option "xkb_options" requires a string value
and then : cat /var/log/Xorg.0.log | grep -i "(WW)\|(EE)\|(??)"

Code:
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     6.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[     6.401] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[     6.453] (WW) Falling back to old probe method for fbdev
[    34.586] (WW) Option "xkb_variant" requires a string value
[    34.586] (WW) Option "xkb_options" requires a string value
[    34.612] (WW) Option "xkb_variant" requires a string value
[    34.612] (WW) Option "xkb_options" requires a string value
On the last one I see the word "error", should I be concerned about that?

During boot time, I see more than one flash message, can't see waht it says, but I assume it is an error, or maybe just a worning?
 
Old 10-27-2023, 06:45 AM   #15
GlennsPref
Senior Member
 
Registered: Apr 2004
Location: Brisbane, Australia
Distribution: Devuan
Posts: 3,660
Blog Entries: 33

Rep: Reputation: 283Reputation: 283Reputation: 283
Hi, the error you see in the last post... cat /var/log/Xorg.0.log | grep -i "(WW)\|(EE)\|(??)"

is from some fonts that could be installed later. But X is much later in the boot sequence.

there is about 6 levels...
bios, grub, kernel, init-runlevels, window-managers (X)..

cd /var/log
boot.log
dmesg
kern.log
syslog
Xorg.0.log

search through (traditionally text files) looking for (piping through 'grep') the error you saw.

When you find it, then you could use your search engine to see if there's a fix or a problem.
 
  


Reply

Tags
boot, errors, kde plasma 5



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: Plasma 5.27 is released, marking the end of Plasma 5's reign. It's time to hand over the throne! LXer Syndicated Linux News 0 02-25-2023 03:06 PM
LXer: KDE Plasma 5.24 Will Be the Next LTS Release Receiving Support Until KDE Plasma 6 LXer Syndicated Linux News 0 01-28-2022 08:33 AM
LXer: Solus Readies KDE Plasma Edition Testing ISO with Latest KDE Plasma 5.14 Desktop LXer Syndicated Linux News 0 10-25-2018 03:03 PM
LXer: KDE Plasma 5.13 Desktop Reaches End of Life, KDE Plasma 5.14 Arrives October 9 LXer Syndicated Linux News 0 09-15-2018 10:30 PM
Errors, Errors, and more Errors (KDE 3.4.x GUI Errors) Dralnu Linux - Software 2 05-13-2006 08:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:12 AM.

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