1.[root@thousand ~]# cat /proc/version //檢視核心
2.[root@thousand ~]# lsb_release -a //檢視版本號
3.[root@thousand ~]# ifconfig //檢視網絡卡資訊
4.[root@thousand ~]# setup //開啟網絡卡配置桌面版
5.[root@thousand ~]# ifup //獲取dhcp ip
6.[root@thousand ~]# mkdir /data //建立乙個/data的檔案目錄
7.[root@thousand ~]# touch stu //建立一萬個檔案
8.[root@thousand ~]# echo 'iam studying linux'>test1.txt
//如果檔案存在會清空內容寫入''內容,如果不存在會建立乙個檔案
[root@thousand ~]# cat test1.txt
iam studying linux
9.[root@thousand ~]# echo 'hello' >> test.txt //這樣會是在這個檔案後面新增(追加)''內容,如果不存在會建立乙個檔案
[root@thousand ~]#echo'111 2222 3333'>>test.txt
10.[root@thousand ~]# yum install tree -y //不存在tree的使用時,安裝tree
11.[root@thousand ~]# mkdir -p /oldboy/test //連續建立目錄要-p
12.[root@thousand ~]# alias //檢視系統現有別名
alias cp='cp -i'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
13.[root@thousand ~]# unalias cp 刪除cp別名
14.data -s 「時間」 //修改時間
15.data //檢視時間
16.[root@thousand ~]# service network restart //重啟網路服務
17.[root@thousand ~]#ps -ef |grep ssh //檢視程序的命令
18.[root@thousand ~]# netstat -lntup |grep ssh
19.[root@thousand ~]# /etc/init.d/iptables stop //關閉防火牆
20.[root@thousand ~]# netstat -lntup |grep 22 //檢視22伺服器監聽埠
21.[root@thousand ~]# /etc/init.d/sshd restart //ssh重啟方法
22.[root@thousand ~]# rz //回車後可以選擇要傳的檔案,不能傳目錄
23.init 數字(0-6) //切換模式
24.runlevel //檢視當前系統執行級別
25.shutdown -h now (halt、init 0) //現在直接關機
26.reboot (shutdown -r now 、int 6) //重啟伺服器
27.[root@thousand ~]# /etc/init.d/iptables stop //臨時關閉防火牆
28.[root@thousand ~]# /etc/init.d/iptables status //顯示防火牆狀態
29.[root@thousand ~]# chkconfig iptables off //一直關閉防火牆
30.[root@thousand ~]# cat /etc/sysconfig/i18n //檢視編碼方式
31.#export tmout=10 //超過十秒自動退出
32.#history //檢視歷史命令 !數字:可以檢視第幾條歷史命令
33.#history -c //清空所有史命令
34.[root@thousand ~]# history -d n //刪除第n條的歷史記錄
35.[root@thousand ~]# export histfilesize=415
36.[root@thousand ~]# export histsize=5 //命令列歷史記錄數量
37.[root@thousand ~]# export histfilesize=5 //命令列命令對應的記錄數
38.[root@oldboy ~]# cat /etc/issue //檢視版本資訊
39.[root@thousand ~]# >/etc/issue //大於號重定向,及清空檔案內容
40.[root@thousand ~]# echo $histsize //顯示歷史命令的條數
41.#aspell -c 檔名 //檢查檔案的單詞書寫改錯等
雜記三 kafka常用命令
1 列出集群裡的所有topic kafka topics.sh zookeeper localhost 2181 list2 建立topic topic名稱為topic 01,包含3分割槽,每個分割槽擁有3個副本 kafka topics.sh zookeeper localhost 2181 cr...
Linux常用命令之Linux常用命令實戰知識點
在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...
LINUX常用命令
一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...