如何檢視Linux 硬體配置資訊
1.檢視機器所有硬體資訊:
dmidecode |more
dmesg |more
這2個命令出來的資訊都非常多,所以建議後面使用"|more"便於檢視
2.檢視CPU資訊
方法一:
Linux下CPU相關的引數儲存在 /proc/cpuinfo 檔案裡cat /proc/cpuinfo |more方法二:
採用命令dmesg | grep CPU 可以檢視到相關CPU的啟動資訊檢視CPU的位數:
getconf LONG_BIT
3.檢視Mem資訊
cat/proc/meminfo |more (注意輸出資訊的最後一行:MachineMem: 41932272 kB)
free -m
top
4.檢視磁碟資訊
方法一:
fdisk -l 可以看到系統上的磁碟(包括U盤)的分割槽以及大小相關資訊。方法二:
直接檢視
cat /proc/partitions
5.檢視網絡卡資訊
方法一:
ethtool eth0 採用此命令可以檢視到網絡卡相關的技術指標(不一定所有網絡卡都支援此命令)
ethtool -i eth1 加上 -i 引數檢視網絡卡驅動可以嘗試其它引數檢視網絡卡相關技術引數方法二:也可以通過dmesg | grep eth0 等看到網絡卡名字(廠家)等資訊通過檢視/etc/sysconfig/network-scripts/ifcfg-eth0 可以看到當前的網絡卡配置包括IP、閘道器地址等資訊。當然也可以通過
6.如何檢視主機板資訊?lspci
7.如何掛載ISO檔案mount -o loop *.isomount_point
8.如何檢視光碟相關資訊方法一:插入CD光碟後,在本人的RHEL5系統裡,光碟檔案是 /dev/cdrom,因此只需 mount/dev/cdrom mount_point 即可。
[[email protected] tmp]# mount /dev/cdrom mount_point
mount: block device /dev/cdrom is write-protected, mountingread-only
其實仔細看一下,光碟機的裝置檔案是
[[email protected] tmp]# ls -l /dev/cdrom*
lrwxrwxrwx 1 root root 3 01-08 08:54 /dev/cdrom -> hdc
lrwxrwxrwx 1 root root 3 01-08 08:54 /dev/cdrom-hdc -> hdc
因此我們也可以這樣 mount /dev/hdcmount_point
如果光碟機裡沒放入有效光碟,則報錯:
[[email protected] tmp]# mount /dev/hdc mount_point
mount: 找不到介質
9.如何檢視USB裝置相關
方法一:其實通過 fdisk -l 命令可以檢視到接入的U盤資訊,本人的U盤資訊如下:
Disk /dev/sda: 2012 MB, 2012217344 bytes
16 heads, 32 sectors/track, 7676 cylinders
Units = cylinders of 512 * 512 = 262144 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 16 7676 1961024 b W95 FAT32
U盤的裝置檔案是 /dev/sda,2G大小,FAT32格式。如果使用者登陸的不是Linux圖形介面,U盤不會自動掛載上來。此時可以通過手工掛載(mount):
mount /dev/sda1 mount_point
以上命令將U盤掛載到當前目錄的 mount_point 目錄,注意掛的是 sda1 不是 sda。解除安裝命令是 umountmount_point
Linux預設沒有自帶支援NTFS格式磁碟的驅動,但對FAT32支援良好,掛載的時候一般不需要 -t vfat 引數。如果支援ntfs,對ntfs格式的磁碟分割槽應使用 -t ntfs 引數。如果出現亂碼情況,可以考慮用 -o iocharset=字符集引數。可以通過 lsusb 命令檢視 USB 裝置資訊哦:
[[email protected] tmp]# lsusb
Bus 001 Device 001: ID 0000:0000
Bus 002 Device 001: ID 0000:0000
Bus 003 Device 001: ID 0000:0000
Bus 004 Device 002: ID 0951:1613 Kingston Technology
Bus 004 Device 001: ID 0000:0000
相關推薦
如何檢視Linux 硬體配置資訊
1.檢視機器所有硬體資訊:dmidecode |moredmesg |more這2個命令出來的資訊都非常多,所以建議後面使用"|more"便於檢視2.檢視CPU資訊方法一: Linux下CPU相關的引數儲存在 /proc/cpuinfo 檔案裡cat /proc/cpui
檢視伺服器硬體配置資訊
本次由於需要搭建一套環境,但是所需硬體配置不足,需要進行統計採購。那麼就需要得知伺服器現有配置,所以這次會介紹些常用的命令和工具來查詢硬體資訊。其實也可以通過像DELL廠商的IDRAC控制檯來獲取這些資訊,但是比較尷尬的是IBM在獲取硬碟資訊方面支援比較差,僅顯示物理磁碟數量,能夠獲取的資訊很少,這時就需要像
LINUX檢視伺服器硬體配置
LINUX檢視硬體配置 1. 檢視所有硬體的型號 Cmd程式碼 dmidecode | more 結果程式碼 # dmidecode 2.2SMBIOS 2.5 present. 170 structures occupying 4593 bytes. Table
linux下檢視電腦硬體配置
系統 # uname -a # 檢視核心/作業系統/CPU資訊 # head -n 1 /etc/issue # 檢視作業系統版本 # cat /proc/cpuinfo # 檢視CPU資訊 # hostname
2018/11/29 檢視linux系統版本資訊
檢視linux系統版本資訊(Oracle Linux、Centos Linux、Redhat Linux、Debian、Ubuntu) 一、檢視Linux系統版本的命令(3種方法) 1、cat /etc/issue,此命令也適用於所有的Linux發行版。 [[email p
檢視linux系統版本資訊(Oracle Linux、Centos Linux、Redhat Linux、Debian、Ubuntu)
一、檢視Linux系統版本的命令(3種方法) 1、cat /etc/issue,此命令也適用於所有的Linux發行版。 [[email protected] home]# cat /etc/issue CentOS release 6.5 (Final) Kernel
centos 檢視機器硬體配置
1 CPU more /proc/cpuinfo 可以找出 model name, CPU processor 的數目(這個是邏輯處理器的數目)等資訊; 2 Memory free -m 直接檢視total部分知道時間可用的實體記憶體大小; 3 Disk df -
檢視centos硬體配置
1.檢視機器所有硬體資訊: dmidecode |more dmesg |more 這2個命令出來的資訊都非常多,所以建議後面使用"|more"便於檢視 2.檢視CPU資訊 方法一: Linux下CPU相關的引數儲存在 /proc/cpu
檢視linux系統配置(centos/redhat)
一:檢視cpu more /proc/cpuinfo | grep "model name" grep "model name" /proc/cpuinfo 如果覺得需要看的更加舒服 grep "model name" /proc/cpuinfo | cut -f2 -d: 二:檢視記憶
檢視Linux系統配置
1.顯示cpu架構資訊 [[email protected] ~]$ lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(
檢視Linux系統版本資訊 (轉載)
怎樣檢視Linux系統版本資訊的命令... 幾種檢視Linux版本資訊的方法: 1. uname -a Webjx.Com 2. cat /proc/version 3. cat /etc/issue 4. lsb_release -a 詳解 lsb_release -a
Command: 檢視linux系統版本資訊
檢視linux系統版本資訊(Oracle Linux、Centos Linux、Redhat Linux、Debian、Ubuntu) 檢視Linux系統版本的命令(3種方法) 1、cat /etc/issue,此命令也適用於所有的Linux發行版 [[emai
linux中使用ifconfig命令檢視網絡卡資訊時顯示為eth1,但是在network-scripts中只有ifcfg-eth0的配置檔案,並且裡面的NAME="eth0"
除了題目中的問題,其實在執行命令:service network restart時,會報錯: 解決辦法: 首先需要修改70-persistent-net.rules檔案: vim /etc/udev/rules.d/70-persistent-net.rules 然
Linux 檢視CPU資訊,機器型號,記憶體等相關配置資訊
轉載一下以後檢視:https://my.oschina.net/hunterli/blog/140783 系統 # uname -a # 檢視核心/作業系統/CPU資訊 # head -n 1 /etc/issue # 檢視作業系統版本 # cat /proc/c
【Linux】Linux作業系統檢視伺服器配置資訊
檢視伺服器配置資訊 編寫bash shell指令碼檢視Linux作業系統的伺服器配置資訊 1 #!/bin/bash 2 echo "This lists the information of this computer." 3 echo 4 echo "Hostna
linux檢視硬體配置相關指令彙總
轉載自LINUX 檢視硬體配置命令 系統 uname -a # 檢視核心/作業系統/CPU資訊 head -n 1 /etc/issue # 檢視作業系統版本 cat /proc/cpuinfo # 檢視CPU資訊 hostname # 檢視計算機名
Linux 檢視系統硬體資訊(例項詳解)
linux檢視系統的硬體資訊,並不像windows那麼直觀,這裡我羅列了檢視系統資訊的實用命令,並做了分類,例項解說。 cpu lscpu命令,檢視的是cpu的統計資訊. [email protected]:~$ lscpu Architecture:
Git命令列基礎(第一課) - 檢視版本和配置使用者資訊(Linux)
檢視版本和配置使用者資訊 檢視版本 or 確認是否安裝成功 配置 User 資訊 檢視版本 or 確認是否安裝成功 $ git --version 配置 User 資訊 // 配
【Linux命令】檢視硬體配置命令
工作中,經常會檢視安裝Linux系統的伺服器硬體配置及其資源使用情況,比如說,CPU佔用率,記憶體使用情況,磁碟使用情況,網絡卡配置等等資訊。 在這裡彙總一下,方便自己查閱,同時也分享給需要的人。
linux中使用ifconfig命令檢視網絡卡資訊時顯示為eth1,但是在network-scripts中只有ifcfg-eth0的配置檔案,並且裡面的NAME="eth0"。
除了題目中的問題,其實在執行命令:service network restart時,會報錯: 解決辦法: 首先需要修改70-persistent-net.rules檔案: vim /etc/udev/rules.d/70-persistent-net.rules 然後修改ifcfg-eth0檔案: v