{"id":617,"date":"2018-07-18T04:57:44","date_gmt":"2018-07-18T09:57:44","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=617"},"modified":"2019-08-31T20:29:15","modified_gmt":"2019-09-01T01:29:15","slug":"how-to-install-asterisk-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/","title":{"rendered":"How to Install Asterisk on Ubuntu 16.04"},"content":{"rendered":"<div id=\"linux-2716544190\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of a telephone private branch exchange (PBX). It includes many features such as: voicemail, conference calling, call recorder, automatic call distribution, interactive voice response, real time monitoring, debugging console and supports most of the standard voice over IP (VOIP) protocols including SIP, d H.323 and MGCP.<\/p>\n<p><!--more--><\/p>\n<h2>Login via SSH and update the OS<\/h2>\n<p>Make sure your server OS is fully up-to-date:<\/p>\n<pre>apt-get update\napt-get upgrade<\/pre>\n<h2>Install all required packages and dependencies<\/h2>\n<p>Install all required packages on your <strong>Asterisk VPS<\/strong> with the following commands:<\/p>\n<pre>apt-get install build-essential\napt-get install git-core subversion libjansson-dev sqlite autoconf automake libxml2-dev libncurses5-dev libtool\n<\/pre>\n<h2>Download Asterisk<\/h2>\n<p>At the time of the writing of this article the latest Asterisk version is 15.5.0, switch to the <code>\/usr\/src\/<\/code>directory with:<\/p>\n<pre>cd \/usr\/src\/<\/pre>\n<p>and download the asterisk archive with the following wget command:<\/p>\n<pre>wget http:\/\/downloads.asterisk.org\/pub\/telephony\/asterisk\/asterisk-15-current.tar.gz\n<\/pre>\n<p>When the download is completed extract the asterisk-15-current.tar.gz file by typing the following command:<\/p>\n<pre>tar -zxvf asterisk-15-current.tar.gz\n<\/pre>\n<h2>Compile Asterisk<\/h2>\n<p>Once the asterisk archive is extracted, switch to the <code>asterisk-15.5.0 <\/code> directory with:<\/p>\n<pre>cd \/usr\/src\/asterisk-15.5.0<\/pre>\n<p>Install all of the missing dependencies with the help of the <code>install_prereq<\/code> script:<\/p>\n<pre>.\/contrib\/scripts\/install_prereq install<\/pre>\n<p>Depending on the number of the missing packages the installation may take some time , once it is completed the output will look like this:<\/p>\n<pre>Current status: 7 (-2) upgradable.\n#############################################\n## install completed successfully\n#############################################\n<\/pre>\n<p>Next step is to run the <code>.\/configure<\/code> script which will check your system for missing libraries and dependencies and prepare the Asterisk code for the build process:<\/p>\n<pre>.\/configure \n<\/pre>\n<p>The output of the successful completion should look like this:<\/p>\n<pre>configure: Menuselect build configuration successfully completed\n\n               .$$$$$$$$=..\n            .$7$7..          .7$7:.\n          .$:.                 ,$7.7\n        .$7.     7$$           .$77\n     ..$.       $$$            .$$7\n    ..7$   .?.   $$$   .?.       7$$.\n   $.$.   .$$7. $$7 .7$$.      .$$.\n .777.   .$$$77$$77$$$7.      $$,\n $$~      .7$$$$$$$7.       .$$.\n.$7          .7$$$$7:          ?$$.\n$$          ?7$$$$$I        .$$7\n$$       .7$$$$$$$$      :$$.\n$$       $$$7$$$$$$    .$$.\n$$        $$   7$$7  .$$    .$$.\n$$             $$7         .$$.\n7$$7            7$$        7$$\n $$$                        $$\n  $$7.                       $  (TM)\n   $$$$.           .7$$$  $\n     $$$$$$7$$$$$.$$$\n       $$$$$$$$.\n\nconfigure: Package configured for:\nconfigure: OS type  : linux-gnu\nconfigure: Host CPU : x86_64\nconfigure: build-cpu:vendor:os: x86_64 : pc : linux-gnu :\nconfigure: host-cpu:vendor:os: x86_64 : pc : linux-gnu :\n<\/pre>\n<p>Once the configuration is completed start the compilation process using the <code>make <\/code> command by typing:<\/p>\n<pre>make\n<\/pre>\n<p>The build process may take several minutes depending on your system speed and once it is completed you will see the following message which means that the Asterisk was successfully compiled:<\/p>\n<pre>+--------- Asterisk Build Complete ---------+\n+ Asterisk has successfully been built, and +\n+ can be installed by running:              +\n+                                           +\n+                make install               +\n+-------------------------------------------+\n<\/pre>\n<p>The next step is to run the <code> make install<\/code> command which will install Asterisk and all compiled Asterisk modules:<\/p>\n<pre>make install\n<\/pre>\n<p>Upon successful Asterisk installation you will see the following message on your screen:<\/p>\n<pre> +---- Asterisk Installation Complete -------+\n +                                           +\n +    YOU MUST READ THE SECURITY DOCUMENT    +\n +                                           +\n + Asterisk has successfully been installed. +\n + If you would like to install the sample   +\n + configuration files (overwriting any      +\n + existing config files), run:              +\n +                                           +\n + For generic reference documentation:      +\n +    make samples                           +\n +                                           +\n + For a sample basic PBX:                   +\n +    make basic-pbx                         +\n +                                           +\n +                                           +\n +-----------------  or ---------------------+\n +                                           +\n + You can go ahead and install the asterisk +\n + program documentation now or later run:   +\n +                                           +\n +               make progdocs               +\n +                                           +\n + **Note** This requires that you have      +\n + doxygen installed on your local system    +\n +-------------------------------------------+\n<\/pre>\n<p>As the message above says run the make samples command to install the Asterisk sample configuration files:<\/p>\n<pre>make samples<\/pre>\n<p>Install the initialization script so that you can manage your Asterisk service using the systemctl command :<\/p>\n<pre>make config\n<\/pre>\n<p>The command above will show no output.<\/p>\n<p>You can also install the logrotation script with:<\/p>\n<pre>make install-logrotate\n<\/pre>\n<p>You will see the following output indicating that the logrotation configuration has been successfully created:<\/p>\n<pre>if [ ! -d \"\/etc\/asterisk\/..\/logrotate.d\" ]; then \\\n        \/usr\/bin\/install -c -d \"\/etc\/asterisk\/..\/logrotate.d\" ; \\\nfi\nsed 's#__LOGDIR__#\/var\/log\/asterisk#g' &lt; contrib\/scripts\/asterisk.logrotate | sed 's#__SBINDIR__#\/usr\/sbin#g' &gt; contrib\/scripts\/asterisk.logrotate.tmp\n\/usr\/bin\/install -c -m 0644 contrib\/scripts\/asterisk.logrotate.tmp \"\/etc\/asterisk\/..\/logrotate.d\/asterisk\"\nrm -f contrib\/scripts\/asterisk.logrotate.\n<\/pre>\n<h2>Start Asterisk<\/h2>\n<p>Now that you have Asterisk installed on your Ubuntu 16.04 VPS you can use the <code>systemctl<\/code> to start the Asterisk service:<\/p>\n<pre>systemctl start asterisk\n<\/pre>\n<p>To check if the Asterisk service is started use the <code> systemctl status<\/code> command:<\/p>\n<pre>systemctl status asterisk\n<\/pre>\n<p>If the service is running you will see the following message:<\/p>\n<pre>\u25cf asterisk.service - LSB: Asterisk PBX\n   Loaded: loaded (\/etc\/init.d\/asterisk; bad; vendor preset: enabled)\n   Active: active (running) since Wed 2018-07-18 03:36:23 CDT; 5s ago\n     Docs: man:systemd-sysv-generator(8)\n  Process: 15427 ExecStart=\/etc\/init.d\/asterisk start (code=exited, status=0\/SUCCESS)\n   CGroup: \/system.slice\/asterisk.service\n           \u2514\u250015440 \/usr\/sbin\/asterisk\n\n<\/pre>\n<p>To enable the asterisk service to start on system boot type the following command:<\/p>\n<pre>systemctl enable asterisk\n<\/pre>\n<p>That is it. The Asterisk installation is complete.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-619\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/Install-Asterisk-on-Ubuntu-16.04.jpg\" alt=\"Install Asterisk on Ubuntu 16.04\" width=\"180\" height=\"100\" \/>Of course you don\u2019t have to install Asterisk on Ubuntu 16.04 yourself if you use our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Premium Server Support Services<\/a>, in which case you can simply ask our expert Linux admins to install Asterisk on Ubuntu 16.04<strong>\u00a0<\/strong>for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this on how to install Asterisk on Ubuntu 16.04, post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-465629100\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of a telephone private branch exchange (PBX). It includes many features such as: voicemail, conference calling, call recorder, automatic call distribution, interactive voice response, real time monitoring, debugging console and supports most [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":618,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[110,20],"class_list":["post-617","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-asterisk","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Asterisk on Ubuntu 16.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Asterisk on Ubuntu 16.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-18T09:57:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-01T01:29:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Asterisk on Ubuntu 16.04\",\"datePublished\":\"2018-07-18T09:57:44+00:00\",\"dateModified\":\"2019-09-01T01:29:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/\"},\"wordCount\":531,\"commentCount\":12,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg\",\"keywords\":[\"asterisk\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/\",\"name\":\"How to Install Asterisk on Ubuntu 16.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg\",\"datePublished\":\"2018-07-18T09:57:44+00:00\",\"dateModified\":\"2019-09-01T01:29:15+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Asterisk on Ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-asterisk-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Asterisk on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Asterisk on Ubuntu 16.04 | LinuxHostSupport","description":"In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Asterisk on Ubuntu 16.04 | LinuxHostSupport","og_description":"In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-07-18T09:57:44+00:00","article_modified_time":"2019-09-01T01:29:15+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Asterisk on Ubuntu 16.04","datePublished":"2018-07-18T09:57:44+00:00","dateModified":"2019-09-01T01:29:15+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/"},"wordCount":531,"commentCount":12,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg","keywords":["asterisk","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/","name":"How to Install Asterisk on Ubuntu 16.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg","datePublished":"2018-07-18T09:57:44+00:00","dateModified":"2019-09-01T01:29:15+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will show you how to install Asterisk on\u00a0an Ubuntu 16.04 server.\u00a0Asterisk is the most popular open source software implementation of","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Asterisk-on-Ubuntu-16.04.jpg","width":750,"height":410,"caption":"How to Install Asterisk on Ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-asterisk-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Asterisk on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/617","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=617"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/617\/revisions"}],"predecessor-version":[{"id":887,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/617\/revisions\/887"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/618"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=617"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=617"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=617"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}