Created
October 20, 2016 17:26
-
-
Save Husamui/e48eaf80cc07b22f30c988a7f5190a0e to your computer and use it in GitHub Desktop.
Installing tools from source code linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Download the source code | |
| curl -O https://nodejs.org/dist/v4.2.4/node-v4.2.4.tar.gz | |
| #unzip files | |
| tar -xvf node-v4.2.4.tar.gz && rm node-v4.2.4.tar.gz | |
| # cd it to main dircatory | |
| cd node-v4.2.4/ | |
| #Run tool's configurion | |
| ./configure | |
| #Build the binary of the tool | |
| make | |
| #Install the binary | |
| sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment