Probing for hardware information
lsscsi
Many people imagine that SCSI drives are obsolete, but, in fact, both hard drives and solid state drives, as well as DVD drives, continue to use SCSI, although in a highly modified standard. For help, lsscsi
has an info file, but not a man file. Adding --list
(-L
), --long
(-l
), and --verbose
(-v
) to the command all give more information, while --classic
(-c
) is the equivalent of:
cat /proc/scsi/scsi
If you want the names of devices, add --generic
(g
) (Figure 7).

dmesg
dmesg
reads the kernel ring buffer where messages about a system's startup messages are stored, including information about the initialization of device drivers or kernel modules. Although the results can often be hit or miss, dmesg
is sometimes an ideal place to start troubleshooting. With the bare command, you can scroll through startup messages, but in most cases, it is more efficient to search instead. For instance, to find messages about USB devices, enter:
dmesg | grep -i usb | less
in which the -i
option ignores letter cases. Note that dmesg
must be run as root. As an alternative to dmesg
, you can read the file /var/log/dmesg
in a text editor (Figure 8).

/proc
The pseudo filesystem /proc
contains information from the kernel. It contains one subdirectory for each process. The names of the subdirectories are usually self-explanatory, such as cpu
, cwd
(current working directory), environ
, and so on. You can view detailed information using a text viewer such as cat
or less
, or sysctl
to read the contents, but be careful not to edit in case you crash the system (Figure 9).

« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.
-
Linux Kernel 6.3 Release Includes Interesting Features
Although it's not a Long Term Release candidate, Linux 6.3 includes features that will benefit end users.
-
Arch-Based blendOS Features Cool Trick
If you're looking for a Linux distribution that blends Linux, Android, and web apps together, blendOS might be what you're looking for.