Linux常用操作

2021-07-02 19:57:48 字數 1872 閱讀 5222

mount -t cifs -o username=**,password=**,nounix,noserverino //mount掛載點

mount -t cifs -o username=**,domain=**,gid="0",uid="0",nounix,noserverino //mount掛載點

export ld_library_path=庫路徑:$ld_library_path

/etc/ld.so.conf 配置檔案中設定,在裡面加相應一行;或者 /etc/ld.so.conf.d目錄下加入 程式自己的動態庫路徑的檔案,立即生效 ldconfig。

mount -t iso9660 -o loop /home/ ***.iso /home/maodanp (so通過linux能夠訪問)

mount -t iso9660 -o loop /dev/cdrom /mnt

裝置—分配光碟機,勾選上目標so, 然後在 /dev/cdrom 中掛載到其它路徑下即可。

find 《指定目錄》 《指定條件》 《指定動作》

其中,預設為當前目錄。

find . -name 'my*' 搜尋當前目錄及其子目錄中,所有檔案愛你名以my開頭的檔案

locate命令其實是 "find -name"的另一種寫法,但是要比後者快得多,原因在於它不搜尋具體目錄,而是搜尋乙個資料庫(/var/lib/locatedb)。linux系統每天更新一次這個資料庫,為避免查不到最新變動的檔案,可以在使用locate之前,使用 updatedb命令,手動更新資料庫。

$ locate /etc/sh 搜尋etc目錄下所有以sh開頭的檔案。

$ locate ~/m 搜尋使用者主目錄下,所有以m開頭的檔案。

$ locate -i ~/m 搜尋使用者主目錄下,所有以m開頭的檔案,並且忽略大小寫。

遞迴刪除目錄下的 '.o' 檔案: find ./ -name *.o | xargs rm

遞迴刪除***的目錄: rm -rf ***

修改 /etc/network/inte***ces

iface eth0 inet static

address 192.168.0.16

netmask 255.255.255.0

gateway 192.168.0.1

/etc/resolv.conf裡面設定dns伺服器,

nameserver 192.168.0.1

最後reboot或者#/etc/init.d/networking restart

tcpdump tcp -i any -p -s 0 and src net 172.16.130.151 -w /home/maodanping/target.cap

lsof -i 80

netstat -putln

netstat -anp | grep **.out

find . -type f -exec touch {} \;make >a.txt 2>&1

make 2>&1 >a.txt 是無效的,make仍然會把warning和error資訊輸出到標準錯誤上,可能bash是從按棧的方式從後到前處理引數的,在重定向到a.txt的時候2>&1尚未生效。

ls -l > out.file 2>&1

ls -l > out.file //將ls的輸出重定向到檔案out.file2>&1 //在shell中,檔案描述符通常是:stdin,stdout,stderr,即:0,1,2,由此可以看出,它將ls -l > out.file在輸出過程中產生的錯誤資訊也放在了stdout,即:1中,你可以作實驗,如果命令產生了錯誤,那麼錯誤資訊也就在out.file 中. 最後的& ,不用說,是放在後台執行.

rpm -ivh *.rpm

使用ntsysv,在出現的視窗之中,將 telnet 勾選即可

Linux常用操作

顯示檔案內容more less head tail cat pg 分頁 檢視檔案cat 檔案拼接合併 cat 檔案1 檔案2 輸出檔案 查詢檔案內容grep 選項 字串 檔案列表 對檔案內容排序sort 比較檔案內容comm 排好序的檔案 diff b忽略空格 b忽略空行 i忽略大小寫 結果中 第乙...

Linux常用操作

etc 系統配置 bin 系統程式 dev 裝置檔案,如cd rom,網路藉口,usb等 lib 共享的庫檔案 usr 使用者共享的檔案,如幫助檔案 var 大小可變檔案,如日誌 ls 檢視目錄下的檔案 ls a 檢視目錄下的所有檔案 包括隱藏檔案 ls l 檢視目錄下檔案的詳細資訊 cd 切換當前...

linux常用操作

1 不刪除資料夾刪除檔案的內容 true a 2 合併檔案 cat file1.txt file2.txt file.txt 3 兩個不同檔案對比 將對比結果存入檔案 awk nr fnrnr fnr u.db u.log diff 這個命令是吧 u.log 有,u.db 沒有的行找出來 4 替換文...