Install Docker on Debian

Set up the repository Update the apt package index and install packages to allow apt to use a repository over HTTPS: Add Docker’s official GPG key: Use the following command to set up the stable repository. Install Docker Engine Update the apt package index, and install the latest version of Docker Engine and containerd, or … Read more

Where Proxmox ISO Stored

How to use wget to download iso’s directly to proxmox 6.2-14. Here is the location for the iso file. There is 1 ISO – a Debian ISO that I uploaded to the GUI. Login the proxmox host via ssh. Now find the location as follows: Download ubuntu 16.04. You can also specify a directory for … Read more

Install Asterisk on CentOS

This install in on Ubuntu 18.04. There is an excellent article for CentOS at – https://www.tecmint.com/install-asterisk-on-centos-7/ Please review aslo: – https://wiki.asterisk.org/wiki/display/AST/Installing+Asterisk+From+Source – https://community.asterisk.org/ – https://www.sangoma.com/articles/how-to-install-asterisk-11-on-ubuntu-12-4-lts/ – http://asteriskdocs.org/en/3rd_Edition/asterisk-book-html-chunk/asterisk-Install.html Install Requirements: Firewalld. See the Article here to set up asterisk on firewalld – https://www.geekdecoder.com/firewalld-on-centos-8/- The command installs a bunch of new packages including gcc, g++ and make … Read more

Curl Error With IPV6

Recently, there was an issue with a curl command that ran a script with php. The curl command would finish after a lengthy time as before it was completing within seconds. The issue turned out to be that the command was using the IPV6 connection where in the data center the IPV6 was not active. … Read more

Check CPU Type

Here is how to check the CPU type in CentOS: # dmidecode –type processor Output: # dmidecode 2.12 SMBIOS 2.7 present. Handle 0x0004, DMI type 4, 42 bytes Processor Information Socket Designation: CPU 1 Type: Central Processor Family: Xeon Manufacturer: Intel ID: D7 06 02 00 FF FB EB BF Signature: Type 0, Family 6, … Read more

How To Set Up a Firewall Using Firewalld on CentOS 7

Turning on the Firewall # sudo systemctl start firewalld.service We can verify that the service is running and reachable by typing: # firewall-cmd –state output running We can see which zone is currently selected as the default by typing: # firewall-cmd –get-default-zone output public firewall-cmd –get-active-zones output public interfaces: eth0 eth1 We can print out … Read more

Php 4 on cpanel

Here are a few articles that mention it: https://documentation.cpanel.net/display/EA/Custom+Modules https://forums.cpanel.net/threads/how-to-easy-php4-php5-side-by-side-after-removal-of-php4-from-easyapache.304942/ http://www.liquidweb.com/kb/the-end-of-php-4/ https://www.siteground.com/kb/how_to_have_different_php__mysql_versions/ You can set the handler for the site using a .htaccess file in the domains webroot with the following contents: Code: AddHandler application/x-httpd-php4 .php .php4 .php3