How to create or increase the swap file space for Debian or Red Hat
Background Here are bare minimal instructions on how to set up a swap file for Debian (e.g. Ubuntu Linux) and Red Hat based operating systems
Background Here are bare minimal instructions on how to set up a swap file for Debian (e.g. Ubuntu Linux) and Red Hat based operating systems
Background Disk space management is an essential part of server hosting. Fortunately Linux includes utilities to see which files haven’t been accessed in a while.
When you register a domain with Amazon’s Route 53 service, they will assign four randomly assigned name server so that you can start using the
There are no hard and fast rules on how to deal with a server that’s under attack, but this article should give you some tips
User Account Control might be a hindrance when installing XAMPP. To effectively disable it, edit this registry key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System Set EnableLUA to 0x00000000 Reference: https://stackoverflow.com/questions/45941819/uac-missing-write-permissions-error-while-installing-xampp-on-windows-server-2
TL;DR # cat /etc/apt/sources.list Change occurrences of deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free deb http://ftp.us.debian.org/debian wheezy main contrib non-free to deb http://archive.debian.org/debian/ wheezy main non-free
Background You’ve just deployed a new Ubuntu server, but Virtualmin Quotas are reported as not active. On some hosted Ubuntu servers you have to install
TL;DR sudo dpkg-reconfigure keyboard-configuration Reference: https://askubuntu.com/questions/434849/change-keyboard-layout-english-uk-on-command-line-to-english-us
This article explains how to install ZSH if you have an Ubuntu or Linux Mint system: sudo apt install zsh References: https://www.computersnyou.com/3145/setup-zsh-oh-zsh-linux-mint-quick-guide/ https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/
TL;DR mc -e /etc/nginx/nginx.conf location / { auth_basic “Restricted”; auth_basic_user_file /home/domain//public_html/.htpasswd; } htpasswd -c /home/domain/public_html/.htpasswd username Now restart NGINX: # service nginx restart The /