常用指令方法

2021-09-25 13:01:38 字數 1266 閱讀 3801

to free dentries and inodes: 清空 目錄項 和 索引節點

to free pagecache, dentries and inodes: 清空以上兩項

3.emmc 寫測試

toolbox dd if=/dev/zero of=/var/test.dbf count=30000 bs=512

toolbox dd if=/dev/zero of=/var/test.dbf count=3000 bs=512 conv=fsync

toolbox dd if=/dev/zero of=/var/test.dbf count=3000 bs=512 iflag=direct,nonblock

4.emmc讀測試

toolbox dd if=/dev/block/mmcblk0p3 of=/dev/null bs=512

toolbox dd if=/dev/block/mmcblk0p2 of=/dev/null bs=512

5.git mode 修改

git config core.filemode false

git format常用命令:

git format-patch -3 //從當前分支最新提交點往下共生成3個補丁

git format-patch -1 指定commit號 //生成指定commit號的補丁

6.dtb—>轉換成dts

./scripts/dtc/dtc -i dts -o dtb -o .dtb .dts

7.repo

cd ~/

mkdir bin

cd bin

git clone ssh://igerrit:29418/tools/repo

sudo chmod a+x bin

8.核心洩露檢測

9.編譯

make -j8 >error 2>&1

10.串列埠shell

while true;do cat /proc/interrupts | grep 154; sleep 1;done

while true;do cat /proc/interrupts; sleep 1;done

11.生成檔案

全ffff

tr 『\000』 『\377』 < /dev/zero | dd of=allonesff bs=1024 count=20k

全aaaa

tr 『\000』 『\252』 < /dev/zero | dd of=allonesaa bs=1024 count=30k

mysql常用指令 Mysql常用指令

mysql常用指令2021 01 19 23 40 45 作用 去除select 查詢出來的結果中重複的資料,重複資料只展示一列.關鍵字 distinct 用法 select distinct source from student table source 去重的字段條件 student tabl...

VIM常用指令

以下格式為 指令 作用 所以輸入的時候別把 空格 也帶進去 0 到行首 到行尾 到行首字母 到上面一句或者上面乙個 段 到下面一句或者下面乙個 段 到最後一次修改的位置,注意這個 不是單引號,是1左邊的那個按鍵 文字 搜尋指定文字,找到之後使用n來跳到下乙個相同單詞位置 數值 轉跳到指定行數 轉跳到...

VIM常用指令

vim指令比較多,在用的時候老是忘記,從網上找到了這個 儲存下來,以便用到的時候查閱。一般模式 移動游標 h 或 向左方向鍵 游標向左移動乙個字元 j 或 向下方向鍵 游標向下移動乙個字元 k 或 向上方向鍵 游標向上移動乙個字元 l 或 向右方向鍵 游標向右移動乙個字元 ctrl f 螢幕 向前 ...