[EN] How-to find the version and release of my Linux box
- What is my kernel release
- Print all system information
- Print distribution release
- Who am i ?
- Kernel messages during box booting
- All my PCI devices the kernel found
username@box:/$ uname -r
2.6.17-11-genericusername@box:/$ uname -a
Linux selis-desktop 2.6.17-11-generic #2 SMP Thu Feb 1 19:52:28 UTC 2007 i686 GNU/Linuxusername@box:/$ more /etc/issue
Ubuntu 6.10 \n \lusername@box:/$ whoami
usernameusername@box:/$ dmesg | more
[17179569.184000] Linux version 2.6.17-11-generic (root@terranova) (gcc version 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ub
untu5)) #2 SMP Thu Feb 1 19:52:28 UTC 2007 (Ubuntu 2.6.17-11.35-generic)
[17179569.184000] BIOS-provided physical RAM map:
[17179569.184000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[17179569.184000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
<… many lines of output is skipped …>username@box:/$ lspci
00:00.0 Host bridge: Intel Corporation 82845G/GL[Brookdale-G]/GE/PE DRAM Controller/Host-Hub Interface (rev 03)
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 82)
<… many lines of output is skipped …>
Further reading: man uname, man dmesg, man lspci
@ Category Linux UBUNTU, Tech
<< Back

