linux基礎 基本命令(中)

2021-10-23 20:05:19 字數 1542 閱讀 9450

定時任務

uname
uname -r
cat  /proc/cpuinfo
cat  /proc/meminfo
date
cal 年份
date -s 2020-8-26

date -s 11:40:30

df -lh
du -sh 目錄
fsck 磁碟
mount
mount 磁碟
umount 磁碟
free -m
top
rpm -qa|

grep ***xx

rpm -e --nodeps ***x
rpm -ivh ***x.rpm
zip ***.zip file
unzip ***x.zip
tar -zxvf ***.tar.gz
tar -zxvf ***.tar.gz -c dir
tar -zcvf ***x.tar.gz dir/file
例項,在hello使用者下建立定時任務,功能是每分鐘執行一次,將時間寫入到指定檔案

crontab -e

*/1 * * * */bin/date >> /home/hello/log.txt

crontab -l
crontab -r
語法:

* * * * * commnd
說明:

六個字段之間,逗號隔開

字段含義:

第乙個 * 號:分鐘1-59 ,例:每十分鐘 */10

第二個 * 號:小時0-23 ,例:每兩小時 */2

第三個 * 號:日1-31

第四個 * 號:月1-12

第五個 * 號:星期0-6

舉一些例子:

### 每天21.30執行

3021**

* cmd

### 每個月的1,11

,21的2.30執行302

1,11,

21** cmd

### 每天20:00

-23:00每半個小時執行一次

3020-23

*** cmd

linux基礎 基本命令(下)

如何設定許可權 常見的三種型別 例項 rw rw r test test 96 sep 28 11 05 hive select log.sql第一部分 rw rw r 十個字元,代表不同意義。第二部分 test testr 2 2 w 2 1 x 2 0 所以,上文中的許可權用數字表示為 664 ...

linux中的基本命令

pwd 顯示當前目錄 ls 顯示當前目錄內容 cd 目錄切換 rm rf 路徑 刪除資料夾 rm f file 刪除檔案 ps ef grep smart 檢視程序 kill 9 程序id號 殺死程序 chmod 777 test.sh 賦予檔案許可權 4 r 2 w 1 x vim 可執行檔案 編...

Linux中基本命令(續)

1.軟鏈結 可以跨分割槽,但原始檔不可刪除 root gao test ln s test haha.txt tmp hi.txt 建立檔案軟鏈結 root gao test ln s test tmp 建立 test 和 tmp 目錄的軟連線 root gao test rm test haha....