linux 命令積累

2021-06-01 10:54:13 字數 1873 閱讀 4285

1。將iso目錄mount為乙個裝置

mount -o loop /path/to/my.iso    /media/usb

2。用mkisofs命令建立乙個iso檔案

mkisofs -o my_wj_iso.iso(隨便取個iso名稱,這個iso會在本目錄中) -b isolinux.bin(這個檔案在isolinux中,要cp到上一級目錄) -c boot.cat(這個檔案也在isolinux目錄,

也要cp到上一級目錄)  -no-emul-boot -boot-load-size 4 -input-charset utf8 -boot-info-table  /root/desktop/myiso/(iso源檔案目錄)

新命令:

mkisofs -o ../wj-xubuntu-test.iso -d -r -v "$image_name" -cache-inodes -j -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -input-charset utf8 -boot-info-table ../livecd/

3。用grep命令查詢對應的字串

grep -irl "jay"  ./   在本目錄查詢帶jay字元的檔案路徑及所在的檔案

4。調整聲音大小

alsamixer

5。shell替換文字中的字串

sed -i -e 's/cn/us/' locale

將locale檔案中帶cn的字串替換為us

6。qemu安裝命令

./configure --enable-spice --enable-linux-aio --enable-uuid --enable-kvm-pit --enable-kvm --disable-werror --enable-debug --enable-usb-redir --target-list=x86_64-softmmu

(--enable-debug如果需要除錯則需要加,預設路徑是在/usr/local下,--target-list=x86_64-softmmu僅安裝x86_64位平台的,我的系統是ubuntu-server amd64的,不加此引數

預設安裝會安裝全部平台)

7。shell獲取ip位址

ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk ''

8。ubuntu設定位址列

①.開啟終端輸入命令 gconf-editor 

④在找到其下面的preferences

⑤選擇右邊的always_use_location_entry打上勾就ok了

ubuntu12.04  在終端上執行

gsettings set org.gnome.nautilus.preferences always-use-location-entry true
9。網路命令

netstate    -ntlp  檢視埠情況

lsof    -i:8443     檢視8443埠給哪個程序所占用

10。vi替換字串

:%s/sttri/keqisoft/g

把所有sttri替換成keqisoft

11。取消linux系統待機(xubuntu)

export display=:0.0

xset s 86400

xset -dpms

12。vmdk轉換成qcow2

qemu-img convert  -f vmdk -o qcow2    test.vmdk  keqisoft.qcow2

13。檢視系統是多少位的

getconf long_bit  

linux命令積累

1 檢視linux 作業系統版本 cat proc version 檢視系統版本 方法一 lsb release a方法二 cat etc os release 3 新增組 使用者 1 新增組 groupadd elasticsearch 2 新增使用者 useradd g elasticsearc...

Linux命令積累

use find xargs and grep together find name xargs grep abc 為當前目錄 為任何名字 abc 為所要查詢的字串scp命令 複製遠端單個檔案到本地 scp filename username ip directory local directory...

Linux 命令使用積累

1 剛安裝了ubuntu,如果想設定root密碼,可以在terminal裡面,輸入sudo passwd root,然後按照顯示的提示,設定密碼就可以了。2 gnome terminal的作用是開啟乙個新的terminal.3 檢視ubuntu是32 位還是64位的,uname ar 4 建立目錄的...