If firewall status is activated in your Ubuntu 22.04 system, you just type sudo ufw disable command in the terminal and hit enter, and UFW firewall will be disabled in your system. In this tutorial, we will show you how
Category: Ubuntu
UFW Status Inactive Ubuntu 22.04
If you are working in Apache 2 Ubuntu system and if you run ufw status command on terminal you see “ufw status inactive”. And, You can enable or activate the issue using the sudo ufw enable command on a terminal
How to Disable SSH ROOT Login on Ubuntu 22.04
To disable root login ssh access on Ubuntu 22.04, you need to add “PermitRootLogin no” to the SSH configuration file, you can do this by opening the ssh configuration file using the command sudo nano /etc/ssh/sshd_config on terminal window. In
How to Install Git on Ubuntu 22.04
To install and configure Git Bash on your Ubuntu 22.04 system, you can use two simple ways, first from the official repository and second using the source code. Here are two approaches to installing git on Ubuntu 22.04 system: Approach
How to Enable and Disable SSH Root Login Ubuntu 22.04
If you want to enable and disable root ssh login access on Ubuntu 22.04, you need to open the ssh configuration file using nano /etc/ssh/sshd_config command, set #PermitRootLogin yes to enable ssh login and set #PermitRootLogin no to disable ssh
Read More How to Enable and Disable SSH Root Login Ubuntu 22.04
How to Install Django Web Framework on Ubuntu 22.04
If python is already installed in your system and you want to install Django web framework on ubuntu 22.04, then you can install it by running the sudo apt install python3-django on terminal. How to Install Django Web Framework on
Read More How to Install Django Web Framework on Ubuntu 22.04
Cannot Find Module npm-cli.js Ubuntu
In this tutorial, you will learn how to set the correct npm path in your system environment variables or uninstall it and reinstall it to fix that cannot find the module npm cli.js ubuntu. Cannot Find Module npm-cli.js Linux Ubuntu
How to Install Node js 21 on Ubuntu 22.04
In this tutorial, you will learn how to install node.js version 21.x Ubuntu 22.04 system using Nodesource, and official repository. How to Install Node js 21 on Ubuntu 22.04 Here are 2 simple approaches for that: Approach 1: Installing Node.js
How to Install Node js 18.x|16.x on Ubuntu 22.04
In this tutorial, you will learn how to install node js 18.x or 16.x on ubuntu 22.04 using curl -sL https://deb.nodesource.com/setup_16.x, 18.x -o nodesource_setup.sh and sudo apt install nodejs command. How to Install Node.js 18.x|16.x on Ubuntu 22.04? Here are
Install Python 3.11 on Ubuntu 22.04
If you want to install the latest Python 3.11 version on Ubuntu 22.04, you have to use the sudo apt install python3.11 command; Through this tutorial, we will show you the process of installing python 3.11 on linux ubuntu 22.04