What is my chipset linux

GNU Linux get info about hardware – identify mainboard model and chipset

if you want to find out what chipset / mainboard your PC / Laptop / Notebook is using and other details about the hardware.

unfortunately this is not a straight forward task… and works better / worse depending on the hardware.

command line / bash

su - root apt update apt install inxi; # apt-get on older debian

output example: ( in this case it is a Dell Notebook and fails to identify the chipset )

the chipset of the Dell Latitude E4310 is according to this screenshot: intel “havendale clarkdale host bridge”

inxi -b System: Host: DebianLaptop Kernel: 3.16.0-4-686-pae i686 (32 bit) Desktop: MATE 1.8.1 Distro: Debian GNU/Linux 8 Machine: System: Dell product: Latitude E4310 v: 0001 serial: XXXXXX Mobo: Dell model: N/A serial: /XXXXXX// Bios: Dell v: A06 date: 02/15/2011 CPU: Dual core Intel Core i5 M 520 (-HT-MCP-) clocked at 1466 MHz Graphics: Card: Intel Core Processor Integrated Graphics Controller Display Server: X.org 1.16.4 drivers: intel (unloaded: fbdev,vesa) tty size: 227x53 Advanced Data: N/A for root Network: Card-1: Intel Centrino Advanced-N 6200 driver: iwlwifi Card-2: Intel 82577LM Gigabit Network Connection driver: e1000e Drives: HDD Total Size: 128.0GB (60.1% used) Info: Processes: 180 Uptime: 1:13 Memory: 1262.1/3914.1MB Client: Shell (bash) inxi: 2.1.28
 apt-cache show inxi Package: inxi Version: 2.1.28-1 Installed-Size: 496 Maintainer: Unit 193 Architecture: all Depends: bash (>= 3.0), gawk, pciutils, procps Recommends: dmidecode, file, hddtemp, iproute2, lm-sensors, mesa-utils, module-init-tools, net-tools, sudo, usbutils, x11-utils, x11-xserver-utils Description-en: full featured system information script Inxi is a system information script that can display various things about your hardware and software to users in an IRC chatroom or support forum. It runs with the /exec command in most IRC clients. Description-md5: 13277f07e950aaf291de2de69ab2684c Homepage: http://code.google.com/p/inxi/ Section: misc Priority: extra Filename: pool/main/i/inxi/inxi_2.1.28-1_all.deb Size: 130596 MD5sum: c03b47ffdb415019134729578ce47d7c SHA1: b95e84490d58fd7957901923a7f1ef66559c0c86 SHA256: 64f303215275c8388bfd04c001cd4388b3b5d34137ae5b34ed202ad62199c86c

X-GUI tool

# it has a gui but also works on command line apt-get update; apt-get install hardinfo; # install hardinfo; # run the thing # in the gui you could choose to bench cpu # it can generate html reports about your system and also has a benchmark section

NAME hardinfo – shows hardware information in a GTK+ window DESCRIPTION hardinfo parses some files in /proc and displays their information in a user-friendly window. This manual page was written for the Debian distribution because the original program does not have a manual page. AUTHOR This manual page was written by Leandro Pereira leandro@linuxmag.com.br, for the Debian project (but may be used by others). June 15, 2003

Читайте также:  Balena etcher install linux

benchmark system:

you can boot a knoppix to perform those benchmarks…

BUT DO NOT BOOT KNOPPIX ON SYSTEMS WITH NTFS AND LSI RAID ADAPTERS. (you might lose your partition table)

harddisk benchmarks

hardware info as html

lshw -html > genarte_report.html; # additional report as html

details about harddisk

# get details of first harddisk like serial number, model, firmware # does not work for NVMe drives hdparm -i /dev/sda # for NVMe use smart smartctl -H /dev/nvme0n1 smartctl -i /dev/nvme0n1 

Get Vendor and Hardware Device IDs

