https://bugs.kde.org/show_bug.cgi?id=400079
--- Comment #9 from Brian Kaye <b...@unb.ca> --- On my system (Fedora 34) the directory " /sys/devices/virtual/dmi/id" contains much of the system information that might be displayed in kinfocenter. Some items like the serial number need authorization. The little script below displays the contents. Some info is probably not useful. Other systems my have the info in different locations. So maybe there is no need to run the dmidecode command. There is a "power" subdirectory but I am not sure of the contents yet. DIR="/sys/devices/virtual/dmi/id/*" for i in ${DIR}; do if ! [ -d $i ]; then echo -ne ${i} "\t"; cat ${i}; fi; done -- You are receiving this mail because: You are watching all bug changes.