培訓學習筆記 4 day
第四天:
***************************************************************
週六日練習安裝 cent os 7 windows server 2008
在Linux中,一般情況下修改系統或者服務的配置資訊,有兩種修改方法:臨時修改(命令列修改),永久修改(修改配置檔案)
centos系統的網絡卡配置檔案位置 /etc/sysconfig/network-script/ifcfg-eth0
ubuntu系統的網絡卡配置檔案位置 /etc/network/interfaces
重啟網絡卡:/etc/init.d/networking restart
配置臨時IP:sudo ifconfig ens3 192.168.100.100 255.255.255.0
更改Ubuntu的更新源
step 1:找到配置檔案 /etc/pat/sources.list,備份該檔案:cp sources.list sources.list.bak
step 2:編輯sources.list,vim sources.list,將源(映象站)替換以前的內容,儲存即可
step 3: apt-get update 更新源
apt-get upgrade 更新軟體
---------------------------------------------------------------
.tar
tar 預設情況下是用來打包或者壓縮檔案
tar -cvf test.tar shell.php index.html 打包檔案
tar -xvf test.tar 解包
.zip
zip in.zip index.html index1.html 壓縮檔案
unzip test.zip 解壓縮
unzip -l test.zip 檢視壓縮內容
.tar.gz
tar -zcvf test.tar.gz file1 file2 打包並以gzip格式進行壓縮
tar -tvf test.tar
tar -zxvf test.tar.gz 解壓縮
----------------------------------------------------------------
nsloopup 檢視dns資訊
ps 檢視執行的程式
ps -aux
top 實時檢視執行的程式
service networking restart
curl 獲取網頁
wget url 下載