gruso
thunderbox
I'm starting a new thread for this because, although I know the information is out there, it's pretty hard to find. This thread should be more visible in search results. This guide will allow you to mount a PND, and browse the files inside it.
On your Pandora:
Open Thunar, browse to your PND location, right click and open a terminal. Enter the following:
You can now browse to /mnt/utmp/[PNDNAME] to see the files. Unmount by swapping -m for -u:
On your Linux PC:
There are two types of PND, squashfs and ISO9660, a fact neatly hidden from view when using pnd_run on the Pandora. On the PC, different commands are used for each type.
squashfs PNDs
Note: You will need squashfs-tools installed.
Open a terminal in the location of your PND, and enter the following (choosing your own [NAME] text):
You can now browse to /mnt/[NAME] to see the files. Unmount with:
ISO9660 PNDs
You do not need any special tools installed to mount these.
Unmounting is as per above example.
On your Pandora:
Open Thunar, browse to your PND location, right click and open a terminal. Enter the following:
Code:
# /usr/pandora/scripts/pnd_run.sh -p [PNDNAME].pnd -m
Code:
# /usr/pandora/scripts/pnd_run.sh -p [PNDNAME].pnd -u
There are two types of PND, squashfs and ISO9660, a fact neatly hidden from view when using pnd_run on the Pandora. On the PC, different commands are used for each type.
squashfs PNDs
Note: You will need squashfs-tools installed.
Open a terminal in the location of your PND, and enter the following (choosing your own [NAME] text):
Code:
# sudo bash
# mkdir /mnt/[NAME]
# mount [PNDNAME].pnd /mnt/[NAME] -t squashfs -o loop
Code:
# umount /mnt/[NAME]
ISO9660 PNDs
You do not need any special tools installed to mount these.
Code:
# sudo bash
# mkdir /mnt/[NAME]
# mount -o loop [PNDNAME].pnd /mnt/[NAME]