>
> I mounted on my notebook the win95-partition as shown:
>
> mount /dev/hda1 /mnt/win95 -t vfat
>
> It seems to be with no problems. But in each win95 is a directory named
> "Program Files". I can't change in this dir, because it's a space in
> the filename. Has it a way to change in this dir - other than mount the
> partition as "... -t msdos" where this dir is named "Progra~1"?
>
> Thanks Matthias
>
Try
cd Program\ Files
or
cd "Program Files"
You have to tell the shell that the space is part of the directory name. Do
this by escaping the space, so it's no longer interpreted as a field
separator by the shell, or make a single string out the directory name.