A comprehensive Linux installation script that sets up your system with essential tools and configurations.
curl -s https://raw.githubusercontent.com/chroakPRO/linuxinstall/main/install.sh | bash
For an interactive installation with prompts and options:
curl -s https://raw.githubusercontent.com/chroakPRO/linuxinstall/main/install.sh | bash -s -- --interactive
For a silent installation with default options:
curl -s https://raw.githubusercontent.com/chroakPRO/linuxinstall/main/install.sh | bash -s -- --non-interactive
--interactive
: Run in interactive mode with prompts (default)--non-interactive
: Run in silent mode with default options--dry-run
: Show what would be installed without making changes--help
: Show help message
- System package installation
- Development tools setup
- Configuration management
- And more...
This project uses GitHub Actions for continuous integration, which includes:
- Shell script linting (ShellCheck)
- Spell checking
- Installation script validation
MIT License - See LICENSE file for details