{"id":18992,"date":"2016-04-25T03:17:36","date_gmt":"2016-04-25T08:17:36","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18992"},"modified":"2022-06-03T03:43:38","modified_gmt":"2022-06-03T08:43:38","slug":"how-to-install-atutor-on-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/","title":{"rendered":"How to Install ATutor on Ubuntu 14.04"},"content":{"rendered":"
<\/div>

\"atutor-logo\"ATutor<\/a> is a free open source web-based Learning Management System (LMS) used to develop and deliver online courses. It is used in various contexts, including online course management, continuing professional development for teachers, career development and academic research.<\/p>\n

This software is cited as unique for its accessibility features, (useful to visually impaired and disabled learners) and for its suitability for educational use.<\/p>\n

ATutor administrators can install or update ATutor in minutes, develop custom themes to give ATutor a new look and easily extend its functionality with feature modules. Educators can quickly assemble, package, and redistribute web-based instructional content, easily import prepackaged content and conduct their courses online giving students a chance to learn in an accessible, adaptive and social learning environment.<\/p>\n

So in this article we will show you how to install ATutor on an Ubuntu 14.04 VPS<\/a><\/strong>.<\/p>\n

REQUIREMENTS<\/h5>\n

We will be using our SSD 1 Linux VPS<\/a> hosting plan for this tutorial.<\/p>\n

LOG IN TO YOUR SERVER VIA SSH<\/h5>\n
# ssh root@server_ip<\/pre>\n

You can check whether you have the proper Ubuntu version installed on your server with the following command:<\/p>\n

# lsb_release -a<\/pre>\n

You should get this output:<\/p>\n

Distributor ID: Ubuntu\r\nDescription:    Ubuntu 14.04.4 LTS\r\nRelease:        14.04\r\nCodename:       trusty<\/pre>\n
UPDATE THE SYSTEM<\/h5>\n

Make sure your server is fully up to date using:<\/p>\n

# apt-get update && apt-get upgrade<\/pre>\n

Once the system upgrade is completed, enter your MySQL service as root and create the much needed database for ATutor with the below queries:<\/p>\n

# mysql -u root -p\r\n\r\nmysql> create database atutor;\r\n\r\nmysql> grant all privileges on atutor.* to atutoruser@localhost identified by 'your_password';\r\n\r\nmysql> flush privileges;\r\n\r\nmysql> exit<\/pre>\n
INSTALL ATUTOR<\/h5>\n

When this tutorial was written, the latest ATutor version was 2.2.1 . We will download the installation in the \/opt directory, but feel free to use another one to match your needs.<\/p>\n

# cd \/opt<\/pre>\n
# wget http:\/\/downloads.sourceforge.net\/project\/atutor\/ATutor%202\/ATutor-2.2.1.tar.gz?r=http%3A%2F%2Fwww.atutor.ca%2Fatutor%2Fdownload.php -O ATutor-2.2.1.tar.gz<\/pre>\n
# tar -zxvf ATutor-2.2.1.tar.gz<\/pre>\n

With these three commands above , we entered \/opt, downloaded the latest version of ATutor and unpacked the archive.<\/p>\n

Now move the installation to the \/var\/www\/html\/ directory:<\/p>\n

# mv ATutor\/ \/var\/www\/html\/atutor\/<\/pre>\n

Assign the proper ownership of files\/directories:<\/p>\n

# chown www-data: -R \/var\/www\/html\/atutor\/<\/pre>\n

Now create a virtual host directive for the domain that will serve your ATutor installation. Open a file with your favorite text editor. We are using nano:<\/p>\n

# nano \/etc\/apache2\/sites-available\/atutor.conf<\/pre>\n

Paste these lines in the file:<\/p>\n

<VirtualHost *:80>\r\nServerAdmin webmaster@yourdomain.com\r\nDocumentRoot \"\/var\/www\/html\/atutor\/\"\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\nErrorLog \"\/var\/log\/apache2\/yourdomain.com-error_log\"\r\nCustomLog \"\/var\/log\/apache2\/yourdomain.com-access_log\" combined\r\n\r\n<Directory \"\/var\/www\/html\/atutor\/\">\r\nDirectoryIndex index.html index.php\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nRequire all granted\r\n<\/Directory>\r\n<\/VirtualHost><\/pre>\n

Replace yourdomain.com with your actual domain, save and close the file.<\/p>\n

Enable the config file:<\/p>\n

# a2ensite atutor<\/pre>\n

Restart Apache for the changes to take effect:<\/p>\n

# service apache2 reload<\/pre>\n

Now, open your favorite web browser and navigate to the domain that you configured in your Apache config file.<\/p>\n

You will be welcomed by the installation page of ATutor. Click on Install next to New Installation at the bottom of the page and accept the terms of use by clicking ‘I Agree’.<\/p>\n

Enter the database credentials that you created previously. The next step is to configure your Super Administrator Account. Enter an administrator username, password and email. Then give your site a name, enter a contact email and fill in the details in the Personal Account field. Once that is done, click on Next.<\/p>\n

You can now configure the path to the Content directory which is a directory where all your site courses files will be stored. We will leave the default path given by the installation (\/var\/www\/html\/atutor\/content). However, this directory does not exist on your server. Therefore, enter the following commands to create the directory and assign the proper ownership:<\/p>\n

# mkdir \/var\/www\/html\/atutor\/content\r\n\r\n# chown www-data: -R \/var\/www\/html\/atutor\/content<\/pre>\n

Decide whether you like to send your site URL to the ATutor server anonymously and click on Next to finish the installation.<\/p>\n

You will get the following message:<\/p>\n

Done!\r\nCongratulations on your installation of ATutor 2.2.1!\r\n\r\nYou may now login using your personal and administrator accounts you created in Step 3.\r\n\r\nFor security reasons once you have confirmed that ATutor has installed correctly, you should delete the install\/ directory, and reset the permissions on the config.inc.php file to read only.\r\n\r\nSee the Support Forums on atutor.ca for additional help & support.<\/pre>\n

Delete the install directory as the instructions say:<\/p>\n

# rm -rf \/var\/www\/html\/atutor\/install\/<\/pre>\n

Also check if the config.inc.php file has only read permissions:<\/p>\n

# ls -la \/var\/www\/html\/atutor\/include\/config.inc.php<\/pre>\n

which should give you the following output:<\/p>\n

-r--r--r-- 1 www-data www-data 2841 Mar 30 14:36 \/var\/www\/html\/atutor\/include\/config.inc.php<\/pre>\n

If you get this, you are OK. However, if the file has other permissions beside read only, then execute this command:<\/p>\n

# chmod 444 \/var\/www\/html\/atutor\/include\/config.inc.php<\/pre>\n

Congratulations, you now have an active and working ATutor installation.<\/p>\n


\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install ATutor<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS<\/strong>.<\/span> If you liked this 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>\n","protected":false},"excerpt":{"rendered":"

ATutor is a free open source web-based Learning Management System (LMS) used to develop and deliver online courses. It is … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18993,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698],"tags":[1193,512,59],"yoast_head":"\nHow to Install ATutor on Ubuntu 14.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install ATutor on Ubuntu 14.04 - RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-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 ATutor on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install ATutor on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-25T08:17:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:43:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"198\" \/>\n\t<meta property=\"og:image:height\" content=\"198\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install ATutor on Ubuntu 14.04\",\"datePublished\":\"2016-04-25T08:17:36+00:00\",\"dateModified\":\"2022-06-03T08:43:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/\"},\"wordCount\":676,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png\",\"keywords\":[\"atutor\",\"LMS\",\"ubuntu\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/\",\"name\":\"How to Install ATutor on Ubuntu 14.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png\",\"datePublished\":\"2016-04-25T08:17:36+00:00\",\"dateModified\":\"2022-06-03T08:43:38+00:00\",\"description\":\"How to Install ATutor on Ubuntu 14.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png\",\"width\":198,\"height\":198},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install ATutor on Ubuntu 14.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install ATutor on Ubuntu 14.04 - RoseHosting","description":"How to Install ATutor on Ubuntu 14.04 - RoseHosting","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:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ATutor on Ubuntu 14.04 - RoseHosting","og_description":"How to Install ATutor on Ubuntu 14.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-04-25T08:17:36+00:00","article_modified_time":"2022-06-03T08:43:38+00:00","og_image":[{"width":198,"height":198,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install ATutor on Ubuntu 14.04","datePublished":"2016-04-25T08:17:36+00:00","dateModified":"2022-06-03T08:43:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/"},"wordCount":676,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png","keywords":["atutor","LMS","ubuntu"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/","name":"How to Install ATutor on Ubuntu 14.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png","datePublished":"2016-04-25T08:17:36+00:00","dateModified":"2022-06-03T08:43:38+00:00","description":"How to Install ATutor on Ubuntu 14.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/03\/atutor-logo.png","width":198,"height":198},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-atutor-on-ubuntu-14-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install ATutor on Ubuntu 14.04"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18992"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=18992"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18992\/revisions"}],"predecessor-version":[{"id":41979,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18992\/revisions\/41979"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18993"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18992"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18992"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18992"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}