I only use FAT32 onto my Pandora SD's, would like to use NTFS but that does not work sadly.
If using EXT, how to connect it to Windows then? Can Windows access EXT formatted SD's? Maybe through the USB mass storage mode?
Mass storage mode is nearly the same as using an SD card reader. So Windows won't be able to read EXT formated cards thru USB mass storage either.
What you can do is create an NTFS image
file on the EXT formatted SD then expose that to Windows using Mass storage mode.
First download ISO Optical Drive PND:
http://repo.openpandora.org/?page=detail&app=iso_optical_drive
Run it and leave the window which ask to choose an ISO file open. Now copy the file /mnt/utmp/iso_optical_drive/mountisodrive.sh (this file won't appear unless the PND is running) into the respective appdata dir on your SD card (ie: /media/PANCARDA/pandora/appdata/iso_optical_drive my SD card is labeled PANCARDA).
Open that file (the one in appdata dir) in a text editor and change this line:
modprobe g_file_storage file="${selection}" stall=0 cdrom=1Into this:
Code:
modprobe g_file_storage file="${selection}" stall=0
(ie. delete the cdrom=1 parameter)
Now the ISO Optical Drive PND will expose the ISO image as a USB HDD instead of CDROM drive.
Now create the ISO image file (on a terminal window, also remember my SD card is named PANCARDA):
truncate /media/PANCARDA/disk.iso --size 4GActually the above command only creates an empty
sparse file. Sparse means that the file doesn't consume space despite being 4GB in size. It will only consume space once you start writing stuff into it (pretty cool, huh?).
Now you can load the (empty) ISO file using the ISO Optical Drive PND, then plug in Pandora to Windows machine, format the USB HDD that appears to NTFS (make sure you are formatting the right one, check the disk size matches the size of the iso image) using the Windows PC and copy stuff to it or something.
If you want to access the contents of the ISO image from Pandora itself you can do on a terminal window (assuming you installed the Community Codec Pack):
Code:
mkdir /media/PANCARDA/disk/
sudo mount -t ntfs -o loop /media/PANCARDA/disk.iso /media/PANCARDA/disk/
(/media/PANCARDA/disk/ is a directory I created on my SD card to mount the image)