}

Linux Index Page 3

How To Known what DNS Servers Address you are using

To see you dns servers on linux execute: cat /etc/resolv.conf. For windows ipconfig /all. check this artcile for more details.

Linux Index Page 3

Learn how To Use grep Command.

Improve as a system administrator or as a software developer and learn how to use the very useful command grep. We cover some basic usage and some advance usage. Learn here how to use regular expression with grep and how to search recursively with grep.

Linux Index Page 3

Learn programmign: How to write If else statement in C Program

Knowning how to program in C is a good desicion. Learn here how the if else statement works. See some examples to learn with more details how C code works.

Linux Index Page 3

How to search for a package in Arch Linux

In this tutorial we are going to explain how to use pacman and pkgfile to search for packages in Arch Linux. With pacman use "pacman -Ss packageName" and with pkgfile use: "sudo pacman -S pkgfile". Check here for more details on how to use and install the tools.

Linux Index Page 3

How to set chmod for a directory and all of its subdirectories and files using the Ubuntu terminal?

You can use the parameter -R to apply permission recursively on all directories using chmod. If you only want to apply the execution permission to subdirectories use the option a+rX, check here for more details.

Linux Index Page 3

Linux: How to use ufw to block visitors by country?

Learn hot to block users by country or region on Linux using a list of IPs.

Linux Index Page 3

Ping localhost error in Linux

Learn different solutions to the error "ping: unknown host localhost". Usually some networking configuration was changed by mistake like in /etc/hosts.

Linux Index Page 3

Nessus localhost port

Nessus default port is 8834. https://localhost:8834

Linux Index Page 3

SOLVED: configure-error-cannot-find-lzma-header

./configure return the error configure: error: lzma header files not found. Also checking for lzma.h... no. To fix this issue install with apt the following package...

Linux Index Page 3

How to find all files containing specific text on Linux? (grep, ack and ag usage examples)

Have you ever struggle to use the command *find* in linux and it doesn't work as expected? Here we explain the proper way of finding text in multiple files. We also show you the fastest tool to search in git repositories.