https://github.com/centminmod/centminmod2
https://github.com/centminmod/centminmod2
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/centminmod/centminmod2
- Owner: centminmod
- License: gpl-3.0
- Created: 2018-04-30T15:09:46.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-30T18:23:54.000Z (about 8 years ago)
- Last Synced: 2024-12-31T01:41:38.325Z (over 1 year ago)
- Language: Shell
- Size: 27.6 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changes.html
- Contributing: CONTRIBUTING.md
- License: license.txt
Awesome Lists containing this project
README
[](https://github.com/centminmod/centminmod/stargazers) [](https://github.com/centminmod/centminmod/network) [](https://github.com/centminmod/centminmod/issues) [](https://raw.githubusercontent.com/centminmod/centminmod/master/license.txt)

Centmin Mod can be installed via 2 different ways or latest install instructions on [Official Install Guide](https://centminmod.com/install.html):
1. Centmin Mod Unattended Command Line Install (highly recommended)
2. Centmin Mod installed via Git
After install bookmark and read the [Getting Started Guide](https://centminmod.com/getstarted.html) and check out the Centmin Mod Community forum at [https://community.centminmod.com](https://community.centminmod.com)
## Centmin Mod Unattended Command Line Install
Fastest method of install and allows fully unattended installation. Just type this command as root user in SSH on a fresh CentOS 6 or CentOS 7 server. Installation should take between 15-30 minutes on a fast server or up to 50-70 minutes on a slower server depending on server specs and your server's network connectivity and download speed.
### For latest 1.2.3-eva2000.08 stable install
yum -y update; curl -O https://centminmod.com/installer.sh && chmod 0700 installer.sh && bash installer.sh
### For latest 1.2.3-eva2000.09 beta install
yum -y update; curl -O https://centminmod.com/betainstaller.sh && chmod 0700 betainstaller.sh && bash betainstaller.sh
## Centmin Mod installed via Git
Type as root user in SSH these commands, Centmin Mod will have it's install setup at /usr/local/src/centminmod. Replace `branchname=123.08stable` with `branchname=123.09beta01` if you want to install the beta version.
yum -y install git wget nano bc unzip
cd /usr/local/src
branchname=123.08stable
git clone -b ${branchname} --depth=1 https://github.com/centminmod/centminmod.git centminmod
cd centminmod
Then to install either type
for menu mode run centmin.sh and select menu option 1 to install
./centmin.sh
or for CLI install mode
./centmin.sh install
## Contributing
Below are guidelines for contributing code wise.
* [Centmin Mod Insights forum](https://community.centminmod.com/forums/centmin-mod-insights.20/) is the place to ask questions or clarifications about how Centmin Mod works under the hood.
* Every Git committed code also has a corresponding forum thread in [Centmin Mod Github.com Repo forums](https://community.centminmod.com/link-forums/centmin-mod-github-com-repository.13/) if you're more comfortable using the forums instead of the [Github issue tracker](https://github.com/centminmod/centminmod/issues).
# Bug Reports
* Bug reports can be made via [Github issue tracker](https://github.com/centminmod/centminmod/issues) or Centmin Mod official forum's [Bug Reports forums](https://community.centminmod.com/forums/bug-reports.12/).
# Pull Requests
* Pull requests can be done against the current [Github active branches](https://github.com/centminmod/centminmod/branches/active) - currently being [123.08stable](https://github.com/centminmod/centminmod/tree/123.08stable) and [123.09beta01](https://github.com/centminmod/centminmod/tree/123.09beta01). Usually once weekly, active branch changes are then merged into [master branch](https://github.com/centminmod/centminmod).
# Suggestions
* Suggestions and feedback can be made via [Github issue tracker](https://github.com/centminmod/centminmod/issues) or Centmin Mod official forum's [Feature Requests & Suggestions forums](https://community.centminmod.com/forums/feature-requests-suggestions.11/).