如何解壓編譯好的img檔案

2021-06-20 12:33:53 字數 595 閱讀 5138

1. yaffs

執行命令:

unyaffs custpack.img
即可將 custpack.img 的內容解壓到當前路徑。

2. ext4

專案編譯後會生成工具 simg2img 和 make_ext4fs(位於 out/host/linux-x86/bin/)

使用 simg2sim 生成新的 image 用於 mount:

simg2img system.img system.img.old
新建路徑用於 mount:

mkdir test
mount image:

sudo mount -t ext4 -o loop system.img.old test/
這時,system.img.old 的內容會 mount 到 test 下,開啟 test 檢視。

可修改 test 內容後重新打包成新的 image:

make_ext4fs -s -l 512m -a custpack custpack.img.new test
最後不要忘了 unmount:

umount test

C 如何解壓Cab 檔案

如何解壓 cab檔案 microsoft 真是好,只要你能想到的,microsoft 基本上都已經封裝好,只需要呼叫裡面方法就好了 download wix3.0 and install it using microsoft.deployment.compression.cab internal s...

在linux上如何解壓 zip的檔案

在linux上如何解壓 zip的檔案 2012 05 06 20 24 zt594917967 分類 linux 瀏覽5357次 分享到 2012 05 06 20 37 採納 語法 unzip 選項 壓縮檔案名.zip 各選項的含義分別為 x 檔案列表 解壓縮檔案,但不包括指定的file檔案。v ...

如何解壓 tar 檔案到不同的目錄中

譯文 lctt 譯者 geekpi 我想要解壓乙個tar檔案到乙個叫 tmp data的指定目錄。我該如何在linux或者類unix的系統中使用tar命令解壓乙個tar檔案到不同的目錄中?你不必使用cd命令切換到其他的目錄並解壓。可以使用下面的語法解壓乙個檔案 典型unix tar語法 tar xf...