Operating system tips and tricks that not listed elseware
There were 3 articles found in this category:
Linux (3)
- How to use UFW
NOTE: UFW is not the firewall. UFW just configures your iptables Some basic commands are: Turn on the firewall ufw enable Turn off the firewall ufw disable To add deny rules: Blocking a port ufw deny port <port number> Blocking an ip address ufw deny from <ip address> Blocking a spec ...
- How to add a repository to apt
Log into your server with a root account. Edit the file located at /etc/apt/sources.list Add the repository to the bottom of the file, save then exit the file. Run the following command to have the new repositories to apt apt-get update Verify that your new repository is listed at the end of th ...
- How to remove a package with apt
Log into your server with a root account. Run the following command to remove a package. apt-get remove <PackageName> Your package will now be removed. The dependencies that were installed with that package will not be removed. In order to remove the dependency packages that are no longer ...
Sub Categories
Linux (3)



