NewtoLinux wrote: > Ahh wine can't run .Desktop items. That would explain while I was able to install from terminal from the downloads folder firefox, but then not run it on the desktop using the terminal. > > Ok took me like 20 mins but I figured out wine is a hidden folder. I know to see it in GUI I hit ctrl+h not sure how to reach it in a terminal though. When learning the terminal I like to use the GUI first figure out the path to the file then use terminal one directory at a time. > > So from my home directory I type ls. Saw that wine wasn't there. Typed cd "~/.wine". The command took so I typed in cd drive_c. The command took, now here's where I have problems. I need to get to the Program Files directory. So I type > Code: > cd "Program Files" > [code] cd $HOME/.wine/drive_c/Program\ Files [/code] will get you to the Program Files directory. Also [code] cd "$HOME/.wine/drive_c/Program Files" [/code] should also work. What will NOT work is [code] cd $HOME/.wine/drive_c/Program Files [/code] as this is interpeted as: cd $HOME/.wine/drive_c/Program James McKenzie