How can I run an extracted binary executable from anywhere like those in /usr/bin? [duplicate]

 Clash Royale CLAN TAG#URR8PPP
Clash Royale CLAN TAG#URR8PPP 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 needs- sudopermissions 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


David Foerster
26k1361106
26k1361106
asked May 13 at 18:41


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 needs- sudopermissions 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 needs- sudopermissions 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 needssudopermissions 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