This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# See https://rspamd.com/downloads.html | |
apt update | |
apt-get install sudo | |
sudo apt-get install -y lsb-release wget gpg | |
CODENAME=`lsb_release -c -s` | |
if [ $CODENAME = "trixie" ]; then | |
CODENAME="bookworm" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Install ISPConfig3 on Ubuntu 16.04 64Bits | |
## Author: Nilton OS www.linuxpro.com.br | |
## https://www.howtoforge.com/tutorial/perfect-server-ubuntu-16.04-with-apache-php-myqsl-pureftpd-bind-postfix-doveot-and-ispconfig/ | |
## Version 0.5 | |
## Variables | |
## Install apache for https/2 Support from unofficial Source | |
APACHE=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Install Samba4 4.12.3 | |
## On Ubuntu 18.04 64Bits | |
## Author: Nilton OS -- www.linuxpro.com.br | |
## Link: https://github.com/jniltinho/go-samba4 | |
## https://wiki.samba.org/index.php/Package_Dependencies_Required_to_Build_Samba | |
## Version: 0.6 | |
### Tested on Ubuntu 18.04 64Bits | |
apt-get update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Install Gogs v0.11.4 + Nginx Webserver + Mysql | |
## On Debian, Ubuntu 64Bits | |
## Author: Nilton OS -- www.linuxpro.com.br | |
## Version: 3.5 | |
### Tested on Ubuntu 16.04 LTS 64Bits | |
### Tested on Debian 8/9 64Bits | |
echo 'install_gogs_ubuntu.sh' |