Unix系統常用檢視資訊命令
命令 |
使用OS |
例子 |
說明 |
|
檢視系統資訊 (核心) |
uname -a |
Redhat |
[[email protected] ~]# uname -a Linux rhel66x64 2.6.32-504.el6.x86_64 #1 SMP Tue Sep 16 01:56:35 EDT 2014 x86_64 x86_64 x86_64 GNU/Linux |
系統名:Linux 主機名稱:rhel66x64 系統的發行編號:2.6.32-504.el6.x86_64 核心版本:#1 SMP Tue Sep 16 01:56:35 EDT 2014 位數: x86_64為64位 |
Suse |
linux-gtu2:~ # uname -a Linux linux-gtu2 3.12.49-11-default #1 SMP Wed Nov 11 20:52:43 UTC 2015 (8d714a0) x86_64 x86_64 x86_64 GNU/Linux |
… |
||
Solaris |
# uname -a SunOS solzjx 5.10 Generic_142909-17 sun4v sparc sun4v |
5.10的10 就是solaris10 |
||
Aix |
# uname -a AIX localhost 1 6 000B45DCD700 |
|||
cat /proc/version |
Redhat |
[[email protected] ~]# cat /proc/version Linux version 2.6.32-504.el6.x86_64 ([email protected]) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) ) #1 SMP Tue Sep 16 01:56:35 EDT 2014 |
||
Suse |
linux-gtu2:~ # cat /proc/version Linux version 3.12.49-11-default ([email protected]) (gcc version 4.8.5 (SUSE Linux) ) #1 SMP Wed Nov 11 20:52:43 UTC 2015 |
|||
檢視系統版本 |
cat /etc/redhat-release |
Redhat |
[[email protected] ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 6.6 (Santiago) |
|
cat /etc/issue |
Redhat |
[[email protected] ~]# cat /etc/issue Red Hat Enterprise Linux Server release 6.6 (Santiago) Kernel \r on an \m |
||
lsb_release -a |
Redhat |
[[email protected] ~]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:g raphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: RedHatEnterpriseServer Description: Red Hat Enterprise Linux Server release 6.6 (Santiago) Release: 6.6 Codename: Santiago [[email protected] ~]# |
||
Suse |
linux-gtu2:~ # lsb_release -a LSB Version: n/a Distributor ID: SUSE LINUX Description: SUSE Linux Enterprise Server 12 SP1 Release: 12.1 Codename: n/a |
|||
cat /etc/SuSE-release |
Suse |
linux-gtu2:~ # cat /etc/SuSE-release SUSE Linux Enterprise Server 12 (x86_64) VERSION = 12 PATCHLEVEL = 1 # This file is deprecated and will be removed in a future service pack or release. # Please check /etc/os-release for details about this release. |
||
showrev |
Solaris (預設shell為sh) |
# showrev Hostname: solzjx Hostid: 84fa3365 Release: 5.10 Kernel architecture: sun4v Application architecture: sparc Hardware provider: Sun_Microsystems Domain: Kernel version: SunOS 5.10 Generic_142909-17 # |
||
cat /etc/release |
Solaris |
cat /etc/release Oracle Solaris 11 11/11 SPARC Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights reserved. Assembled 18 October 2011 |
||
檢視作業系統位數 |
getconf LONG_BIT |
Redhat /Suse /Solaris |
[[email protected] ~]# getconf LONG_BIT 64 linux-gtu2:~ # getconf LONG_BIT 64 # getconf LONG_BIT 32 # getconf LONG_BIT 32 |
|
isainfo -v |
Solaris |
# isainfo -v 64-bit sparcv9 applications ima hpc vis3 fmaf asi_blk_init vis2 vis popc 32-bit sparc applications ima hpc vis3 fmaf asi_blk_init vis2 vis popc v8plus div32 mul32 # |
如果是執行在32位模式下, 則有如下輸出: 32-bit sparc applications 如果是執行在64位模式下, 則有如下輸出: 64-bit sparcv9 applications 32-bit sparc applications |
|
isainfo -b -v |
# isainfo -b -v 64-bit sparcv9 applications ima hpc vis3 fmaf asi_blk_init vis2 vis popc # |
|||
機器硬體是32/64位 |
bootinfo -y |
Aix |
# bootinfo -y 64 |
|
系統核心是32/64位 |
bootinfo -K |
Aix |
# bootinfo -K 64 |
|
檢視系統版本型別 |
chedition -l |
Aix |
# chedition -l express |
express、Standard和Enterprise |
檢視IP |
ifconfig |
Redhat/Suse |
||
ifconfig -a |
Redhat/Suse Solaris/Aix |
|||
解壓.tar檔案 |
tar -xvf xx.tar |
Redhat/Suse Solaris |
若Solaris報錯則選擇其他的解壓方式 gtar壓縮超長檔名,用tar解壓時會報錯“tar: ././@LongLink: typeflag 'L' not recognized, converting to regular file”,並在當前目錄下生成一個LongLink檔案 |
|
ln -s /usr/sfw/bin/gtar /usr/bin/gtar gtar -xf xxx.tar |
Solaris 10 |
先建立連結 後再解壓 |
||
解壓tar.gz |
tar -zxvf xxx.tar.gz |
Redhat/Suse |
||
gzip -d xxx.tar.gz tar -xvf xxx.tar |
Solaris |
|||
gunzip -c xxx.tar.gz | tar -xvf - |
Aix |
相關推薦
Unix系統常用檢視資訊命令
命令 使用OS 例子 說明 檢視系統資訊 (核心) uname -a Redhat [[email protected] ~]# uname -a L
CentOS系統中常用檢視日誌命令
cat tail -f 日 志 文 件 說 明 /var/log/message 系統啟動後的資訊和錯誤日誌,是Red Hat Linux中最常用的日誌之一 /var/log/secure 與安全相關的日誌資訊 /var/log/maillog 與郵件相關的日誌資訊 /var/log/c
Linux系統查詢硬體資訊命令大全
在linux系統中,有很多命令可以用於查詢主機的硬體資訊,有些命令僅僅針對於特定的硬體部件,比如cpu,記憶體等,而有些命令可以查詢很多的硬體資訊。 這篇帖子簡單地帶大家瞭解一下最常用的查詢各種硬體資訊的命令,其中包括lscpu,hwinfo,lshw,dmidecode,lspci等等。 1. l
Linux/Unix 下常用解壓縮命令
linux下tar gz bz2 tgz z等眾多壓縮檔案的壓縮與解壓方法,需要的朋友可以參考下 Linux下最常用的打包程式就是tar了,使用tar程式打出來的包我們常稱為tar包,tar包檔案的命令通常都是以.tar結尾的。生成tar包後,就可以用其它的程
Liunx運維(十二)-Liunx系統常用內建命令
文件目錄: 一、Liunx內建命令概述 二、LIunx常用內建命令例項 1、help檢視內建命令幫助2、檢視內建命令使用方法3、":" 佔位符4、 "." 與source5、條件測試"["和test6、命令別名alias和unalias7、後臺任務相關bg/fg/jobs8、break跳出迴圈9、contin
常用檢視Linux系統資訊命令總結
系統 # uname -a # 檢視核心/作業系統/CPU資訊 # head -n 1 /etc/issue # 檢視作業系統版本 # cat /proc/cpuinfo # 檢視CPU資訊 # hostname # 檢視計算機名 # l
ubuntu檢視系統資訊命令
轉自:https://blog.csdn.net/wzz87/article/details/68491953 今天因老闆要求,需要檢視伺服器中的配置資訊,但是對ubuntu命令不是很熟悉,所以就網上進行的查閱,順便做些筆記 檢視處理核資訊 cat /proc/cpuinf
檢視linux系統常用的命令,Linux檢視系統配置常用命令
一、linux CPU大小 cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" 說明:Linux下可以在/proc/cpuinfo中看到每個cpu
Linux-常用檢視系統資源命令小結
mpstat:顯示各個可用CPU的狀態 使用:-P 對應cpu編號 例: suhw@ubuntu:~$ mpstat -P ALL Linux 4.13.0-37-generic (ubuntu) 2018年03月26日
linux 檢視系統資訊命令(比較全)
# iptables -L # 檢視防火牆設定 [[email protected] ~]# iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT
adb常用檢視記憶體資訊的命令
meminfo: basic memory status -adb shell cat proc/meminfo -- 記憶體系統資訊 -adb shell cat proc/pid/maps -- 指定程序記憶體地址對映 -adb shell cat proc/pid
linux常用檢視硬體裝置資訊命令
# cut -d: -f1 /etc/passwd # 檢視系統所有使用者 # cut -d: -f1 /etc/group # 檢視系統所有組 # crontab -l # 檢視當前使用者的計劃任務 服務 # chkconfig --list # 列出所有系統服務 # chkconfig
Linux系統檢視硬體資訊命令總結
lscpu lscpu命令能夠檢視 CPU 和處理單元的資訊,該命令沒有任何其他選項或者別的功能。 lscpu lspci lspci可以用來列出所有的 PCI 匯流排,還有與 PCI 匯流排相連的裝置的詳細資訊,比如 VGA 介面卡、顯示卡、網路介面卡、usb 埠
Linux系統常用命令
所有 目錄 span txt spa png oot http style 首先利用虛擬機安裝Linux系統,在應用程序中找到終端(很重要,因為Linux系統都是以命令的方式執行任務,而所有的命令都要在終端中輸入並且執行),然後輸入命令 1.切換用戶,普通用戶前面顯示$
Linux操作系統常用命令
linux 基礎命令 文件類型 1.文件類型list:ls列出 ,列表目錄:文件,路徑映射路徑:從指定起始點到目的地所經過位置文件系統:file system列出指定路徑下的文件目錄:working directory,current directorypwd:printing working d
作業調度系統常用命令
pan 常用 應用 bpp 標準輸入 inpu 操作 nts his 1. bqueues 可以用來查看隊列, bqueues -l <隊列名〉 查看隊列具體設置 2. 使用bsub可以用來提交作業 bsub -n z -q 隊列名 -i inputfil
文件系統常用命令df、du、fsck、dumpe2fs
debug page 操作 人性 rep freeze eve 註釋 dumpe2fs df 查看文件系統 [[email protected]/* */ ~]# df 文件系統 1K-塊 已用 可用 已用% 掛載點 /dev/
系統管理員常用的Linux命令
網址 pan pytho agent hang 保存 時間 eth0 服務 整理Linux的一些基本系統管理命令作為備忘 =========================================================================
linux系統常用命令 -設置文件夾讀寫權限
ima 所有 執行 權限 描述 分享 linux com bsp 設置文件夾的讀寫權限: sudo chmod -R 777 /data 權限碼描述 sudo chmod 600 ××× (只有所有者有讀和寫的權限)sudo chmod 644 ××× (所有者有讀和寫的權
unix系統簡明教程 命令
目錄文件 pub 文件類型 swd 更新 在線用戶 ctu sci oct who 顯示電腦用戶信息 liu :0 Oct 6 13:17 (:0)liu pts/2 Oct 6 13