Procedure To Add a Swap File Under Linux
You need to use the dd command to create swap file. The mkswap command is used to set up a Linux swap area on a device or in a file. Step 1 – Login as the Root User Open a terminal window (select Applications > Accessories >…
How to Rsync with non-standard SSH Port
Run the following command from the terminal to sync files/folders using Rsync with non-standard ssh port. Syntax: # rsync -arvz -e 'ssh -p <port-number>' --progress --delete user@remote-server:/path/to/remote/folder /path/to/local/folder For the…
Copy SSH Key from Windows 10/11 to Linux Host
RequirementsIn recent versions of Windows 10/11 you can enable both an SSH client and server. This post assumes that you have the SSH client enabled and you have generated SSH keys. You can generate SSH keys with the ssh-keygen.exe command. Make It…
How to Ignore SSL Certificate Errors in Wget
Wget, a command-line utility for retrieving files using HTTP, HTTPS, and FTP protocols, performs SSL certificate validation by default when connecting to HTTPS websites. This validation process involves checking the authenticity and validity of the…
What can I do with a 1GB VPS
With the ever growing and ever changing demands on hardware we keep seeing vps’s and servers getting bigger and bigger, but this also comes with a price tag. With this, I am going to focus on the lowend market and targetting small VPS accounts and…
Install OpenSSH on your Desktop
To install and configure OpenSSH on a KDE Plasma system, you’ll typically use your distribution’s package manager. Once installed, you can then configure the server and client settings. Installation: Configuration: Key Management:…
Vnstat
Source: https://www.geeksforgeeks.org/vnstat-command-in-linux-with-examples/ vnstat is a command-line tool in Linux that is generally used by system administrators in order to monitor network parameters such as bandwidth consumption or maybe some…
Install Samba in Debian
Here’s a concise guide to install and configure Samba on Debian to share files with Windows, Linux, or macOS clients over a network. This assumes you’re using a recent Debian version (e.g., Debian 12 Bookworm) and have root or sudo…
How to Zip and Unzip a directory and its files in Linux
You say you are a newbie. Maybe you got Windows-experiences. If you do not have the packages installed yet, you need to first (or by a graphical pkg-manager). Then, for an entry it would be the easiest way to use zip/unzip: where -r means…
VirtualBox for Linux Hosts – Downloads
Note: The package architecture has to match the Linux kernel architecture, that is, if you are running a 64-bit kernel, install the appropriate AMD64 package (it does not matter if you have an Intel or an AMD CPU). Mixed installations (e.g.…
Webuzo Control Panel
Do you find yourself as a developer or a hobbyist between web hosts? Are you looking for a little more power or more control but your just not ready to do a full command line only setup, you would like a control panel to help you out. Then look no…
How to zip a folder in Ubuntu/Debian
Many times we find ourselves wanting to zip up a folder or folders to send somewhere/upload to our website, or something. Well how do we do this? Especially since I don’t have a GUI since I am on a vps/server/home lab? zip and unzip are your…