https://github.com/drpdishant/shell-scripts
Scripted Software Stack Installation for Ubuntu & Fedora
https://github.com/drpdishant/shell-scripts
apt apt-get debian dialog dpkg error-handling fedora installer package rpm rpm-package-install rpm-packages shell-script software-installation ubuntu ubuntu-packages
Last synced: 3 months ago
JSON representation
Scripted Software Stack Installation for Ubuntu & Fedora
- Host: GitHub
- URL: https://github.com/drpdishant/shell-scripts
- Owner: drpdishant
- Created: 2019-04-05T05:35:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-12T09:08:28.000Z (over 4 years ago)
- Last Synced: 2025-05-29T11:13:17.687Z (4 months ago)
- Topics: apt, apt-get, debian, dialog, dpkg, error-handling, fedora, installer, package, rpm, rpm-package-install, rpm-packages, shell-script, software-installation, ubuntu, ubuntu-packages
- Language: Shell
- Homepage: https://drpdishant.github.io/shell-scripts
- Size: 2.14 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Software Stack Installation Script
## Usage
* Install and Update Listed Programs.
> * Google Chrome
> * Rocket Chat
> * Sublime Text
> * Code Insiders
> * Docker-CE
> * MongoDB* Download and Install packages not provided through package repositories, .e.g Rocketchat, Code Insiders
* Check for Updates for Rocket chat and Code Insiders and Install them if any available.### Install all regular programs
* It will fetch and run scripts directly from the web using curl
* So first of all we need to install curl### For Debian Based Distros
```bash
sudo apt-get -qq update && sudo apt-get -y -qq install curl
```### For Fedora Based Distros
```bash
sudo dnf -y install curl
```#### Beginning the Installation
* After installing curl you can now run the following command to begin the setup.
* You'll be prompted to enter branch to be used: (Default is "master")> `develop` *branch is for development purposes only, use with caution you might end up with a buggy codes*
```bash
/bin/bash -c "$(curl -sL https://tinyurl.com/y8c67amv)"
```* You will be prompted to Select Required Packages.
* Installation will check for Updates if Packages Already Exist and Install them if any update is availabe.
* Select the Programs of your choice and hit **`Enter`**