Did you download Linux software that came with an install.sh file? Install.sh is a simple text-based shell script that makes it easy to install software. To use an install.sh script, you'll first need to make it executable using chmod +x install.sh . Then, you can execute the script in a terminal with the command ./install.sh or sudo ./install.sh . This wikiHow guide will walk you through executing an install.sh file from the Linux command line using Ubuntu, Debian, and any other version of Linux.
How to Install .sh Files
Install.sh is a simple text-based shell script that makes it easy to install software. To use an install.sh script, you'll first need to make it executable using chmod +x install.sh. Then, you can execute the script in a terminal with the command ./install.sh or sudo ./install.sh.
Steps
-
Open a Terminal window. On most Linux desktop environments, you can open a Terminal by pressing Ctrl + Alt + T . [1] X Research source
- Before installing software, make sure to check the README or INSTALL file that came in your download for specific instructions and installation options.
-
Use cd to enter the folder that contains the install.sh script. For example, if install.sh is in your Downloads folder, type cd ~/Downloads and press Enter to enter that directory.
- If the file you downloaded is compressed into a TGZ or TAR.GZ archive, be sure to unpack the files first.
- You can extract a TGZ or TAR.GZ file using the command tar -xzvf filename.tgz .
- To make sure you’re in the right directory , type ls -a and press Enter . You should see your install.sh file, as well as all other files in the directory.
Advertisement -
Make the install.sh file executable. The trick to getting the install.sh script to run is to change its permissions . To do this, type chmod +x install.sh and press Enter . [2] X Research source
- If you're unable to change the permissions, you'll need root access . Instead, run sudo chmod +x install.sh and press Enter .
- If you don’t see an error, you’ll know the install script is now executable.
-
Execute the install.sh script. To do this with root access, type sudo ./install.sh and press Enter . [3] X Research source
- You can also use the command sudo bash install.sh or sudo sh install.sh to run the script.
- If you're just installing the software in your own home directory and don't need root permissions, you can use omit sudo and use ./install.sh instead.
- Depending on the script and app you're installing, you may be prompted to complete additional steps to install the software .
Community Q&A
-
QuestionHow to run a Linux program from terminalCommunity AnswerEnter these commands into the terminal: cd /location of file/. For example, /home/username/Documents./name_of_file.extension. Replace these with the name of the file/program and the extension (commonly .desktop in Linux or .exe (executable) or .sh (script). Make sure the file/program is marked as executable in its properties.
-
QuestionI typed bash install.sh but the output was install: no input file specified?Community AnswerMake sure you specify where the file needs to go or you might need to go into a folder outside of the home directory.
-
QuestionWhat is too many argument error in installation?MOHMMD ELFACommunity AnswerYou put more arguments than necessary. This command has enough arguments: su name . This command has too many or too little: su Jane Eric.
Tips
- Depending on the program, you might wind up with an uninstall.sh script that you can use to uninstall it. To uninstall, make the uninstall script executable with chmod +x uninstall.sh , then run ./uninstall or sudo ./uninstall .Thanks
- You can also change a file's permissions using your desktop environment's file manager. In Ubuntu , right-click the ".sh" file, choose Properties , and then click the Permissions tab. Check the box that says "Allow executing file as program," and then click Close .Thanks
- Once you make install.sh executable using chmod +x , you can also run the script from your desktop environment by double-clicking the file.Thanks
References
About This Article
1. Download and extract the package.
2. Open a terminal window.
3. Go to the folder that contains the "install.sh" file.
4. Use " chmod +x
" to make "install.sh" executable.
5. Type " bash install.sh
" and press Enter.
6. Enter the root password and follow the on-screen instructions.