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…
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…
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…
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…
Make sure that your target environment is activated. Then run the following commands to install the ipykernel pip install --user ipykernel Execute the following command to attach the environment to…
1- Check all the cron jobs running for logged in user crontab -l 2- Create a new cron job crontab -e 3- Using or viewing the cron job of the…