I have a question about using the terminal in ubuntu 11.04.I have installed wine and steam and civ III thru steam.According to instructions on wine forum in order to play civ some font files need to be moved within the wine folder which i have done but it also informs to do the following:
then open a console and browse to:
.wine/dosdevices/c:/Program Files/Steam/steamapps/common/sid meier's civilization iii complete/Conquests/
and type the following command:
sudo chown root LSANS.*
when I open the terminal I am able to change directory to .wine/dosdevices/c but when I try to change to the next "program files" I get message in terminal not found. I type in ls command and does list "program files" why am I NOT able to change to directory "program files"
below is actual steps in terminal i have done
mike@ubuntu:~$ cd .wine
mike@ubuntu:~/.wine$ cd dosdevices
mike@ubuntu:~/.wine/dosdevices$ cd c:
mike@ubuntu:~/.wine/dosdevices/c:$ ls
Program Files users windows
mike@ubuntu:~/.wine/dosdevices/c:$ cd program files
bash: cd: program: No such file or directory
mike@ubuntu:~/.wine/dosdevices/c:$
I also tried capitalize
cd "Program Files (x86)"
Shell variables are expanded in double quotes, so most filenames containing unescaped$
signs will do the wrong thing in double quotes, but for this and most situations, double quotes are the most elegant and least error-prone way to quote a string that contains spaces and parentheses (and even single quotes / apostrophes) but no double quotes. – Eliah Kagan Oct 11 '12 at 11:28