To anybody who can answer a Linux question:
I'm trying to install FAH on my Kubuntu hard drive. How come my console doesn't know what to do with "FAH502-Linux.exe"? It says the file doesn't exist, but it's on my desktop.
Not sure how to run it from the GUI. I bring up a terminal to a command line and run it from my directory like this:
cd /home/egon/fahYou need the dot-slash in front of it so it knows it's an executable. The next part pipes any output to a file. The trailing ampersand tells it to run in the background. That way I can close up the terminal and it'll still be running as a process.
./FAH504-Linux.exe > /dev/null 2> err.log &
Anyone feel free to correct me, or elaborate on this, as I'm nowhere near an expert in the land of Linux!