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
$ dahdi_ <TAB> <TAB> | |
dahdi_cfg | |
dahdi_maint | |
dahdi_scan | |
dahdi_speed | |
dahdi_waitfor_span_assignments | |
dahdi_genconf | |
dahdi_monitor | |
dahdi_span_assignments | |
dahdi_test |
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
$ systemctl status asterisk | |
● asterisk.service - LSB: Asterisk PBX | |
Loaded: loaded (/etc/rc.d/init.d/asterisk; bad; vendor preset: disabled) | |
Active: active (running) since Wed 2017-07-19 19:29:42 -04; 1h 39min ago | |
Docs: man:systemd-sysv-generator(8) | |
Process: 889 ExecStart=/etc/rc.d/init.d/asterisk start (code=exited, status=0/SUCCESS) | |
Main PID: 942 (asterisk) | |
CGroup: /system.slice/asterisk.service | |
├─937 /bin/sh /usr/sbin/safe_asterisk | |
└─942 /usr/sbin/asterisk -f -vvvg -c |
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
systemctl start asterisk |
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
cd /usr/src/asterisk-x.x.x | |
./configure | |
make all | |
make install | |
make samples | |
make config |
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
cd /usr/src/libpri-x.x.x | |
make all | |
make install |
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
# Repairing DAHDI compilation error | |
yum install -y autoconf automake m4 perl | |
cd /usr/src/dahdi-linux-complete-x.x.x+x.x.x/tools | |
autoreconf -f -i | |
# Starting compile process again ... and voila | |
make all | |
make install | |
make config |
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
# mensaje de error al compilar dahdi | |
configure: *** dahdi-tools build successfully configured *** | |
make -C tools all | |
make[1]: Entering directory `/usr/src/dahdi-linux-complete-2.11.1+2.11.1/tools' | |
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /usr/src/dahdi-linux-complete-2.11.1+2.11.1/tools/auxdir/missing aclocal-1.15 -I m4 | |
/usr/src/dahdi-linux-complete-2.11.1+2.11.1/tools/auxdir/missing: line 81: aclocal-1.15: command not found | |
WARNING: 'aclocal-1.15' is missing on your system. | |
You should only need it if you modified 'acinclude.m4' or | |
'configure.ac' or m4 files included by 'configure.ac'. | |
The 'aclocal' program is part of the GNU Automake package: |
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
# Asterisk 13 - Building DAHDI | |
cd /usr/src/dahdi-linux-complete-x.x.x+x.x.x # check exact version oh dahdi in /usr/src | |
make all # Build all binaries related with dahdi | |
make install # Install binaries of DAHDI and DAHDI tools | |
make config # Install control script ??? |
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
# Installing optional utilities | |
yum -y install vim # advanced text editor | |
yum -y install sed # stream editor | |
yum -y install awk # line editor | |
yum -y install wget # downloads using http protocol | |
# Install Compiling tools | |
yum install -y gcc # GNU C compiler |
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
$ tar -xzvf asterisk-13-current.tar.gz -C /usr/src | |
$ tar -xzvf dahdi-linux-complete-current.tar.gz -C /usr/src | |
$ tar -xzvf libpri-current.tar.gz -C /usr/src |
NewerOlder