Would you like to know your system information like as processor details, number of processor core, kernel version, Operating System version and also whether its 32 bit or 64 bit. Able to get the information by below commands,

Your CPU processor Model:

# cat /proc/cpuinfo


processor      : 0
vendor_id       : GenuineIntel
cpu family      : 6
model            : 58
model name   : Intel(R) Core(TM) i3-3110M CPU @ 2.40GHz
stepping         :  9
microcode      : 0x12
cpu MHz        : 1200.000
cache size     : 3072 KB
physical id     : 0
siblings          : 4
core id           : 0
cpu cores      : 2
apicid            : 0
initial apicid   : 0
fdiv_bug        : no
f00f_bug        : no
coma_bug     : no
fpu               : yes
fpu_exception   : yes
cpuid level     : 13
wp                : yes
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 rdtscp lm constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave avx f16c lahf_lm arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
bogomips     : 4789.20
clflush size   : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual


Do you like to see processor model name only:

#  grep -i 'model name' /proc/cpuinfo | uniq

model name      : Intel(R) Core(TM) i3-3110M CPU @ 2.40GHz


Find number of core in processor :

#  lscpu

CPU(s):                4


(or)

# lshw -C processor


Check Operating System Version:

#  cat /etc/lsb-release


DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=13.10
DISTRIB_CODENAME=saucy
DISTRIB_DESCRIPTION="Ubuntu 13.10"

(or)

# lsb_release -a


(or)

# lsb_release -r

Release:        13.10

(or)

# cat /etc/issue

Ubuntu 13.10 \n \l

(or)

cat /etc/issue.net

Ubuntu 13.10



Whether my system is 32 bit o 64 bit?

# uname -a

Linux laks 3.11.0-13-generic #20-Ubuntu SMP Wed Oct 23 17:26:33 UTC 2013 i686 i686 i686 GNU/Linux


(or)

# uname -p  (32 Bit)

i686

# uname -p  (64 Bit)

x86_64

(or)

# getconf LONG_BIT

32

# getconf LONG_BIT

64
 

Find Kernel version:

# uname -a

Linux laks 3.11.0-13-generic #20-Ubuntu SMP Wed Oct 23 17:26:33 UTC 2013 i686 i686 i686 GNU/Linux

(or)

# uname -r

3.11.0-13-generic

(or)

# cat /proc/version

Linux version 3.11.0-13-generic (buildd@aatxe) (gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8) ) #20-Ubuntu SMP Wed Oct 23 17:26:33 UTC 2013