-
-
Save ruevaughn/6891070395dd888bb7ec0865d8181495 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
strings file | |
binwalk -e file | |
# mounting | |
mknod /dev/mtdblock0 b 31 0 | |
mkdir /mnt/jffs2_file/ | |
modprobe jffs2 | |
modprobe mtdram | |
modprobe mtdblock | |
dd if=/root/Router/600000.jffs2 of=/dev/mtdblock0 | |
mount -t jffs2 /dev/mtdblock0 /mnt/jffs2_file/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment