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
Error Modoboa OpenSUSE 12.3 32Bits | |
Validating models... | |
0 errors found | |
October 26, 2013 - 07:48:11 | |
Django version 1.5.5, using settings 'webmail.settings' | |
Development server is running at http://192.168.56.100:8000/ | |
Quit the server with CONTROL-C. | |
Exception AttributeError: AttributeError("'_DummyThread' object has no attribute '_Thread__block'",) in <module 'threading' from '/usr/lib/python2.7/threading.pyc'> ignored |
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 | |
/* | |
Autor: Gustavo Freitas <[email protected]> | |
URL: http://firebitsbr.wordpress.com/2014/03/22/golang-obter-ipv4-e-ipv6-localmente-com-cdir/ | |
*/ | |
import "fmt" | |
import "net" |
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 | |
/* | |
URL: https://github.com/mccoyst/myip/blob/master/myip.go | |
URL: http://changsijay.com/2013/07/28/golang-get-ip-address/ | |
*/ | |
import ( | |
"net" | |
"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
package main | |
/* | |
URL: http://myexternalip.com/#golang | |
*/ | |
import ( | |
"io" | |
"net/http" |
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 | |
/* | |
Usage of ./getmyip --get_ip=(external|internal) | |
URL: http://myexternalip.com/#golang | |
URL: http://changsijay.com/2013/07/28/golang-get-ip-address/ | |
*/ |
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/python | |
# -*- coding: utf-8 -*- | |
## Versao 0.3 | |
### Colocar no Crontab | |
## Script para Backup do Citrix | |
## 15 03 * * * /usr/local/bin/backup_vms.py --backup --sendmail --clean=3 | |
import os, sys, optparse, socket |
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 | |
## Script to install a Debian Jessie 8.0 template on Xenserver 6.5 | |
## https://gist.github.com/hingstarne/5320400 | |
# Add your favourite mirror here | |
MIRROR=http://ftp.us.debian.org/debian/ | |
# No need to edit something below | |
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 | |
## Script de Instalacao Nagios3 no Ubuntu 14.04 32Bits | |
## Autor: Nilton OS <[email protected]> | |
## Versao 0.2 12-07-2015 | |
## Links: | |
## http://www.nagiosql.org/documentation.html | |
## Instalar Ambiente Apache2/PHP/Mysql |
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 Tomcat 9 + JRE8 on Ubuntu, Debian, CentOS, OpenSUSE 64Bits | |
### URL com Screencast de Instalação do Tomcat9 | |
### http://www.linuxpro.com.br/2017/04/instalando-tomcat-9-no-ubuntu/ | |
### Link: https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-8-on-centos-7 | |
## First install wget | |
## Primeiro instale o wget | |
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 Golang Stable 64Bits on Linux (Debian|Ubuntu|OpenSUSE|CentOS) | |
## http://www.linuxpro.com.br/2015/06/golang-aula-1-instalacao-da-linguagem-no-linux.html | |
## Run as root (sudo su) | |
## Thank's @geosoft1 | @gwmoura | |
GO_URL="https://go.dev/dl" | |
GO_VERSION=$(curl -s 'https://go.dev/VERSION?m=text'|head -n1) | |
GO_FILE="$GO_VERSION.linux-amd64.tar.gz" |