我的Linux命令積累

2021-08-31 01:46:09 字數 736 閱讀 6388

下面是來自 commandlinefu

**由使用者投票決出的 10 個最酷的 linux 單行命令,希望對你有用。

sudo !!

以 root 帳戶執行上一條命令。

利用 python 搭建乙個簡單的 web 伺服器,可通過 http://$hostname:8000 訪問。

:w !sudo tee %

在 vim 中無需許可權儲存編輯的檔案。

cd -

更改到上一次訪問的目錄。

^foo^bar

將上一條命令中的 foo 替換為 bar,並執行。

cp filename

快速備份或複製檔案。

mtr google.com

traceroute + ping。

!whatever:p

搜尋命令歷史,但不執行。

$ssh-copy-id user@host

將 ssh keys 複製到 user@host 以啟用無密碼 ssh 登入。

ffmpeg -f x11grab -s wxga -r 25 -i :0.0 -sameq /tmp/out.mpg

linux 命令積累

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 這個檔案在isoli...

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...