WF AQ

Knowledge base

1 Settembre 2021
di admin@admin
Commenti disabilitati su Kill a Process from the Command Line

Kill a Process from the Command Line

Fonte: https://www.linux.com/training-tutorials/how-kill-process-command-line/   Learn how to kill errant processes in this tutorial from our archives. Picture this: You’ve launched an application (be it from your favorite desktop menu or from the command line) and you start using that launched app, only … Continua a leggere

6 Settembre 2018
di admin@admin
Commenti disabilitati su Linux grep command

Linux grep command

The grep command syntax The syntax is as follows: grep ‘word’ filename grep ‘word’ file1 file2 file3 grep ‘string1 string2’ filename cat otherfile | grep ‘something’ command | grep ‘something’ command option1 | grep ‘data’ grep –color ‘data’ fileName How … Continua a leggere

17 Dicembre 2016
di admin@admin
Commenti disabilitati su Installazione ed esecuzione di findbot.pl

Installazione ed esecuzione di findbot.pl

Installazione Spostarsi sulla directory /home del server: cd /home Creare una cartella “findbot” ed accedervi: mkdir findbot cd findbot Scaricare il file con wget e cambiarne i diritti: wget www.abuseat.org/findbot.pl chmod 700 findbot.pl Esecuzione nohup ./findbot.pl -c /directory_da_scansionare & Seguire … Continua a leggere

14 Novembre 2016
di admin@admin
Commenti disabilitati su Enable TLS/ssl proftpd Ubuntu/Fedora/Centos

Enable TLS/ssl proftpd Ubuntu/Fedora/Centos

Benefits of TLS/SSL TLS/SSL provides numerous benefits to clients and servers over other methods of authentication, including: – Strong authentication, message privacy, and integrity – Interoperability – Algorithm flexibility – Ease of deployment – Ease of use 1- Install Proftpd … Continua a leggere

10 Novembre 2016
di admin@admin
Commenti disabilitati su Utilizzo breve di wget per download sito web intero

Utilizzo breve di wget per download sito web intero

If you ever need to download an entire Web site, perhaps for off-line viewing, wget can do the job—for example: $ wget –recursive –no-clobber –page-requisites –html-extension –convert-links –restrict-file-names=windows –domains website.org –no-parent ./path_destinazione http://nomesito.tld The options are: –recursive: download the entire … Continua a leggere