LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   redhat kde floppy transfer (https://www.linuxquestions.org/questions/linux-newbie-8/redhat-kde-floppy-transfer-113992/)

Nay 11-09-2003 12:18 AM

redhat kde floppy transfer
 
i don't have my network up yet so the only method of transfering files is a floppy. well, i only wish to transfer images, so it's not a problem.

anyhow, i open up the floppy folder in kde, then my source folder. then i drag and drop, the option menu pops up and i choose copy here. it IS visible in the floppy folder but when i take out the floppy, and reinsert it and re-mont the floppy, the file i wanted to transfer is no longer there.

any ideas? O_o

thanks,

-Nay

miknight 11-09-2003 12:50 AM

I think this is because your floppy is either not mounted before you do the transfer and/or the floppy was not unmounted before it was removed.

Things are different than in Windows. You have to insert the floppy disk, then mount it, then transfer the files, then unmount it - then you can remove it safely.

Mounting the floppy disk can probably be done in a nice way on KDE, but in a terminal you can do it by going:

mount -t msdos /dev/fd0 /mnt/floppy

So /mnt/floppy is now the directory of your floppy disk. To unmount it, you can simply go:

umount /mnt/floppy

Then you can remove the disk safely! You might notice that when you issue the umount command there is a lot of writing done the the disk. This is because sometimes the write is delayed until a umount, or a sync. So if you remove it without umounting, those files, or parts of them, may not even have been written out yet.

Incidentally, this is the same with hard drives or other read/write removable storage you want to use.

If you try and copy files to /mnt/floppy without the disk mounted, the files will probably just end up on the hard drive that / is mounted under.


All times are GMT -5. The time now is 07:26 PM.