lspci -v; mostly enough info lspci -vvv; maximum detail lspci -n; # show vendorID:hardwareID as numbers 00:00.0 0600: 8086:0a04 (rev 09) 00:02.0 0300: 8086:0a16 (rev 09) 00:03.0 0403: 8086:0a0c (rev 09) 00:14.0 0c03: 8086:9c31 (rev 04) 00:16.0 0780: 8086:9c3a (rev 04) 00:1b.0 0403: 8086:9c20 (rev 04) 00:1c.0 0604: 8086:9c10 (rev e4) 00:1c.3 0604: 8086:9c16 (rev e4) 00:1d.0 0c03: 8086:9c26 (rev 04) 00:1f.0 0601: 8086:9c43 (rev 04) 00:1f.2 0106: 8086:9c03 (rev 04) 00:1f.3 0c05: 8086:9c22 (rev 04) 02:00.0 0200: 10ec:8168 (rev 07) lspci -nn; # resolve vendorID 00:00.0 Host bridge [0600]: Intel Corporation Haswell-ULT DRAM Controller [8086:0a04] (rev 09) 00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 09) 00:03.0 Audio device [0403]: Intel Corporation Haswell-ULT HD Audio Controller [8086:0a0c] (rev 09) 00:14.0 USB controller [0c03]: Intel Corporation 8 Series USB xHCI HC [8086:9c31] (rev 04) 00:16.0 Communication controller [0780]: Intel Corporation 8 Series HECI #0 [8086:9c3a] (rev 04) 00:1b.0 Audio device [0403]: Intel Corporation 8 Series HD Audio Controller [8086:9c20] (rev 04) 00:1c.0 PCI bridge [0604]: Intel Corporation 8 Series PCI Express Root Port 1 [8086:9c10] (rev e4) 00:1c.3 PCI bridge [0604]: Intel Corporation 8 Series PCI Express Root Port 4 [8086:9c16] (rev e4) 00:1d.0 USB controller [0c03]: Intel Corporation 8 Series USB EHCI #1 [8086:9c26] (rev 04) 00:1f.0 ISA bridge [0601]: Intel Corporation 8 Series LPC Controller [8086:9c43] (rev 04) 00:1f.2 SATA controller [0106]: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] [8086:9c03] (rev 04) 00:1f.3 SMBus [0c05]: Intel Corporation 8 Series SMBus Controller [8086:9c22] (rev 04) 02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 07)

