LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Green Install In Terminal (https://www.linuxquestions.org/questions/linux-newbie-8/green-install-in-terminal-394334/)

Azulongmon 12-18-2005 09:13 PM

Green Install In Terminal
 
Hi, b4 i start I'm very much fresh meat, so i'll be free to the ridicule the higher ups have to offer. I was uncompressed a tar.gz file and it made its own folder, yada yada yada, i went to ls the folder and i see the install part, its lit up in green, but i have no idea what the command is to run it. *O, just if any1 is curious, the file is the new BZFlag 2.0.4 version* 0.0!!!

Artanicus 12-18-2005 11:12 PM

The green coloring is done by your ls command to indicate that the file has permissions to execute. That doesn't mean that its the key to thw whole thing tho. So, I suggest you read the README or INSTALL or similar file that came with it:
Code:

less README # q will quit while inside less
When your determined what to do, then do it.. If the package has prebuilt binaries inside, it is possible you can run them rightaway:
Code:

./filetoexecute
Now, that might seem a tad odd. Infact its very logical. Any execution must be done with an absolute path to the executable, or via the PATH variable when you can just ype the name (most commands go like this, ls and cd e.g.) Every folder has two "magic folders" inside it, .. and . Two dots refer to he directory above the current directory, and the single dot the current directory. So, when issuing ./file, we are giving a relative path to a file in this directory where we happen to be. Dont go blindly running stuff, make sure its something you want. E.g. I wouldn't run a file called uninstall in that package, but something like bzflag sounds promising.. (:

Azulongmon 12-20-2005 05:20 AM

Ok
 
Ok, I did the ./filename to execute the Install, but when it starts to install, it says "Could Not Download Library libssl.so.0.9.7". A Little confusion there... lol.


All times are GMT -5. The time now is 06:03 AM.