自己查詢資料進行安裝。
linux 指令
關於超級使用者 root:pwd
cdls
rmmv
cpmkdir
chmod
sudo
cattouch
more
less
檔案與目錄操作:
路徑型別:
檔案的建立與刪除:tree
ls //檢視當前目錄下的檔案或者目錄
ls -a //顯示隱藏檔案
ls -al //顯示為檔案表單的形式(可以顯示檔案的屬性)
ls *.cpp //*用於匹配檔名中任意長度的字串
ls text? //?僅匹配乙個字元
ls[1a] //匹配方括號**現的字元
pwd //檢視當前所在目錄
cd //
cd.. //回到上一級的工作目錄
cd /`確定的路徑`
回到某一目錄
rmmkdir //建立目錄
mkdir -p 目錄名
cat //強制讀
cat a.txt(但是存在問題,可能直接看到檔案末尾)
cat -n //在讀檔案時,顯示每一行的行號
touch // 建立
more //更多的讀內容,但是比less的效果差
less //讀檔案效果最好
rm //刪除
mv //移動
head
&tail //閱讀檔案的開頭和結尾(用法相同)
head -n 2 day //閱讀day檔案的開頭兩行
gerp //查詢檔案內容
gerp un day //在day檔案中查詢'un'
find //在指定範圍內查詢檔案
find /usr/bin/ -name zip -print
//在目錄/usr/bin/下,查詢名為zip的檔案,並列印其絕對路徑在螢幕
find /etc/ -name init.d -type d -print
//在目錄/etc/下,查詢名為init.d的檔案,-type用於定位特殊檔案型別
locate //定位命令
locate *.doc //定位 .doc 的檔案的位置
man //查詢linux下的幫助手冊
linux 的7種檔案型別:檔案建立:
touch //建立乙個空白檔案
touch a.txt
vim //使用檔案編輯器建立
vim a.cpp
echo
"abc"
> a.txt //附寫檔案內容
>> 追加,寫在檔案末尾
檔案刪除:
rm -rf *(刪除全部檔案)
rm -rf a.t*(可以刪除a.txt,而不能刪除a.xtx)
mv
-
普通檔案
d
目錄
l
符號鏈結
b
塊裝置
p
管道
c
字元裝置
s
套接字
許可權相關:
資訊檢索:chmod
chmod a u g o
a:所有人,u:使用者,g:組內人員,o:其他人
chmod u-r b (將使用者的讀許可權"r",刪去)
chmod u+r b (給使用者新增讀許可權"r"
)chmod u=rwx,g=r,o=x b
chmod u+x,g-x,o-rw b
chmod 666
chown //修改所有者
sudo
chown young:root test
(檔案所屬者:組)
sudo
chown -r young:young test
ls -al //檢視具體的檔案許可權
ls -ald b
sudo
sudo -i //臨時獲取root許可權
sudo
reboot
程序查詢:grep //資訊檢索
ls|grep
".sh" //檢索所有".sh" 的存在
ls|grep -w prime.sh //檢索"prime.sh"的存在,完整的"prime.sh"
sedawk
ps
ps -ef //產看當前的的所有執行程序(類似於windows中的程序管理器)
ps -ef |
grep 程序名稱,程序號或任務id
kill
kill
(-9) 程序號 //(強制)終止
pkill 程序名稱 //批量終止,盡量不要使用sudo配合此功能
linux學習筆記day01
1 命令一般格式 命令 引數 目標 2 命令幫助 help whatis 可省略 可以新增多個 必須新增 3 常用命令 date,passwd,cal,gedit,cat,head,tail,wc,file,history 關機 poweroff shutdown h now init 0 重啟 r...
學習筆記day01
作業系統簡稱 operating system 簡稱os 其的本質就是乙個軟體,作業系統對上可以管理應用程式,對下可以訪問硬體裝置。主流的作業系統 pc機領域 windows系列,ios,伺服器領域 linux系列,unix,windows server。手持裝置 ios,android,塞班,wi...
前端學習Day01
alt shift 1 非小鍵盤 視窗分屏,恢復預設1屏 alt shift 2 左右分屏 2列 alt shift 3 左右分屏 3列 alt shift 4 左右分屏 4列 alt shift 5 等分4屏 alt shift 8 垂直分屏 2屏 alt shift 9 垂直分屏 3屏 ctrl...