Server Management

- Advertisement -
Ad image

Latest Server Management News

How to Delete All Lines in a File with Vi or Vim

Delete all lines in a file with Vi or Vim using :%d (shortest), :1,$d (explicit range), or ggdG (normal mode).…

how7o

How to Configure Nginx for a Subdirectory

Configure Nginx to serve a subdirectory like example.com/api/ alongside WordPress — alias, try_files, nested PHP-FPM location, and the SCRIPT_FILENAME pitfall.

how7o

How to Check Your Ubuntu Version

Check your Ubuntu version with lsb_release -a (clean), cat /etc/os-release (scriptable), cat /etc/issue, hostnamectl, or Settings → About on the…

how7o

How to Check the Linux OS Name and Version from the Command Line

Check the Linux OS name and version from the command line — cat /etc/os-release (universal), lsb_release -a, hostnamectl, and uname…

how7o

How to Change the Default SSH Port on Linux

Change the default SSH port on Linux (AlmaLinux, Ubuntu, Debian) without locking yourself out — firewall, SELinux semanage, sshd_config, systemctl…

how7o

How to Add and Delete Users on a Linux Server from the Terminal

Add and delete users on a Linux server (AlmaLinux, Ubuntu, Debian, RHEL) from the terminal — adduser, passwd, usermod -aG…

how7o

How to Enable CageFS for a User on CloudLinux / cPanel

Enable CageFS for a user on CloudLinux/cPanel — cagefsctl --enable from CLI, the CloudLinux Manager toggle in WHM, and how…

how7o

How to Access aaPanel with a Domain and Let’s Encrypt SSL

Set up aaPanel with a domain and Let's Encrypt SSL — fix Chrome's panel block, plus the symlink trick that…

how7o

How to Zip Multiple Files and Directories on Linux

Zip multiple files and directories on Linux with the zip command. Recursion (-r), exclusions (-x), compression level (-0..-9), and when…

how7o

How to List Network Devices on Linux

List network devices on Linux with ip a (every interface), ip -br link (compact), nmcli dev status (NetworkManager view), or…

how7o