Internet Security Basics 101

Written by Niall Roche


The explosive growth ofrepparttar Internet has meant that thousands of people are today experiencingrepparttar 118686 joys of being online forrepparttar 118687 first time. With growth there always comes pain. Be it your growing pains as a child orrepparttar 118688 growth and development of this part of our culture calledrepparttar 118689 Internet.

Firstly we need to quickly explain whatrepparttar 118690 Internet is and where it came from. The Internet isrepparttar 118691 offspring of a military project called Arpanet. Arpanet was designed to provide reliable communication during global nuclear war. A vast network of interconnected computers was set up all overrepparttar 118692 world to allowrepparttar 118693 various branches of US and NATO forces to communicate with each other.

Nuclear war never came (thankfully) andrepparttar 118694 world was left with a massive network of computers all connected together with nothing to do. Colleges and universities started to use these computers for sharing research internationally. From there it grew and spread outside colleges to local homes and businesses. The World Wide Web was born and its father was a guy called Tim Berners Lee.

When you're connected torepparttar 118695 Internet you're sharing a vast network with hundreds of millions of other users. This shared network provides resources that 15 years ago were never thought possible. Unfortunately when something is shared its open to abuse. Onrepparttar 118696 Internet this abuse comes from hackers and virus creators. Their sole intent is to cause chaos and/or harm to your computer system and millions of other computer systems all overrepparttar 118697 world.

How do you combat this? You need an Internet security system. This might sound complicated but your Internet security system will be quite straigtforward being comprised of just 2 - 3 Internet security products. We'll look at each of these products in more detail now:

AntiVirus Software The first and most critical element of your Internet security system is antivirus software. If you don't have up-to-date antivirus software on your PC you're asking for trouble. 300 new viruses appear each month and if you're not constantly protecting your system against this threat your computer will become infected with at least one virus -it's only a matter of time.

Antivirus software scans your PC for signatures of a virus. A virus signature isrepparttar 118698 unique part of that virus. It can be a a file name, howrepparttar 118699 virus behaves orrepparttar 118700 size ofrepparttar 118701 virus file itself. Good antivirus software will find viruses that haven't yet infected your PC and eliminaterepparttar 118702 ones that have.

Save $100 in 5 Minutes Backing Up Your Web Site?

Written by Robert Plank


Here's an easy way to backup your web site's files and database (worth thousands of dollars, no doubt) that costs $0 to learn and perform. It only takes seven easy steps.

You don't need to know a lot about how to use Unix or how to use databases like mySQL. The only real tool you need is a telnet client. Also, you need to know a few commands which I'll show you now. (You could even writerepparttar commands I'm about to give you on a cheatsheet.)

STEP 1: CONNECT & GET IN THE RIGHT FOLDER

The web host you're trying to back up needs to allow shell access (most do these days).

If you have a Windows computer, download a program called "PuTTY" which you can use to login in your web host's shell. Search for "putty ssh" on Google or get it here: http:/ he.earth.li/~sgtatham/putty/latest/x86/putty.exe

Open up PuTTY and atrepparttar 118685 top type in your hostname (your web site address withoutrepparttar 118686 http or www, just "yourname.com"). Your web host either uses SSH or telnet, first try logging in using SSH and if it won't connect try it using Telnet. Clickrepparttar 118687 "Open" button atrepparttar 118688 bottom to connect.

When it connects you will be asked for your account's username, and after you enter that, it will ask for your password. If these both take, you'll see a command prompt of sorts. What you have to do is browse torepparttar 118689 document root, depending on your host it's usually a folder like "public_html" or "wwwroot".

Ifrepparttar 118690 wwwroot or public_html folder has more folders inside of it, inrepparttar 118691 form of yourdomain.com, don't browse into them yet, just stay inrepparttar 118692 folder you're in.

Browsing inrepparttar 118693 Unix command prompt is just like DOS, to view a folder type "dir" or "ls", and to go into a certain folder type "cd foldername". If you messed up you can type "cd .." to move up one level.

STEP 2: BACK-UP THE DATABASE

The first step if you're backing up a site is to dump your mySQL database. To do this obviously you needrepparttar 118694 mySQL username and password you want to back up. If your mySQL username is "myuser" andrepparttar 118695 mySQL password is "mypassword", you'd type:

mysqldump -umyuser -pmypassword -A > dump.sql

mysqldump isrepparttar 118696 program we run to dumprepparttar 118697 database into a file, then we type "-u" followed byrepparttar 118698 username (no spaces) and "-p" followed byrepparttar 118699 password (also no spaces). The uppercase "-A" tellsrepparttar 118700 program we want to dump every database this user has access to. It MUST be an uppercase A.

The ">" afterwards says we want to put this program's output into a file (otherwise it would show up onrepparttar 118701 screen) and "dump.sql" isrepparttar 118702 name ofrepparttar 118703 file we're going to dump to.

This may take a while depending onrepparttar 118704 size of your database. Be patient. Once you have a command prompt again, it's done.

If you don't have root on your server, it may show databases you don't have access to. What you'll have to do here is "force" mysqldump to keep doingrepparttar 118705 backups even if it gets error messages. The flag for "force" is "-f".

mysqldump -umyuser -pmypassword -Af > dump.sql

STEP 3: BACK-UP YOUR FILES

Now you can put everything into one big file, which you can easily move over torepparttar 118706 new host in one go, instead of one at a time. Unix doesn't let you create Zip files, but you can create a TAR (Tape Archive) which just rolls a bunch of files together without any sort of compression.

To create your TAR archive, type:

tar -cvf dump.tar *

The "-c" tellsrepparttar 118707 program to create a new TAR archive,repparttar 118708 "v" following right after says to be verbose, in other words, give usrepparttar 118709 name of every file that's being added to repparttar 118710 archive. "f: means we're saving this to a file, as opposed to showing it onrepparttar 118711 screen (you'd just see junk).

Cont'd on page 2 ==>
 
ImproveHomeLife.com © 2005
Terms of Use