基本指令集合
1、檢視centos版本資訊
cat /proc/versioncat /etc/redhat-release
2、檢視安全日誌檔案資訊
tail -f /var/log/secure
3、vi 命令:
vi filename #採用vi編輯檔案;
i表示開始插入文字內容到檔案中;
編寫完成,輸入ese退出insert,輸入:wq!表示儲存並退出;
進入vi後,按/,然後輸入字串,回車,按n或者n是向前向後搜尋該字串;4、ping www.baidu.com #ping指令;
退出ping 指令,需要按下ctrl+c即可
5、ls列舉檔案列表
cd /etc/進入etc目錄,退出etc目錄:cd ../ su提公升使用者許可權,從普通使用者轉到root使用者下;
ls -a 列舉全部檔案,包括隱藏的檔案;
6、pwd顯示當前所在的目錄。
目錄操作:mkdir 建立目錄:mkdir mydir, rmdir刪除空白目錄:rmdir mytest;
檔案操作:touch 建立檔案:touch test.txt ,rm刪除檔案或者目錄:rm -rf test.txt(-r遞迴,-f表示強制。
cp檔案複製拷貝:cp old.txt /temp/new.txt 遞迴可用-r命令;
mv 重新命名或移動檔案或者目錄(剪下):mv old.txt new.txt
檔案追加或覆蓋:echo ok #輸出ok文字;
echo ok>test.txt 覆蓋test.txt檔案;
echo ok>>text.txt 追加test.txt檔案;
檢視檔案內容:cat text.txt 如需分頁顯示 cat test.txt|more
撤銷檔案的操作:ese + u
7、檔案查詢:
查詢檔案或目錄:find /home 查詢home下所有的檔案;
查詢特定檔案: find /home/ -name "text.txt" 或者 find /home -name "*.txt" ;
重新命名:rename 例如:
rename myfile newname myfile.text myfile2.text myfile3.text
這個命令將myfile.text myfile2.text myfile3.text檔名中myfile替換為newname
8、使用者操作:
新增使用者 useradd username1 ,userdel 刪除使用者;
9、網路配置:
vi /etc/sysconfig/network-scripts/etho16777736;
網絡卡引數詳解如下:
device=eth0 #物理裝置名
onboot=yes # [yes|no](重啟網絡卡是否啟用裝置)
bootproto=static #[none|static|bootp|dhcp](不使用協議|靜態分配|bootp協議|dhcp協議)
type=ethernet #網絡卡型別
ipaddr=192.168.33.10 #ip 位址
netmask=255.255.255.0 #子網掩碼
gateway=192.168.33.1 #閘道器位址
網絡卡配置完畢,重啟網絡卡,命令: /etc/init.d/network restart 即可。
或者 service network restart #重啟網路
vi /etc/resolv.conf 設定dns
ip完整配置:
hwaddr=00:0c:29:8d:24:73type=ethernet
bootproto=static
#啟用靜態ip位址
defroute=yes
peerdns=yes
peerroutes=yes
ipv4_failure_fatal=no
ipv6init=yes
ipv6_autoconf=yes
ipv6_defroute=yes
ipv6_peerdns=yes
ipv6_peerroutes=yes
ipv6_failure_fatal=no
name=eno16777736
uuid=ae0965e7-22b9-45aa-8ec9-3f0a20a85d11
onboot=yes #開啟自動啟用網路連線
ipaddr0=192.168.21.128
#設定ip位址
prefixo0=24
#設定子網掩碼
gateway0=192.168.21.2
#設定閘道器
dns1=8.8.8.8
#設定主dns
dns2=8.8.4.4 #設定備dns
:wq! #儲存退出
service network restart #重啟網路
ping www.baidu.com #測試網路是否正常
備註:-c 斷點續傳
-nd 不建立目錄,若無此選項,將按照**目錄結構建立目錄
Linux(CentOS)常用操作指令(二)
1 安裝wget指令 yum y install wget 2 安裝ifconfig指令 yum install net tools 3 tar解壓檔案的使用 tar zxvf aaa.gz c var local user c 建立.tar格式的檔案 x 解開.tar格式的檔案 f 使用歸檔檔案 ...
linux centos防火牆常用操作命令
1 檢視防火牆狀態 active是綠的running表示防火牆是開啟的 systemctl status firewalld.service 2 關閉防火牆 systemctl stop firewalld.service 3 開機禁用防火牆自啟命令 systemctl disable firewa...
linux centos 常用檔案結構
bin可執行二進位制檔案的目錄,例如一些系統常用命令ls ln mv等 boot 放置linux啟動時的一些檔案,建議單獨分割槽,100m即可 dev存放linux系統下的裝置檔案,如掛載光碟機 磁碟等 將所有裝置認作乙個檔案,例如 dev hd a t ide裝置 etc系統配置檔案存放目錄 et...