liked this article?

  • only together we can create a truly free world
  • plz support dwaves to keep it up & running!
  • (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
  • really really hate advertisement
  • contribute: whenever a solution was found, blog about it for others to find!
  • talk about, recommend & link to this blog and articles
  • thanks to all who contribute!
Читайте также:  Com port linux bash

Источник

Re: как узнать чипсет проца через линух ?

эта мегарулезная весчь, появится только 128 битных процессорах, пока есть только в эксперементальных 86 битных, но ядром уже поддерживается, тока тссссс чтобы M$ не празнала, виндекапец накроется.

Re: как узнать чипсет проца через линух ?

чипсет —> чип + сет
множество чипов

самые важные компоненты: северный и южный мосты

sudo lshw
или там lspci
sudo dmidecode

по материнской плате можно определить чипсет

Re: как узнать чипсет проца через линух ?

Как не разбирая корпус посмотреть модель материнской платы [исправить]

1. Просмотреть содержимое BIOS (проверял под Linux и FreeBSD) dd if=/dev/mem bs=64k skip=15 count=1 | strings | less в первых строчках обычно упоминается название материнской платы.

2. Воспользоваться утилитой dmidecode

Re: как узнать чипсет проца через линух ?

хорошо что еще есть люди которые могу понят что спрашивает человек
толково ответить на вопрос

Re: как узнать чипсет проца через линух ?

Как не разбирая корпус посмотреть модель материнской платы [исправить]

1. Просмотреть содержимое BIOS (проверял под Linux и FreeBSD) dd if=/dev/mem bs=64k skip=15 count=1 | strings | less в первых строчках обычно упоминается название материнской платы.

2. Воспользоваться утилитой dmidecode

таки немного не то имел ввиду

конечно спасибо, но немного не то (
как узнать какой камень (где был произведен, какое у него ядро и т/п/)

допустим Athlonы производят в Орлеане, Мунхине и т/п/

зы хочу разогнать проц, желательно знать эту информацию

Источник

Raiseupwa.com

Raiseupwa.com

Start menu > right-click on My Computer > choose Properties. Click on the Hardware Tab > Device Manager button. In the Device Manager, open the category that says: IDE ATA/ATAPI controllers. You will see your chipset brand there.

How do I get hardware information in Linux?

Basic Linux Commands to Check Hardware and System Information

  1. Printing Machine Hardware Name (uname –m uname –a)
  2. lscpu.
  3. hwinfo- Hardware Information.
  4. lspci- List PCI.
  5. lsscsi-List sci devices.
  6. lsusb- List usb buses and device details.
  7. lsblk- List block devices.
  8. df-disk space of file systems.

Which motherboard do I have Linux?

There’s also some great graphical tools that show you not just your motherboard info, but all info about your computer. Search for the hardinfo package in the Software Center or run sudo apt-get install hardinfo from the command line. The motherboard make and model can be found on the Devices > DMI page.

What is Lspci in Linux?

lspci command is a utility on linux systems used to find out information about the PCI busses and devices connected to the PCI subsystem. The first part ls, is the standard utility used on linux for listing information about the files in the filesystem.

Читайте также:  Стек протоколов tcp ip linux

What is chipset in computer hardware?

Definition of a chipset It’s the traffic controller between the CPU, GPU, RAM, storage, and peripherals. Experts have referred to it as the “glue” of the motherboard. The chipset is basically the electronics on the motherboard that communicate with all the connected components.

What chipset driver do I have?

Search for “device manager’ in windows and see there. Right click on a chipset (might find under “system devices” too), select properties, go to driver tab and check the version.

Can Linux run on any motherboard?

Can Linux run on any motherboard? Linux will run on pretty much anything. Ubuntu will detect the hardware in the installer and install the appropriate drivers. Motherboard manufacturers never qualify their boards for running Linux because it’s still considered a fringe OS.

How to find WiFi chipset driver in Linux?

How to find hardware / chipset name using Terminal in Linux-Unix?

Where do I find the version of the chipset in Linux?

Where can I find processor information in Linux?

Источник

Thread: How do I check my Intel Chipset ?

sml is offlineGee! These Aren’t Roasted!

How do I check my Intel Chipset ?

I would like to find out the chipset on my Lenovo notebook with intel chipset. GM45, GL40, PM965 etc?

a) lspci -v just provides this .
Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
Subsystem: Lenovo Device 3a00

b) using the intel chipset identification utility opens with wine win98 but is not up to date. using win xp, there is a wine issue requiring admin rights .
http://downloadcenter.intel.com/Prod. D=861&lang=eng

c) tried wiping my whole ubuntu install & installing Win XP but it didn’t like my Ext 4 partition and would not install.

d) tried the pci id list and it just says mobile 4 express etc etc
http://pci-ids.ucw.cz/read/PC/8086/2a42

davidmohammed is offlineUbuntu Cappuccino Scuro

Re: How do I check my Intel Chipset ?

I’m not at my jaunty laptop to try this. but

give you the info you require?

thezood is offlineA Carafe of Ubuntu

Re: How do I check my Intel Chipset ?

QuoteOriginally Posted by sml View Post

I would like to find out the chipset on my Lenovo notebook with intel chipset. GM45, GL40, PM965 etc?

a) lspci -v just provides this .
Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
Subsystem: Lenovo Device 3a00

b) using the intel chipset identification utility opens with wine win98 but is not up to date. using win xp, there is a wine issue requiring admin rights .
http://downloadcenter.intel.com/Prod. D=861&lang=eng

c) tried wiping my whole ubuntu install & installing Win XP but it didn’t like my Ext 4 partition and would not install.

Источник

Оцените статью
Adblock
detector