LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 07-13-2009, 05:56 PM   #1
dave247
Member
 
Registered: May 2004
Posts: 206

Rep: Reputation: 30
trying to display my system info


man I suck at Linux... I have Deb 4 and all I want to do is display my system information in the console but idk the command. been searching google and the deb homepage.

:\
 
Old 07-13-2009, 08:32 PM   #2
Hern_28
Member
 
Registered: Mar 2007
Location: North Carolina
Distribution: Slackware 12.0, Gentoo, LFS, Debian, Kubuntu.
Posts: 906

Rep: Reputation: 38
Few to get you sstarted.

List pci devices: lspci

List USB devices: lsusb

Displays loaded modules: lsmod

Lots of info: dmesg

for information on advanced use man

man man for help on using man

Hope that gets you started and good luck

Last edited by Hern_28; 07-13-2009 at 08:33 PM. Reason: clarity
 
Old 07-13-2009, 09:30 PM   #3
Dutch Master
Senior Member
 
Registered: Dec 2005
Posts: 1,686

Rep: Reputation: 124Reputation: 124
lshw knows a lot on your hardware. Recently I was noted to http://conky.sourceforge.net/ for a fancy GUI

Anyway, I've created a small script collecting info on your hardware (with help of others I do admit) you can find here Make it executable and run as root. Obviously you can amend the (GPL'ed) script to include data you want to see.
 
Old 07-14-2009, 07:54 AM   #4
AlucardZero
Senior Member
 
Registered: May 2006
Location: USA
Distribution: Debian
Posts: 4,824

Rep: Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615Reputation: 615
You can also try inxi if you're looking for something concise or usable from, say, irssi.

Code:
alucard@karrde:~$ inxi
CPU[-Single core Intel Xeon L5420 (HT) clocked at 2500.088 Mhz-] Kernel[-2.6.18.8-linode16 i686-] Up[-32 days-] Mem[-400.5/540.2MB-] HDD[-NA(-)-] Procs[-143-] Client[-Shell-] inxi[-1.0.11-]
 
Old 07-14-2009, 02:26 PM   #5
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,889
Blog Entries: 28

Rep: Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534Reputation: 534
dmidecode - Dump Desktop Management Interface data
hwinfo - Hardware identification system
hardinfo - Displays system information
sysinfo - display computer and system information
inxi - System info script for irc (forked from infobash by locsmith)

$ inxi -F
System: Host craigevil Kernel 2.6.30-1.dmz.3-liquorix-686 i686 (32 bit) Distro Debian GNU/Linux squeeze/sid
CPU: Single core Intel Pentium 4 (HT) cache 1024 KB flags (sse3 nx lm) bmips 5592.36
Clock Speeds: (1) 2792.606 MHz (2) 2792.606 MHz
Graphics: Card Intel 82915G/GV/910GL Integrated Graphics Controller X.Org 1.6.1.901 Res: 1280x1024@60.0hz
GLX Renderer Mesa DRI Intel 915G GEM 20090418 2009Q1 x86/MMX/SSE2 GLX Version 1.4 Mesa 7.4.4 Direct Rendering Yes
Audio: Card Intel 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller driver HDA Intel
Sound: Advanced Linux Sound Architecture Version 1.0.20
Network: Card Intel 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller driver e100 at port dcc0
Disks: HDD Total Size: 176.1GB (19.0% used) 1: /dev/sda WDC WD1600JS-75N 160.0GB 2: USB /dev/sdf DataTraveler 2.0 16.1GB
Partition: ID:/ size: 103G used: 19G (19%) ID:swap-1 size: 0.13GB used: 0.00GB (1%)
Info: Processes 101 Uptime 2 days Memory 274.6/493.5MB Client Shell inxi 1.0.17

or for more detailed info :
$ inxi -Flfpu
System: Host craigevil Kernel 2.6.30-1.dmz.3-liquorix-686 i686 (32 bit) Distro Debian GNU/Linux squeeze/sid
CPU: Single core Intel Pentium 4 (HT) cache 1024 KB bmips 5592.36
Clock Speeds: (1) 2792.606 MHz (2) 2792.606 MHz
CPU Flags fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts
acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pebs bts pni dtes64 monitor ds_cpl
cid cx16 xtpr lahf_lm
Graphics: Card Intel 82915G/GV/910GL Integrated Graphics Controller X.Org 1.6.1.901 Res: 1280x1024@60.0hz
GLX Renderer Mesa DRI Intel 915G GEM 20090418 2009Q1 x86/MMX/SSE2 GLX Version 1.4 Mesa 7.4.4 Direct Rendering Yes
Audio: Card Intel 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller driver HDA Intel
Sound: Advanced Linux Sound Architecture Version 1.0.20
Network: Card Intel 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller driver e100 at port dcc0
Disks: HDD Total Size: 176.1GB (19.0% used) 1: /dev/sda WDC WD1600JS-75N 160.0GB 2: USB /dev/sdf DataTraveler 2.0 16.1GB
Partition: ID:/ size: 103G used: 19G (19%) dev: /dev/sda2 label: N/A uuid: 5603c42b-2d73-4b60-a954-ad232cf5c0de
ID:/media/KINGSTON size: 16G used: 13G (86%) dev: /dev/sdf1 label: KINGSTON uuid: 3433-3231
ID:swap-1 size: 0.13GB used: 0.00GB (2%) dev: /dev/ramzswap0 label: N/A uuid: N/A
Info: Processes 101 Uptime 2 days Memory 285.6/493.5MB Client Shell inxi 1.0.17

Last edited by craigevil; 07-14-2009 at 07:07 PM.
 
  


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
How to find out if my system is i386, i486, or i586? Is there a system info command? mlsbraves Linux - General 6 02-17-2009 04:08 PM
what command is used to display an info page? rojo2000r Linux - General 1 05-04-2007 11:44 AM
gnome system monitor display wrong info mvr853 Debian 3 01-31-2007 04:25 PM
system info display application? chunlee Linux - Software 1 12-20-2004 10:52 PM
/proc doesn't display all the info. vexer Slackware 4 06-14-2003 12:45 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

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