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
Is not in the sudoers file. This incident will be reported
After you have finished your installation of Debian Linux operating system. The first thing to do is updating repositories. When trying to update the repositories using a user other than root, the result will be “username is not in the sudoers file.This incident will be reported” to fix that, a) Continue Reading
Find out your IP Address on linux
To find out your IP address on linux machine, in the terminal type ip add show, and you will get a result giving all the network addresses. From the list search for ens33. jill@VM-00:~$ ip add show 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 Continue Reading