How can I run an extracted binary executable from anywhere like those in /usr/bin? [duplicate]
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
This question already has an answer here:
How to run scripts without typing the full path?
9 answers
How do I install a .tar.gz (or .tar.bz2) file?
13 answers
I have a .tar.gz
file and after extracting files the result container has the executable app (no install or configure files). How to make this app run anywhere on shell like other /usr/bin
apps.
software-installation execute-command
marked as duplicate by user535733, N0rbert, David Foerster, muru, ulidtko May 15 at 12:06
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
up vote
0
down vote
favorite
This question already has an answer here:
How to run scripts without typing the full path?
9 answers
How do I install a .tar.gz (or .tar.bz2) file?
13 answers
I have a .tar.gz
file and after extracting files the result container has the executable app (no install or configure files). How to make this app run anywhere on shell like other /usr/bin
apps.
software-installation execute-command
marked as duplicate by user535733, N0rbert, David Foerster, muru, ulidtko May 15 at 12:06
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
If all it contains is a bash or python script, etc. (no binaries) I'd stick it in/home/your_user_name/bin
. If it needssudo
permissions to run I'd stick it in/usr/local/bin
.
â WinEunuuchs2Unix
May 13 at 19:12
When I do so .. error appears "missing library file"
â Ibrahim
May 13 at 19:14
What is the name of the application and the package you installed?
â Emily
May 13 at 20:02
1
you need to chmod it to 755 and then move it to /usr/local/bin
â Joshua Besneatte
May 13 at 20:17
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
How to run scripts without typing the full path?
9 answers
How do I install a .tar.gz (or .tar.bz2) file?
13 answers
I have a .tar.gz
file and after extracting files the result container has the executable app (no install or configure files). How to make this app run anywhere on shell like other /usr/bin
apps.
software-installation execute-command
This question already has an answer here:
How to run scripts without typing the full path?
9 answers
How do I install a .tar.gz (or .tar.bz2) file?
13 answers
I have a .tar.gz
file and after extracting files the result container has the executable app (no install or configure files). How to make this app run anywhere on shell like other /usr/bin
apps.
This question already has an answer here:
How to run scripts without typing the full path?
9 answers
How do I install a .tar.gz (or .tar.bz2) file?
13 answers
software-installation execute-command
edited May 14 at 20:41
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
![](https://i.stack.imgur.com/E0SEH.png?s=32&g=1)
David Foerster
26k1361106
26k1361106
asked May 13 at 18:41
![](https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=32)
![](https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=32)
Ibrahim
1
1
marked as duplicate by user535733, N0rbert, David Foerster, muru, ulidtko May 15 at 12:06
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by user535733, N0rbert, David Foerster, muru, ulidtko May 15 at 12:06
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
If all it contains is a bash or python script, etc. (no binaries) I'd stick it in/home/your_user_name/bin
. If it needssudo
permissions to run I'd stick it in/usr/local/bin
.
â WinEunuuchs2Unix
May 13 at 19:12
When I do so .. error appears "missing library file"
â Ibrahim
May 13 at 19:14
What is the name of the application and the package you installed?
â Emily
May 13 at 20:02
1
you need to chmod it to 755 and then move it to /usr/local/bin
â Joshua Besneatte
May 13 at 20:17
add a comment |Â
If all it contains is a bash or python script, etc. (no binaries) I'd stick it in/home/your_user_name/bin
. If it needssudo
permissions to run I'd stick it in/usr/local/bin
.
â WinEunuuchs2Unix
May 13 at 19:12
When I do so .. error appears "missing library file"
â Ibrahim
May 13 at 19:14
What is the name of the application and the package you installed?
â Emily
May 13 at 20:02
1
you need to chmod it to 755 and then move it to /usr/local/bin
â Joshua Besneatte
May 13 at 20:17
If all it contains is a bash or python script, etc. (no binaries) I'd stick it in
/home/your_user_name/bin
. If it needs sudo
permissions to run I'd stick it in /usr/local/bin
.â WinEunuuchs2Unix
May 13 at 19:12
If all it contains is a bash or python script, etc. (no binaries) I'd stick it in
/home/your_user_name/bin
. If it needs sudo
permissions to run I'd stick it in /usr/local/bin
.â WinEunuuchs2Unix
May 13 at 19:12
When I do so .. error appears "missing library file"
â Ibrahim
May 13 at 19:14
When I do so .. error appears "missing library file"
â Ibrahim
May 13 at 19:14
What is the name of the application and the package you installed?
â Emily
May 13 at 20:02
What is the name of the application and the package you installed?
â Emily
May 13 at 20:02
1
1
you need to chmod it to 755 and then move it to /usr/local/bin
â Joshua Besneatte
May 13 at 20:17
you need to chmod it to 755 and then move it to /usr/local/bin
â Joshua Besneatte
May 13 at 20:17
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
If all it contains is a bash or python script, etc. (no binaries) I'd stick it in
/home/your_user_name/bin
. If it needssudo
permissions to run I'd stick it in/usr/local/bin
.â WinEunuuchs2Unix
May 13 at 19:12
When I do so .. error appears "missing library file"
â Ibrahim
May 13 at 19:14
What is the name of the application and the package you installed?
â Emily
May 13 at 20:02
1
you need to chmod it to 755 and then move it to /usr/local/bin
â Joshua Besneatte
May 13 at 20:17