https://github.com/tarique-b-devops/linux-quick-install
Collection of Bash scripts for installing software and command-line utilities.
https://github.com/tarique-b-devops/linux-quick-install
amd64 automation bash-scripting debian-12 devops devops-tools linux ubuntu2204 ubuntu2404
Last synced: 2 days ago
JSON representation
Collection of Bash scripts for installing software and command-line utilities.
- Host: GitHub
- URL: https://github.com/tarique-b-devops/linux-quick-install
- Owner: Tarique-B-DevOps
- License: mit
- Created: 2025-01-18T06:54:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-02T11:23:53.000Z (10 months ago)
- Last Synced: 2026-05-04T05:40:06.977Z (about 2 months ago)
- Topics: amd64, automation, bash-scripting, debian-12, devops, devops-tools, linux, ubuntu2204, ubuntu2404
- Language: Shell
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Installation Scripts
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.
## Supported Platforms
These scripts have been tested on:
- Ubuntu 24.04
- Ubuntu 22.04
## Usage
### Execute Using Single Command
If you don't want to manually download and execute the script, you can directly execute it using the following command:
```bash
curl -sSL https://raw.githubusercontent.com/Tarique-B-DevOps/linux-quick-install/main/.sh | bash
```
**Example**: To install AWS CLI directly:
```bash
curl -sSL https://raw.githubusercontent.com/Tarique-B-DevOps/linux-quick-install/main/awscli.sh | bash
```
### Clone and Run
Alternatively, you can clone the repository and run the scripts locally:
1. **Clone the repository**:
```bash
git clone https://github.com/Tarique-B-DevOps/linux-quick-install.git
```
2. **Make the scripts executable**:
```bash
chmod +x *.sh
```
3. **Run a script to install a tool**. Example:
```bash
./awscli.sh
```
## Notes
- Most scripts require `sudo` privileges. Ensure you have the necessary permissions.
- All scripts are designed to install the latest stable versions of the respective tools.