一些linux命令

2021-04-13 06:37:11 字數 839 閱讀 8625

rpm -ql mplayer | cat -n檢視軟體包資訊

另外補充下

[root@centos5h ~]# wc --help

用法:wc [選項]... [檔案]...

print newline, word, and byte counts for each file, and a total line if

more than one file is specified.  with no file, or when file is -,

read standard input.

說明:該命令統計給定檔案中的位元組數、字數、行數。如果沒有給出檔名,則從標準輸入讀取。wc

同時也給出所有指定檔案的**計數。字是由空格字元區分開的最大字串

-c, --bytes            print the byte counts

- c 統計位元組數

-m, --chars            print the character counts

-l, --lines            print the newline counts

- l 統計行數

-l, --max-line-length  print the length of the longest line

-w, --words            print the word counts

- w 統計字數

--help     顯示此幫助資訊並退出

--version  輸出版本資訊並退出

2,vim /etc/ld.so.conf   系統動態鏈結庫目錄。修改完後執行   ldconfig

一些Linux命令

1 打tar包檔案 tar cf all.tar filename1 filename2 2 檢視tar包檔案包含的檔案列表 tar tvf all.tar 注 tar常用引數 c 新建打包檔案,可搭配 v來檢視過程中被打包的檔名 t 檢視打包檔案的內容包含哪些檔名,重點在檢視檔名 x 解打包或解壓...

一些 Linux 命令

偶爾需要用到,記錄一下 list debian 6 預設不安裝 sudo,所以需要安裝這個有用的工具 apt get install sudo 接下來需要設立 sudo 的許可權,我們不建議手動修改 etc sudoers 這個檔案,而是使用 visudo 來修改。可以再中間新增一行 user na...

linux 一些命令

1.檢視cpu個數 cat proc cpuinfo grep physical id sort uniq wc l 2.檢視cpu邏輯個數 cat proc cpuinfo grep processor wc l 3.檢視cpu核數 cat proc cpuinfo grep cores uniq...