crt快捷鍵
\n sends a newline = 回車換行
\r sends a carriage return = 回車
\p pauses for one second = 停頓一秒鐘
\t sends a tab = 傳送tab鍵
\e sends an escape = 逃跑
\b sends a backspace = 傳送退格
alias grep=『grep --color=auto』 --> grep新增顏色
echo 「1」 > /proc/sys/kernel/core_uses_pid -->讓core檔案擁有程序號
ps -eo pid,tty,user,comm,lstart,etime | grep -e 「nginx」 -->檢視服務時間
tar篇
tar zcvfhostname
_date +%y%m%d%h%m
.tar.gz ./bin ./data --exclude=./bin/- -->打包檔案
建立乙個歸檔 試題概述: 建立乙個名為 /root/backup.tar.bz2 的歸檔檔案,其中包含 /usr/local 目錄中的內 容,tar 歸檔必須使用 bzip2 進行壓縮 解題參考: [root@server0 ~]# tar jcpf /root/backup.tar.bz2 /usr/local/
17.顯示本機linux系統是上所有開放的埠列表
netstat -anltup |awk 『nr>2』|awk -f: 『』
8.統計每個遠端ip訪問了本機apache幾次
cat /proc/uptime| awk -f. 『』 -->檢視伺服器執行時間
windows清理dns快取.
在cmd命令列執行ipconfig /flushdns
若要找出/var/log路徑下並刪除最近三個月從未修改過的檔案並刪除,其操作命令是
find /var/log -mtime +90 -exec rm -rf {} ;
服務端:搭建ftp服務或web服務,共享光碟所有內容
客戶端:在/etc/yum.repos.d/書寫以.repo結尾的配置檔案
[倉庫表示]
name=倉庫描述資訊
baseurl=伺服器位置
enabled=是否開啟本檔案
gpgcheck=是否檢測紅帽簽名認證
定時任務篇
28.計畫任務每天 0 點 30 分執行查詢並刪除/opt/bjca3/logs 目錄下字尾是 log 的三天前的檔案?
30 0 * * * /usr/bin/find /opt/bjca3/logs -type f -mtime +3 -name 「*.log」 -exec rm {} ;
11.iptables預設的4表5鏈分別是什麼,並簡單描述功能?
filter nat mangle raw
input: 處理進入的包
output:處理本地外出的包
forward:處理通過的包
prerouting:修改到來的包
postrouting:修改準備出去的包
14.編寫nginx啟動指令碼
#!/bin/bash
nginx_start()
nginx_stop()
nginx_restart()
ps -c nginx
if [ $? -eq 0 ];then
echo 「nginx is up」
else
nginx_start
fiphp平滑重啟
kill -hup
11.實時監控本機記憶體和硬碟剩餘空間,剩餘記憶體小於500m、根分割槽小於1000m時,傳送報警郵件給root管理員
#!/bin/bash
mem=$(free -m|awk '/mem/' at position 2: 4}̲') disk=(df -m|awk 『$nf=="/"』)
if [ $mem -lt 500 -a $disk -lt 1000 ];then
echo 「記憶體和磁碟容量不足」| mail -s 「error」 root
fipython猜一猜
if (player == 1 and computer == 2) or (player == 2 and computer == 3) or (player == 3 and computer == 1):
print(「恭喜玩家大獲全勝!」)
#平局elif player == computer:
print(「互相牽制,我們再來.」)
#其它情況是電腦獲勝
else:
print(「電腦獲勝.」)
linux刪除大小為0的檔案
find ./ -size 0c -exec rm {} ;
IDEA工作常用快捷鍵
intellij idea 移動光bai標du到行尾的快捷鍵是end intellij idea 移動游標到行首的快捷鍵是home。home end鍵的意思是開頭 結尾,在記事dao本或word等其他文字工具中也有同樣的效果。ctrl alt c 抽取常量 ctrl alt v 抽取變數,ctrl ...
mac快捷鍵 xcode快捷鍵
快捷鍵圖示 com w關閉當前頁面 ctrl com com tab 切換程式 com option確定進入程式 option com 0開啟右邊使用工具欄 command option esc 開啟強制退出視窗 com option esc開啟強制退出 com 0 開啟導航器 com shift ...
idea快捷鍵 Alt Shift 快捷鍵
alt shift n 選擇 新增 task 必備 alt shift f 顯示新增到收藏夾彈出層 新增到收藏夾 alt shift c 檢視最近操作專案的變化情況列表 alt shift i 檢視專案當前檔案 alt shift f7在 debug 模式下,下一步,進入當前方法體內,如果方法體還有...