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' |
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
package main | |
/* | |
Author: Nilton OS<[email protected]> | |
Version: 0.06 | |
Update: 2015/10/02 | |
https://github.com/leonamp/SPFBL/blob/master/spfbl.sh | |
Port for Golang | |
# Atenção! Para utilizar este serviço, solicite a liberação das consultas |
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
package main | |
import ( | |
"fmt" | |
"io" | |
"io/ioutil" | |
"net" | |
"os" | |
"strings" |
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
# -*- coding: utf-8 -*- | |
''' | |
Autor: Luiz Felipe na Lista Python Brasil 31-10-2015 | |
A série de Fibonacci é formada pela seqüência 1,1,2,3,5,8,13,21,34,55,... | |
Faça um programa capaz de gerar a série até o n−ésimo termo. | |
''' | |
#Fn = F(n-1) + F(n-2) | |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Script Send Mail Nagios (send_mail.py) | |
Copyrighted by Nilton OS <jniltinho at gmail.com> | |
License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html) | |
Version: 0.1 | |
Put this script in Nagios plugins folder |
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
package main | |
import ( | |
"bytes" | |
"compress/gzip" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"os" |
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 Zimbra 8.6 | |
## Ubuntu 14.04 64Bits, 4GB RAM, 100GB HD | |
## For best performance use SSD. | |
## http://www.linuxpro.com.br/2015/06/instalacao-do-zimbra-8-6-0-no-ubuntu.html | |
## Download Zimbra: https://www.zimbra.com/downloads/zimbra-collaboration-open-source/ | |
## http://serverfault.com/questions/707997/zimbra-8-6-sends-some-mail-into-black-hole | |
## Run as root | |
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
#!/usr/bin/perl | |
$ENV{"LANG"}="C"; | |
use strict; | |
$ENV{'PATH'} = "/bin:/sbin:/usr/bin:/usr/sbin"; | |
my %hash_mail = (); |
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 FFMPEG 2.8.6 Ubuntu 16.04 64Bits | |
## http://www.linuxpro.com.br/2017/04/compile-ffmpeg-nvenc-ubuntu/ | |
## Pacote Compilado no GITHUB: https://github.com/jniltinho/oficinadotux | |
## Run as root (sudo su) | |
## Check Nvidia ENC | |
## nvidia-smi dmon -i 0 | |
## Test FFMPEG ENCODER NVENC (FFMPEG 2.8.6 NVIDIA-SDK 6.0.1) |
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 | |
## Integrar Ubuntu 16.04 32/64Bits no Windows Active Directory Domain – Fullest Integration | |
### Primeira Etapa ---------------------------------------------------------------------------- | |
## Voce precisa mudar a linha abaixo | |
MY_DOMAIN="mydomain.local" | |
GET_ARCH=$(getconf LONG_BIT) |