viernes, 27 de mayo de 2011

deepOfix

http://download.deeproot.in/deepOfix-Mail-Server/deepOfix-Mail-Server-v3.3-r482.iso

martes, 3 de mayo de 2011

Instalar Libre Office en Ubuntu / Mint / Debian

In Terminal (Cosola)

sudo apt-get purge openoffice*.*

sudo add-apt-repository ppa:libreoffice/ppa
sudo apt-get update
 apt-get install libreoffice libreoffice-l10n-es language-support-es libreoffice-gnome


 

lunes, 22 de noviembre de 2010

How Do I Disable Strong Passwords - FreePBX

Edit the file at: admin/common/script.js.php.
Add "return false;" as the first line inside of the weakSecret() block.

sábado, 20 de noviembre de 2010

Enable Paging in Polycom IP Phone / Asterisk

After you ran setup-polycom in SSH to set up the Polycom provisioning files, edit /tftpboot/sip.cfg

There is a line containing the following:


This line must be replaced with:


Additionally, by default, when paging another Polycom phone, the phone will ring twice before the page is initiated. To eliminate the two rings, look at the line containing the following:


Replace it with this line:


Make sure your phones are getting provisioned properly so that it can read the changes and update the new settings. To properly provision your phones, at startup, click the Settings button and you will see different connection types available, and you can also enter the server's IP address. To update the settings, simply reboot your telephone.

sábado, 16 de octubre de 2010

viernes, 15 de octubre de 2010

Reset MySql Root Password

Step # 1 : Stop mysql service

# /etc/init.d/mysql stop

Step # 2: Start to MySQL server w/o password:

# mysqld_safe --skip-grant-tables &

Step # 3: Connect to mysql server using mysql client:

# mysql -u root

Step # 4: Setup new MySQL root user password

mysql> use mysql;
mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit


Step # 5: Stop MySQL Server:

# /etc/init.d/mysql stop

Step # 6: Start MySQL server and test it

# /etc/init.d/mysql start