Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

173 total results found

WP-CLI

Linux WordPress

==================================================================================== WP-CLI Installation guide ------------------------------------------------------------------------------------------------------------------------------------------------ D...

TOP

Linux Logging

------------------------------------------------------------------------------------------------------------------------------------------------ Logging interval To change ATOP's logging interval edit the below file: vim /usr/share/atop/atop.daily In here,...

Permissions Restores

Linux Backups & Restores

==================================================================================== Client chowned their server? did you chown a clients server? Never fear, facl is here. https://kb.ukfast.net/Linux_file_permissions ========================================...

FHS - Filesystem Hierarchy Standard

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== FHS as defined by RedHat: ------------------------------------------------------------------------------------------------------------------------------------------------ /...

Linux+

LVM (Logical Volume Manager)

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== LVM, or Logical Volume Manager, is a tool used on Linux systems to manage disk space in a more flexible way compared to traditional partitioning. It acts like a layer of abst...

STORAGE CONCEPTS

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== This page details the storage concepts for a linux system. ------------------------------------------------------------------------------------------------------------------...

Sandboxing & CHROOT

Linux Software & Service Management

==================================================================================== CHROOT (Changed Root) Jail CHROOT essentially means that a user or application has it's root changed, essentially locking it away from the rest of the server filesystem. ...

VI/VIM

Linux Bash

Line Numbers vim can display line numbers using the below command: :set number Skip to specific line number To skip to line 255: :255 ------------------------------------------------------------------------------------------------------------------------...

Find, Locate, and Grep

Linux Bash

==================================================================================== FIND Find is a linux search tool that can be used to find a variety of files based on the given criteria. ------------------------------------------------------------------...

Archiving and Compression

Linux Linux Filesystem (FHS), Storage Concept...

==================================================================================== gzip   ==================================================================================== tar (.tar) - Tape Archive Take multiple files and compress them into a single ...

PAM

Linux SSH & Authentication

Pluggable Authentication Modules (PAM) PAM is essentially an authentication system that allows for different modules to be added for support of different authentication methods, as an example; 2fa would be handled by PAM on a Linux system. /etc/security/ ==...

File Permissions & Ownership

Linux User Management & File Permissions

==================================================================================== Linux File Permissions Every file in Linux has permissions, these define which actions can be undertaken by the user,group, and other. As seen on the file below, permission...

Locale, Date & Time

Linux Linux System Variables

Locale In Linux, a locale is a set of environment variables that defines the language, country, and character encoding settings for a user's environment. Locales affect various aspects of a program's behavior, such as the way dates and times are displayed, th...

RAM

Linux Hardware and System Performance

View current RAM configuration lsmem View current RAM usage (human readable) free -h Older systems might not like -h, you can also run the command without it.

SSL Validation

Linux SSL

==================================================================================== SSL Validation   ----------------------------------------------------------------------------------------------------------------------------------------------- CNAME DNS V...

AutoSSL

Linux cPanel

------------------------------------------------------------------------------------------------------------------------------------------------ Quick fixes DCV Required Port: 53 UDP   AutoSSL detecting an internal IP? Check using cpdig command: /scripts/...

SSL Checks

Linux SSL

==================================================================================== Online Tools There are various online tools which can be used for SSL validation, here are a few:   SSL Checker   WhyNoPadlock   QuaysSSL lab   -------------------------...

LBv2 Overview

Linux LoadBalancers

ANS Portal > Servers > Load Balancers Services: haproxy   Warden  /var/log/warden/warden.log   Keepalived – manages which side of lb the IPs are located on                                    /var/log/syslog 

Repositories

Linux PHP

https://rpms.remirepo.net/wizard/ 

Programming Constructs

Bash, Scripting & Coding

------------------------------------------------------------------------------------------------------------------------------------------------ FOR LOOPS For loops are a fundamental programming construct used to execute a block of code repeatedly. They are ...