Nah, where's the fun in that! Of course this depends on your overall aims and requirements, so you may determine licensing some software is the way for you.
Search these forums for any input, if nothing else you will gain some background. For example
http://www.raspberrypi.org/phpBB3/viewt ... ms#p278960 fills in a bit mor einfo for me.
Googling may also help. For example
http://forums.macrumors.com/showthread.php?t=1498072 lists some alternatives.
Basically you have an SD card with vfat/fat32 and an ext4 partitions. You've seen that your Mac can read the vfat one so one obvious thing would be to make the second one vfat too. You didn't say whether you were employing the full capaciaty of the card? If you run parted you can list the details, in my case, I sudo
parted and run the
print command:
Code: Select all
sudo parted
GNU Parted 2.3
Using /dev/mmcblk0
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Model: SD SU16G (sd/mmc)
Disk /dev/mmcblk0: 15.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 4194kB 62.9MB 58.7MB primary fat16 lba
2 62.9MB 15.9GB 15.9GB primary ext4
and it will show you whether there is a chunk of unformatted space. In my case, the 16Mb card is used entirely (add up the sizes!). Now
parted is a tool where you can re-size the partitions, so if it were me, I'd look to shrink #2 to half its size. Then, in the 8Gb of free space now available, create a new #3 partition and format it as fat32. I would then get the Mac and Pi to access that new partition, so as its stands the Mac would be able to read only 2 out of the 3 partitions, while the Pi would see all 3.
parted has a
help command, and there are numerous tutorials online.