https://github.com/subfission/centos-installers
Various scripts for installing additional packages on CentOS 6.
https://github.com/subfission/centos-installers
Last synced: 11 months ago
JSON representation
Various scripts for installing additional packages on CentOS 6.
- Host: GitHub
- URL: https://github.com/subfission/centos-installers
- Owner: subfission
- License: gpl-3.0
- Created: 2017-02-05T02:21:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-12-16T08:28:49.000Z (over 6 years ago)
- Last Synced: 2025-03-31T07:12:25.518Z (about 1 year ago)
- Language: Python
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Centos Installers
Various scripts for installing additional packages on CentOS 6.
Some scripts may work for additional versions or platforms and are specified in the script headers.
#Installation/Execution
Scripts can be executed directly or downloaded and run. All scripts are intended to be installed from the root user.
## Directly
```bash
sudo bash <(curl -L $RAW_SCRIPT_URL)
```
## Download Entire Package
```bash
wget -O /tmp/centos_installers.zip https://github.com/subfission/centos-installers/archive/master.zip
unzip -d /tmp /tmp/centos_installers.zip && rm -f /tmp/centos_installers.zip
mv /tmp/centos-installers-master /centos-installers
cd /centos-installers/scripts
```