1. 一般模式
2. 編輯模式
touch 建立空檔案
cd 切換目錄
cp 複製檔案或目錄
rm 刪除檔案(在沒有理解路徑的情況下,不要亂用)
mv 移動目錄、改名
cat 檢視檔案
more 分頁檢視檔案
tail -f 監控檔案
echo 追加檔案
ln -s [原檔案][目標檔案] 軟連線
history 歷史命令
cal 檢視日曆
tab 自動補充鍵
groupadd itstar 新增使用者組
groupdel 刪除組
groupmod 修改組
cat /etc/group 檢視建立了哪些組
su [使用者] 切換使用者
du -h [目錄名] 檢視指定資料夾下的所有檔案大小(包含子資料夾)
free 顯示記憶體情況
mount /unmount 掛載/解除安裝
grep 管道符
ip addr 檢視ip位址
tar –zcvf etc.gz /etc/ 打包並壓縮
tar –zxvf etc.gz 解壓並拆包
type=
"ethernet"
proxy_method=
"none"
browser_only=
"no"
bootproto=
"static"
defroute=
"yes"
ipv4_failure_fatal=
"no"
ipv6init=
"yes"
ipv6_autoconf=
"yes"
ipv6_defroute=
"yes"
ipv6_failure_fatal=
"no"
ipv6_addr_gen_mode=
"stable-privacy"
name=
"ens33"
uuid=
"e980e117-7ca1-4032-ae48-723d40125291"
device=
"ens33"
onboot=
"yes"
ipaddr=192.168.0.112
gateway=192.168.75.2
netmask=255.255.255.0
dns1=8.8.8.8
dns2=8.8.4.4
ubuntu:
#方式一
vim /etc/crontab=
#方式二
crontab -e
# 使用方式一時:
* * * * * username command
分 時 日 月 周 使用者名稱 命令
# 使用方式二時:
* * * * * command
分 時 日 月 周 命令
[root@wang ~]
# select-editor
select an editor. to change later, run 'select-editor'
.1. /bin/ed
2. /bin/nano <---- easiest
3. /usr/bin/vim.basic
4. /usr/bin/vim.tiny
choose 1-4 [2]: 3 #選擇3即可切換 crontab -e 命令使用的編輯器為vim
pgrep cron
#或service
cron status
service
cron start
service
cron stop
service
cron restart
#或sudo /etc/init.d/cron start
sudo /etc/init.d/cron stop
sudo /etc/init.d/cron restart
#每1分鐘同步一次時間
*/1 * * * * root ntpdate 0.asia.pool.ntp.org
以下為時間伺服器
time.nist.gov
time.nuri.net
0.asia.pool.ntp.org
1.asia.pool.ntp.org
2.asia.pool.ntp.org
3.asia.pool.ntp.org
scp 命令 : 拷貝檔案或目錄到遠端計算機
scp -r /opt/module/hbase-1.3.1/ root@hostname:/opt/module/
Linux常用命令總結
下面這些命令是我在複習linux時記錄的,沒有詳解,只記錄了簡單的用法 檢視物理cpu個數 cat proc cpuinfo grep physical id sort uniq wc l 檢視物理cpu中core的個數,即核心數 cat proc cpuinfo grep cpu cores un...
LINUX常用命令總結
readlink f 找出符號鏈結所指向的位置 1g 到我檔案頭 g到檔案尾 cat瀏覽檔案 netstat a 檢視所有埠 mkdir 建立資料夾 rm rf 刪除檔案 執行指令碼 指令碼檔案 在當前目錄下 在目錄中查詢檔案 find 檔名 根目錄 當前目錄 剪下 mv vi命令 在檔案中搜尋關鍵...
Linux 常用命令總結
mkdir 建立目錄 ls l 顯示目錄或檔案 cd 切換目錄層次 cat n顯示行號 檢視檔案內容 cat demo.text eof 建立檔案 結尾eof退出編輯狀態 tac 反轉內容輸出 cp apr 拷貝檔案或者目錄 rm f 強制刪除檔案 r 遞迴刪除 刪除檔案或目錄 fr 刪除指定的目錄...