All Linux kernels/distributions since "2.2.42" (some 7-10 years old now) can read a FAT or FAT32 file system, the standard file system for DOS, Windows 3.1, and Windows 95/98. FAT32 allows for more characters in the name over the old 8.3 but does so by hiding the fact that it's really an FAT/8.3 file system with a wrapper at the driver/os level. In other words, a "hack".
At any rate, all flash drives and memory cards are either FAT or FAT32 'cause it's portable, fast, and out of patent so there's no licensing restrictions on them. You can plug it in and most modern linuxes will recognize the device and make it available for mount, and some desktops will actually go ahead and auto-mount it much like they do with cdroms.
OpenOffice can probably read most PPT files, though there are always font/color/layout problems with any translation. OpenOffice's output of PPT files are likely more correctly preserved when finally imported to PowerPoint.
There's no unix2dos conversion needed the way one would with text files. Same with word processing documents and spreadsheets as long as they're exported in the windows format by OpenOffice.
JPG files are what they are and are totally portable. PNG files are what they are but not ever system handles some of the more obscure aspects (like alpha channels for transparency) the same way. IE6 I know ignored the alpha channel, and I have no idea of IE7 fixed that (and given that they fixed so little else with regards to standards, like their CSS model, I doubt it).
plain text documents have to be converted and "dos2unix" programs are all free and easily found for both platforms. hit your google, and some Linux distros already have them. If doing FTP, you can say "ascii" mode and the FTP client will translate it on the way. all that changes is that dos uses "\r\n" (carriage return / line feed, old printer codes in ASCII) for a newline where-as unix only uses \n. Without the \r, programs that are "stupid" (Notepad, for example) don't know what to do with them.
no subject
At any rate, all flash drives and memory cards are either FAT or FAT32 'cause it's portable, fast, and out of patent so there's no licensing restrictions on them. You can plug it in and most modern linuxes will recognize the device and make it available for mount, and some desktops will actually go ahead and auto-mount it much like they do with cdroms.
OpenOffice can probably read most PPT files, though there are always font/color/layout problems with any translation. OpenOffice's output of PPT files are likely more correctly preserved when finally imported to PowerPoint.
There's no unix2dos conversion needed the way one would with text files. Same with word processing documents and spreadsheets as long as they're exported in the windows format by OpenOffice.
JPG files are what they are and are totally portable. PNG files are what they are but not ever system handles some of the more obscure aspects (like alpha channels for transparency) the same way. IE6 I know ignored the alpha channel, and I have no idea of IE7 fixed that (and given that they fixed so little else with regards to standards, like their CSS model, I doubt it).
plain text documents have to be converted and "dos2unix" programs are all free and easily found for both platforms. hit your google, and some Linux distros already have them. If doing FTP, you can say "ascii" mode and the FTP client will translate it on the way. all that changes is that dos uses "\r\n" (carriage return / line feed, old printer codes in ASCII) for a newline where-as unix only uses \n. Without the \r, programs that are "stupid" (Notepad, for example) don't know what to do with them.