Hi,
Ard Righ:
> The current problem is vfat partitions on my computer.
>
> I have the following partitions:
>
> C: FAT32 1.5GB
> E: FAT32 5GB
> F: FAT32 2.9GB
>
> All of those are on /dev/hda (though the partition numbers I forget).
>
> Now, what I would like to know, is the best way to mount these vfat
> partitions in Linux.
man fstab ...
> I made a change to /etc/rc.d/rc.modules in Slackware 4, to support fat and
> vfat filesystems. When I boot, I keep getting an error msg something like
>
> "vfat.o device busy" (or something similar)
>
> Now, I can still read these partitions (they're in the fstab),
> they're mounted
... but you seem to know that already.
> rw, and browsing through them etc has no hassles.
> Except for the fact the "\" character seems to replace the spaces in vfat
> names. Is that normal ?
It isn't _really_ replaced, although the command "ls" escapes all whitespace
characters. "echo *" also does that. That's to make difference between:
rm a b
(file is called "a b")
rm a b
(two files)
If you want to remove file "a b", you have two possibilities:
rm "a b"
rm a\ b
The \ indicates that the following character should be taken litteraly.
> Where's the best resource for KDE/Gnome apps?
www.kde.org
regards,
Gerrit.
--
RTFM: Read That FreshMeat