Categories
perl

How to Install CPAN module without testing Strawberry PERL?

Overview: How to Install a CPAN module without testing Have you ever tried installing CPAN module, however during the testing phase it freezes or fails. You can avoid this undesirable behaviour, provided you trust the source of the module and do not need a completed test for the PERL module. How to Install CPAN module […]

Categories
GNU/Linux

Check open ports on Linux Server

How to check the open ports on your linux server netstat -lnp

Categories
GNU/Linux

How to backup hard drive with a live cd

Linux: How to backup with a live cd So you’ve booted from your livecd and are in a unix styled terminal… cd /media #mount source of backup sudo mkdir src sudo mount /dev/sda1 src $mount sink of backup #sudo mkdir sink sudo mount /dev/sdb1 sink cp -Rdp src/* sink/.

Categories
Uncategorized

Rip Entire Websites with wget

Rip Entire Websites with wget

Categories
Uncategorized

.htaccess hide “.php” extension and custom 404 page

RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php RewriteEngine on ErrorDocument 404 /spel/template/404