Sunday, September 22, 2013

How to read .rfs files, a form of android rom images.

To inspect the .rfs files you only need a linux and the followung simple command.

# mount -o loop factory.rfs /target_dir

Here factory.rfs is the rom image file and the target_dir is the directory you want to mount the .rfs image.



I've tested this on my Ubuntu 3.8.0 64-bit running as a guest OS on VMWare 9.

This command line requires the root privilege.
So in fact, I have typed the following command.

# sudo mount -o loop factoryrfs.rfs ./rfs

The rom image file name was factoryrfs.rfs and the target directory was rfs under the current directory.

No comments:

Post a Comment