Dominio .it non viene rinnovato
Maintainer da disdetta al Registro
Registro mette stato NO-PROVIDER-MNT x 60 giorni
Registro mette stato REDEMPTION-NO-PROVIDER x 30 giorni (no modifica intestatario)
Registro mette stato PENDING-DELETE dopo 5 giorni è libero
Posted in
Tips at April 3rd, 2009.
No Comments.
paste your result of ‘lspci -n’
here
Posted in
Tips at September 3rd, 2008.
Comments Off.
Comoda lista blocchi IP (net/subnet) italiani… utile per tamponare in caso di DDOS!
>>DOWNLOAD<<
iptables_blocchi_ip_italiani
62.10.1.0/24
62.10.2.0/23
62.10.4.0/22
62.10.8.0/21
62.10.16.0/20
62.10.32.0/19
62.10.64.0/18
62.10.128.0/17
62.11.0.0/16
62.13.160.0/19
62.48.32.0/19
62.77.32.0/19
62.85.160.0/19
62.85.192.0/18
62.86.0.0/16
62.93.130.0/23
62.94.0.0/20
[....]
Posted in
Tips at May 9th, 2008.
No Comments.
Capita di rimanere tagliati fuori dalle politiche di restrizione
della tecnologia SUEXEC o simili a causa di una configurazione
poco attenta
Metodo brutale per cambiare uid di texilee/texilee da 100 a 7771
/usr/sbin/groupmod -g 7771 texilee
/usr/sbin/usermod -u 7771 texilee
find / -uid 100 -exec chown texilee{} \;
find / -gid 100 -exec chgrp texilee{} \;
Se avete “hardcodato” il vostro uid numerico in qualche binario
o script dovrete provvedere modificandoli a manina!
Posted in
Linux,
Tips at April 15th, 2008.
No Comments.
Creare un file di cron ad esempio /etc/cron.d/shutdown contenente
MAILTO=texilee@texilee.it
40 8 12 5 * root /sbin/shutdown -h now
Spegnimento della macchina alle 8:40 del 12 maggio del corrente anno.
Posted in
Tips at May 14th, 2007.
No Comments.
Lanciare da root il comando
# rndc flush
per eliminare le entries cachate da bind9
Posted in
Tips at May 7th, 2007.
No Comments.
Su Debian editare per la parte server
vi /etc/init.d/sysklogd
# Options for start/restart the daemons
# For remote UDP logging use SYSLOGD="-r"
#
SYSLOGD="-r"
e configurare il firewall per accettare traffico sulla porta 514 udp.
Per la parte client editare
vi /etc/syslog.conf
e aggiungere in fondo al file di configurazione per il logging remoto
*.info;authpriv.none;cron.none @192.168.0.1
il logging delle attività di autenticazione e quello delle operazioni cron viene scartato. Dopo il carattere @ inserire l’ip del server dei logs.
Posted in
Tips at November 27th, 2006.
No Comments.
Comando per eliminare ogni traccia della cache e ricrearla. Tips da weekly cron
/etc/init.d/squid stop
rm -rf /var/spool/squid/0?
:> /var/spool/squid/swap.state
/etc/init.d/squid start
Posted in
Tips at November 7th, 2006.
No Comments.
This tool will find other domain names hosted on your IP address. Just enter a domain (www.example.com) or an IP address (127.0.0.1) to get a list of domain names that share the same IP address.
Permette di conoscere i “vicini” sul vostro piano di hosting
http://www.seologs.com/ip-domains.html
Posted in
Tips at October 9th, 2006.
No Comments.
Cancella tutti i file .log più vecchi di 15 giorni nella directory /var/path e dir figlie
find /var/path/ -name *.log -type f -mtime +15 -exec rm {} \\;
Posted in
Tips at October 4th, 2006.
No Comments.