Thread: Reboot loop
View Single Post
Posts: 2,152 | Thanked: 1,490 times | Joined on Jan 2006 @ Czech Republic
#13
Originally Posted by josiahg777 View Post
Code:
$ root
# mount /dev/mmcblk0p2 /mnt/mmc22
# chroot /mnt/mmc22
However, I can't run any gui programs... Is there any way I can launch a gui program from this chroot? (this probably requires starting the sapwood/hildondesktop server huh?) or barring that is there a way to access the control panel through the command line?
You can run most stuff from chroot if you mount also /proc and /sys and /tmp with -o bind

Code:
$ root
# mount /dev/mmcblk0p2 /mnt/mmc22
# mount -n -t proc proc /mnt/mmc22/proc
# mount -n -t sysfs sysfs /mnt/mmc22/sys
# mount -n -o bind /mnt/initfs/tmp /mnt/mmc22/tmp
# chroot /mnt/mmc22
And maybe also other stuff, see 'grep mount /etc/init.d/rsS' for inspiration.

For more troubleshooting see also tips in http://www.internettablettalk.com/fo...ad.php?t=16056
__________________
Newbies click here before posting. Thanks.

If you really need to PM me with troubleshooting question please consider posting it to the forum instead. It is OK to PM me a link to such post then. Thank you.
 

The Following User Says Thank You to fanoush For This Useful Post: