> I have mounted the SD card partitions with no trouble. The partition
> in question is mounted at location "/mnt/sdf4".
>
> Any advice how I can delete the files would be great. I am a newbie to
> the linux way of things.
No problem. First of all you need to figure out the device node (file in /dev/) associated with ext3 partition. You should be able to figure this out by simply executing "mount" in a terminal window. For me, it is typically /dev/sdd1..."mount" shows the following (in addition to a bunch of other stuff)...
# mount
...
/dev/sdd1 on /media/usbdisk type ext3 (rw)
If already mounted as you mention then unmount the partition as follows...
# sudo umount /dev/sdd1
Then format using mkfs...
# sudo mkfs.ext3 /dev/sdd1
Cheers
Jon