Summaries

Troubleshooting PC and Network Connections
Btn_view_blog
You can subscribe to this blog via RSS Icon_rss
56 Words : Posted 11.15.09




Port forwarding, or tunneling, is a way to forward otherwise insecure TCP traffic through SSH Secure Shell. You can secure for example POP3, SMTP and HTTP connections that would otherwise be insecure.
There are two kinds of port forwarding: local and remote forwarding. They are also called outgoing and incoming tunnels, respectively. Local port forwarding forwards [...]

44 Words : Posted 11.04.09




Does Linus Torvalds endorsing Windows 7. Check with gizmodo…..
Related Post

No Related Post

addthis_url = 'http%3A%2F%2Fraxso.net%2F2009%2F11%2Fdoes-linus-torvalds-endorsing-windows-7%2F';
addthis_title = 'Does+Linus+Torvalds+endorsing+Windows+7';
addthis_pub = '';

Like this blog? Why not buy me a cup of coffee?

58 Words : Posted 10.30.09




1. Keep your firewall turned on.
A firewall helps protect your computer from hackers who might try to delete information, crash your computer, or even steal your passwords or credit card numbers. Make sure your firewall is always turned on.
2. Keep your windows operating system up-to-date
High priority updates are critical to the security and reliability of [...]

104 Words : Posted 10.23.09




A small perl script to send out multiple files to your ftp site.
#!/usr/bin/perl
use Net::FTP;
my $host = “ftp.host.com”;
my $user = “ftp_user”;
my $pass = “ftp_pass”;
my @files = split /\n/, `ls your_files*.txt` ;
print “Connecting to your host…\n”;
$ftp = Net::FTP->new($host);
$ftp->login($user, $pass);
$ftp->binary;
foreach my $file (@files) {
print “Uploading $file\n”;
$ftp->put($file) or die “Could not upload”, $ftp->message;
}
$ftp->quit();
Happy scripting……
Related Post

July 30, 2009 — How [...]

55 Words : Posted 10.23.09




Hey, Holiday is already coming and are you already prepared to send post cards or even greeting cards especially to your friends overseas? If not then there is this cool site that I visited that has lots of design and concepts that you can choose from and you can even submit a design and also [...]

55 Words : Posted 10.16.09




Our servers is still using RHEL4 with the latest update and i decided to setup YUM (Yellow Dog Updater, Modified) on all our server and setup a dedicated server that will host as a server repository to all our updates and packages. So this are the steps that i use to setup yum in all [...]

55 Words : Posted 10.16.09




Whenever I search for an e-book about topics I needed to research or books to read I always use a  pdf search engine that is easy to use and lots of titles in their database. Book search queen has lots of titles from different topics from different languages.  I always got the books that I [...]