Managing firewall on CentOs 8

Check the Status of the Firewall sudo firewall-cmd --state List All Firewall Rules sudo firewall-cmd --list-all Create a New Zone firewall-cmd --permanent --new-zone=allowed Add the Specific IP Address ( allowed…

0 Comments

Managing firewall on Ubuntu

Following are the useful commands to manage the firewall on ubuntu using UFW sudo ufw enable sudo ufw disable Default Policies sudo ufw default deny incoming sudo ufw default allow…

0 Comments

How to Install Miniconda on Ubuntu

Update the Packages sudo apt update Upgrade the Packages sudo apt upgrade Download Miniconda curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -o Miniconda3-latest-Linux-x86_64.sh Make the script executable chmod +x Miniconda3-latest-Linux-x86_64.sh Install Miniconda bash Miniconda3-latest-Linux-x86_64.sh Add…

0 Comments