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…
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…
How to make a guest VirtualBox VM be on the same network as the host
When setting up a virtual machine using VirtualBox I find myself either just playing with some vm, such as Windows 10/11 or wanting to build a virtual machine I need to interact with such as a linux machine that I want to ssh into. Here are the two…
Installing VirtualBox on Debian
VirtualBox is an open source x86 emulator developed by innotek (bought by Sun, now Oracle) comparable to VMware. A proprietary extra package enhances the base experience, adding things like RDP access to the Guest. Installing VirtualBox Debian 10…