> When i do this it asks for the file system type? > mount /dev/sda4 /mnt/zip
/mnt is a directory with no files. You must mount to an existing directory, which really should be empty. try: mkdir /zip mount /dev/sda4 /zip -t msdos (i'm assuming you're using a dos formatted zip) rick --