Wipe out your hard disk from a command line:
dd if=/dev/zero of=/dev/hda
The Power to Serve!
Wipe out your hard disk from a command line:
dd if=/dev/zero of=/dev/hda
ok>show-nets
ok>select network iface
ok>cd ctrl+y
ok>.properties
Comandos para configurar resolucion DNS
etc#> cp nsswitch.dns nsswitch.conf
etc#> cat resolv.conf
nameserver 192.168.1.3
etc #>
* Ficheros tar.gz
Comprimir: tar -czfv archivo.tar.gz ficheros
Descomprimir: tar -xzvf archivo.tar.gz
Ver contenido: tar -tzf archivo.tar.gz
![]()
#!/usr/bin/perl -w
IRC::register(”SteveCs figlet script”, “0.1″, “”, “”);
IRC::print “Loading SteveCs figlet script 0.1\n”;
IRC::add_command_handler(”fig”, “stevec_figlet”);
sub stevec_figlet
{
@a=`figlet @_`;
for $b (@a){
chop $b;
IRC::command(” $b”); #don’t just print $b if it starts
} #with a / or \ then the server
return 1; #might get angry and screw us up
}
#guardar este script como .pl en .xchat2
y luego /fig palabra ![]()