This repository provides quick installation scripts for essential utilities and developer tools. It's useful when:
- Setting up a new system without manually searching for installation guides.
- Automating tool installations for multiple machines.
- Ensuring consistent setup across different environments.
These scripts have been tested on:
- Ubuntu 24.04
- Ubuntu 22.04
If you don't want to manually download and execute the script, you can directly execute it using the following command:
curl -sSL https://raw.githubusercontent.com/Tarique-B-DevOps/linux-quick-install/main/<script_name>.sh | bashExample: To install AWS CLI directly:
curl -sSL https://raw.githubusercontent.com/Tarique-B-DevOps/linux-quick-install/main/awscli.sh | bashAlternatively, you can clone the repository and run the scripts locally:
- Clone the repository:
git clone https://github.com/Tarique-B-DevOps/linux-quick-install.git- Make the scripts executable:
chmod +x *.sh- Run a script to install a tool. Example:
./awscli.sh- Most scripts require
sudoprivileges. Ensure you have the necessary permissions. - All scripts are designed to install the latest stable versions of the respective tools.