- Teamspeak default UDP voice port is 9987
- Teamspeak default TCP file transfert port is 30033
- Teamspeak default TCP query port is 10011
- For query server, just connect with SSH to server and use telnet locally
- logrotate is not supported
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 | |
# | |
# Watch Postfix virtual user mailbox folder. | |
# | |
# inotify-tools APT package is required | |
# | |
DEFAULT_USER="test" | |
DEFAULT_DOMAIN="yahoo.dev" |
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
<?php | |
/** | |
* Helper class which extract GeoIP ISO 3166 country Codes list from Maxmind website. | |
*/ | |
class MaxMindIso3166 | |
{ | |
/** | |
* Maxmind CSV download url. | |
* |
Add in composer.json :
"doctrine/orm": "2.5.*",
"symfony/validator": "2.6.*",
"jms/serializer": "1.0.0"
Some OVH dedicated server does not supports installing Debian original kernel due to hardware support issue.
Most common issue is the network adapter card.
- Intel ixgbe linux drivers : https://downloadcenter.intel.com/download/14687
- OVH forum : https://forum.ovh.co.uk/showthread.php?5616-Standard-Kernels-with-Ubuntu-Debian&p=73788&viewfull=1#post73788
# Debian 8 LTS
/etc/apt/sources.list
file :
# Debian Jessie - LTS
deb http://deb.debian.org/debian/ jessie main contrib non-free
deb-src http://deb.debian.org/debian/ jessie main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free
Source : https://www.linode.com/docs/security/upgrading/upgrade-debian-to-the-newest-release/
Start a screen session is recommended to ensure that the updates will continue to install in the unlikely event you are disconnected during the upgrade process.
Install screen package :