Tag: Linux

31 January 2023

AWS – LightSail Bitnami SSL Certificate & Renewal

Install SSL Certificate sudo /opt/bitnami/bncert-tool Renew existing SSL Certificate SSL certificates from Let’s Encrypt typically expire within 90 days of their creation and require regular renewal. If the expiration date is approaching, it is recommended to manually renew the certificate before setting up an automated […]

17 October 2020

General Updates including PHP & mySQL (sub-point-versions)

This routine will allow you to update to the latest PHP version running 7.4 such as 7.4.6 to 7.4.11, and also includes mySQL 5.7.x to 5.7.x> Using SSH Using “php -v” allows you to check the current version For general updates use: sudo apt update […]

13 April 2021

[Linux Tips] Disable Suspend And Hibernation – OSTechNix

If you want to prevent your Linux machine from suspending and hibernating, disable the following targets at the systemd level:: $ sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target Sample output: Created symlink /etc/systemd/system/sleep.target → /dev/null. Created symlink /etc/systemd/system/suspend.target → /dev/null. Created symlink /etc/systemd/system/hibernate.target → /dev/null. […]

11 January 2021

How to Setup DHCP Server and Client on CentOS and Ubuntu

In this article, we will explain how to configure a DHCP server in CentOS and Ubuntu Linux distributions to assign IP address automatically to a client machine. Installing DHCP Server in CentOS and Ubuntu The DCHP server package is available in the official repositories of mainstream Linux distributions, installing is quite […]

8 December 2020

Visual Studio Code – Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform – Linux, macOS, and Windows. Source: Visual Studio Code – Code Editing. Redefined

5 November 2020

Linux Delete Folder Using rmdir and rm Command – nixCraft

A folder is nothing but a group of files. The folder is also known as a directory in Linux. Everything is a file in Linux. You can delete the folder or directory in Linux, if they are empty using the following rmdir command. Otherwise you […]

17 October 2020

How to install Imagick for PHP 7 in Ubuntu 16.04

Imagick is the most famous PHP extension to create and modify images using the ImageMagick library. It’s known on other platforms due to its difficult installation process, however in Ubuntu, installing it is pretty easy thanks to the php-imagick package that installs ImageMagick and Imagick […]