When opening Atom editor for the first time you might receive the following error: Error: EACCES, permission denied To solve this execute the following command in the terminal: sudo chown…
Atom EACCES permission denied SOLVED
Enable SSL/HTTPS for Tomcat
There are a number of guides online that explain how to setup LetsEncrypt for Tomcat, all of which I found quite involved. I setup LetsEncrypt with Tomcat a while ago,…
Renew multiple domains automatically with Letsencrypt certbot
The first step is to add the certbot repository: sudo add-apt-repository ppa:certbot/certbot Next, update your package list: sudo apt-get update Next, install the certbot client for Apache: sudo apt-get install…
Ubuntu 17.10 hangs at boot after Nvidia installation – SOLVED
Hold shift after the PC manufacturer logo is displayed. This will load the GRUB menu. Select Ubuntu and press "e" Add the following to the linux line: nouveau.modeset=0 Remove the…
Install Docker CE on Ubuntu 17.10 Artful Aardvark
Docker doesn't yet have a release file for Ubuntu 17.10 (it should be coming soon though). As such Docker CE can be installed from the Zesty package as follows: sudo…
Install .NET Core on Ubuntu
Microsoft has really come to the party over the last couple of years with support for Linux, which is wonderful to see! To install .NET core on Ubuntu you can…
Replace master branch with another branch Git
Should you need to replace your master branch entirely with another branch you can issue the following commands: git checkout YOUR_BRANCH_NAME git merge -s ours master git checkout master git…
Install Gradle Ubuntu 17.10
There are number of ways to install Gradle on Ubuntu, the simplest of which is to install it with the following command: sudo apt install gradle This will install Gradle,…
Install Gitlab with Let's Encrypt Ubuntu 16.04
Firstly, add the Gitlab repository: curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash Update your package list: sudo apt-get update Next, install Gitlab Community edition: sudo apt install gitlab-ce The order in…
WordPress – Fatal Error: Allowed Memory Size Exhausted – Solved
One really handy method for troubleshooting rogue WordPress themes or plugins is to view the error_log file in the root web directory (www or public_html). This will reveal what the…









