Installing software using Gentoo Emerge
http://learn.clemsonlinux.org/wiki/Gentoo:emerge
Installing Binary Files and Scripts (.BIN/.SH)
Binary files (.BIN) and shell scripts (.SH) are another popular format for distributing applications, particularly in the commercial, closed-source world. A good example of this are the Quake 3 and Doom 3 games from id Software. Basically all these files are is a list of commands that are run inside a terminal to copy, move, and create files in your file system. You can run these files like so:
For BIN files:
1. Make sure the file is set to "executable" by running this command:
2. Run the file like this:
NOTE: If the installer requires access to directories outside of your /home/ directory, you may need to log in as root before you can execute these commands successfully. That can be accomplished with the su command, followed by your root (Administrator) password. Ubuntu users will use sudo and their regular user password instead.
For .SH files:
1. Make sure the file is executable by following Step 1 above.
2. Run the file either with the same command as the previous Step 2, or like this:
_________http://learn.clemsonlinux.org/wiki/Gentoo:emerge
Installing Binary Files and Scripts (.BIN/.SH)
Binary files (.BIN) and shell scripts (.SH) are another popular format for distributing applications, particularly in the commercial, closed-source world. A good example of this are the Quake 3 and Doom 3 games from id Software. Basically all these files are is a list of commands that are run inside a terminal to copy, move, and create files in your file system. You can run these files like so:
For BIN files:
1. Make sure the file is set to "executable" by running this command:
Code:
chmod +x NameOfYourFile.bin
Code:
./NameOfYourFile.bin
For .SH files:
1. Make sure the file is executable by following Step 1 above.
2. Run the file either with the same command as the previous Step 2, or like this:
Code:
sh NameOfYourFile.sh
Further reading
- Offical Debian Apt-Get HOWTO
- Slackware Package guide
- Official RPM HOWTO
- Maximum RPM (power users guide to RPM)
- Guide to Gentoo Emerge
Copyright, Re-Printing, and comments
This document is copyright Jason Lambert, 2004.
The mandrake section is contributed by jeremy1701 and is copyright jeremy1701 2004.
The Debian apt-get section was originally written by Jason Lambert and revised by antidrugue in 2006.
The .BIN/.SH section was contributed by techieMoe.
You may not re-produce or reprint this document in part or in full without my prior written permission..
If you would like to request permission to re-print any part of this document, please send me a private message on the forums.
The mandrake section may not be reprinted without written permission of jeremy1701
All trademarks remain the property of their owners etc.
If you have a comment about this howto, please Email Me. Please do NOT email me or send me a private message asking for technical assistance. If you need help please post on the forums!
Note: This message was broken into smaller, more manageable chunks and reposted by techieMoe.
No comments:
Post a Comment