Hack-A-N900/Wall Of Bricks: Unterschied zwischen den Versionen
aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springenAmir (Diskussion | Beiträge) |
Amir (Diskussion | Beiträge) |
||
Zeile 21: | Zeile 21: | ||
[[Image:N900malfunction.jpg|thumb|left|Malfunction! Device shutdown in 10s]] | [[Image:N900malfunction.jpg|thumb|left|Malfunction! Device shutdown in 10s]] | ||
+ | == Tried to write a disk image to an extended partition == | ||
+ | How: | ||
+ | <pre> | ||
+ | # /dev/mmcblk0p4 is an extended partition | ||
+ | dd if=image.dd of=/dev/mmcblk0p4 | ||
+ | </pre> | ||
+ | |||
+ | Result: | ||
+ | corrupt partition table | ||
[[Kategorie:N900]] | [[Kategorie:N900]] |
Version vom 16. April 2010, 23:55 Uhr
Boot loop? hang? Congratulations, you made it! Please share how.
Tried to enforce bash as system default shell
How:
rm /bin/sh ln -s /bin/bash /bin/sh
Result: boot loop.
Tried to overwrite /lib from a running system
How:
cp -a /somewhere/lib/* /lib/
Result:
Tried to write a disk image to an extended partition
How:
# /dev/mmcblk0p4 is an extended partition dd if=image.dd of=/dev/mmcblk0p4
Result: corrupt partition table