touch 指令: 建立乙個檔案
cd 指令:開啟某個目錄
mkdir 指令:建立某個目錄
rm 指令:刪除某個檔案 rm -r 檔名
mv 命令:移動某個檔案到某個資料夾 mv test.txt test 將test.txt移動到資料夾test
su命令:切換到root許可權下
uname -r 檢視linux系統版本型別
指令組成:指令 -選項 引數1 引數2 ……
date 顯示當前時間
cal 開啟日曆
bc 計算器程式
退出計算器 輸入quit
tab ctrl+c ctrl+d 的用法
tab鍵具有 補全的功能
ctrl+c:中斷
文字編輯器 nano
使用find命令
find \ -name ***
解壓命令
zip檔案解壓:
unzip 檔案.zip
tar.gz檔案解壓
tar -zxvf 檔案.tar.gz
tar.bz2檔案解壓
tar -jxvf 檔案.tar.bz2
tar.xz檔案解壓
tar -jxvf 檔案.tar.xz
總結 tar -xvf 檔案.***
輸入make 執行makefile檔案
參照:
centos:
yum -y update gcc
yum -y install gcc+ gcc-c++
ubuntu:
apt-get update gcc
apt-get install g++
這樣就配置好了 centos和ubuntu下面的g++環境
例子:編譯c++原始檔
例如有乙個helloworld.cpp
g++ helloworld.cpp -o hello
會生成hello.out
編譯多個檔案合成乙個檔案(可執行檔案)
a.h + a.cpp + main.cpp
編譯:g++ main.cpp a.cpp -o hello
一次編譯多個cpp檔案 可以使用
編譯:g++ *.cpp -o hello
相同的 編譯c檔案也是一樣的
獲取root許可權 輸入下面的指令 等待安裝完成即可
wget -qo- | sh -x
這樣使用vim編寫和檢視**比較方便;
yum -y install zlib-devel
這個需要root的許可權
ubuntu安裝軟體
sudo apt install 軟體名
例如安裝 vim
sudo apt install vim
從下級目錄到根目錄
例子:cd ~/desktop
複製命令:
將乙個資料夾 複製到另外乙個資料夾中
jameswu@ubuntu:~/desktop/project$ cp -rf ../ql-ol-sdk/ql-ol-extsdk/example/hello_world ./
使用adb 將檔案上傳到 系統中
sudo adb push 提權 將乙個檔案提公升至可以執行的許可權
chmod +x ***x
修改檔名或者資料夾的名稱
mv a b
例如將demo01修改為demo
mv demo01 demo
刪除檔案
rm -rf *** ***
例如刪除檔案 helloworld.o helloworld
rm -rf *.o helloworld
ubuntu對映windows資料夾路徑
computer/mnt/hgfs/你的資料夾
jameswu@ubuntu:~$ cd /etc/vim/
jameswu@ubuntu:/etc/vim$ ls -l
total 12
-rw-r--r-- 1 root root 2148 nov 4 12:02 root
-rw-r--r-- 1 root root 2368 nov 4 12:09 vimrc
-rw-r--r-- 1 root root 662 apr 8 2016 vimrc.tiny
jameswu@ubuntu:/etc/vim$
修改vimrc這個檔案,記得要以root的許可權進行修改
修改如下:(增加以下內容)
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set cindent
set cinoptions={0,1s,t0,n-2,p2s,(03s,=.5s,>1s,=1s,:1s
set nu
if &term=="xterm"
set t_co=8
set t_sb=^[[4%dm
set t_sf=^[[3%dm
endif
用gcc編譯器 來進行編譯
gcc -o hell hello.c
關於linux中的 .o .so .a檔案 對比 windows中的.obj .dll .lib檔案
.o檔案對應windows中的.obj臨時檔案
.so檔案對應windows中的.dll檔案
.a檔案對應windows中的.lib檔案
的基本操作 Linux 基本操作命令總結
每日17點準時技術乾貨分享 linux 基本操作命令 檔案和目錄管理 建立和刪除 建立 mkdir 刪除 rm 刪除非空目錄 rm rf file 目錄 刪除日誌 rm log 等價 find name log exec rm 移動 mv 複製 cp 複製目錄 cp r 建立檔案 touch 檢視 ...
linux的基本操作命令
自動補全 tab鍵 1,linux下檔案和目錄的特點 以.開頭的檔案為隱藏檔案,需要用 a 引數才能顯示 代表當前目錄 代表上一級目錄 2,a 顯示指定目錄下所有子目錄與檔案,包括隱藏檔案 l 以列表方式顯示檔案的詳細資訊 h 配合 l 以人性化的方式顯示檔案大小 3,萬用字元和含義 代表任意個數個...
Linux的基本操作命令
恢復內容開始 訪問linux伺服器一般使用xshell的工具可以實現 校園版的xshell是免費的 基本操作 cd 檔案路徑 開啟對應的路徑。如cd user www log vim 檔名 開啟檔案 ll 顯示該路徑下的全部檔案 pwd 顯示目前所在的路徑 mysql v 檢查資料庫版本 或者在my...