Install Docker on Debian Linux

To install Docker on you Debian distribution, first start off by updating the repositories. If the user name your using Is not in the sudoers file. Add your username to sudoers file. Or login as root by typing “su” Bullseye install docker jill@VM-00:~$ sudo apt-get update [sudo] password for jill: Continue Reading

Install nginx on Linux

To install nginx on your linux distribution make sure that port 80 is free. In your terminal type ” sudo apt-get install nginx” jill@VM-00:~$ sudo apt-get install nginx If port 80 is used by another process you will get the following message when ckecking the status of nginx sever. jill@VM-00:~$ Continue Reading

SSH client on debian linux

Debian ships with an ssh client, to check its existance, type “ssh” in the terminal jill@VM-00:~$ ssh usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface] [-b bind_address] [-c cipher_spec] [-D [bind_address:]port] [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11] [-i identity_file] [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] Continue Reading

Install Mariadb Server on linux

In order to install mariadb on your linux distribution, you need to open a terminal and type “sudo apt install mariadb-server”. jill@VM-00:~$ sudo apt install mariadb-server MariaDB server Linux After Mariadb server is installed, just type “sudo mysql” to login to the database server. The “sudo mysql” command gives you Continue Reading