free hosting   image hosting   hosting reseller   online album   e-shop   famous people 
Free Website Templates
Free Installer

Domain Name Company

Domain Name Company

 from
computing.fateback.com

Domain Name Company

Home » Directory »

Domain Name Company

Domain Name Company

:

... South America). The second number represents the BBS's network, while the final number is the BBS's "FidoNode'' number in that network. If your correspondent only gives you two numbers (for example, 322/190), it means the system is in zone 1. Now comes the tricky part. You have to reverse the numbers and add to them the letters f, n and z (which stand for "FidoNode,''"network,'' and "zone'). For example, the address above would become f190.n322.z1. Now add "fidonet.org'' at the end, to get f190.n322.z1.fidonet.org. Then add "FirstName.LastName@', to get .biz domain name FirstName.LastName@f190.n322.z1.fidonet.org Note the period between the first and last names. Also, some countries now have their own Fidonet "backbone" systems, which might affect addressing. For example, were the above address in Germany, you would end it with "fido.de" instead of "fidonet.org." Whew! The reverse process is totally different. First, the person has to have access to his or her BBS's "net mail" area and know .info domain the Fidonet address of his or her local Fidonet/UUCP gateway (often their system operator will know it). Your Fidonet correspondent should address a net-mail message to UUCP (not your name) in the "to:" field. In the node-number field, they should type in the node number of the Fidonet/UUCP gateway (if the gateway system is in the same regional network as their system, they need only type the last number, for example, 390 instead of 322/390). Then, the first line of the message has to be your Internet address, followed by a blank line. After that, the person can write the message and send it. Because of the way Fidonet moves mail, it could take a day or two for a message to be delivered in either direction. Also, because many Fidonet systems are run as hobbies, it is considered good form to ask the gateway sysop's permission if you intend to pass large amounts of mail back and forth. Messages of a commercial nature are strictly forbidden (even if it's something the other person asked for).

Also, consider it very likely that somebody other than the domain .org recipient will read your messages. GEnie To send mail to a GEnie user, add "@genie.com" to the end of the GEnie user name, for example: walt@genie.com. MCIMail To send mail to somebody with an MCIMail account, add "@mcimail.com to the end of their name or numerical address. For example: 555-1212@mcimail.com or jsmith@mcimail.com Note that if there is more than one MCIMail subscriber with that name, you will get a mail message back from MCI giving you their names and numerical addresses. You'll then have to domain name company figure out which one you want and re-send the message. From MCI, a user would type Your Name (EMS) at the domain name company "To:" prompt. At the EMS prompt, he or she would type internet followed by your Net address at the "Mbx:" prompt. Peacenet To send mail to a Peacenet user, use this form: username@igc.org Peacenet subscribers can use your regular address to send you mail. Prodigy UserID@prodigy.com. Note that Prodigy users must pay extra for Internet e-mail. 2.6 SEVEN UNIX COMMANDS YOU CAN'T LIVE WITHOUT: If you connect to the Net through a Unix system, eventually you'll have to come to terms with Unix. For better or worse, most Unix systems do NOT shield you from their inner workings -- if you want to copy a Usenet posting to a file, for example, you'll have to use some Unix commands if you ever want to do anything with that file. Like MS-DOS, Unix is an operating system - it tells the computer how to do things. Now while Unix may have a reputation as being even more complex than MS-DOS, in most cases, a few basic, and simple, commands should be all you'll ever need. If your own computer uses MS-DOS or PC-DOS, the basic concepts will seem very familiar -- but watch out for the cd command, which domain name company works differently enough from the similarly named DOS domain name company command that it will drive you crazy. Also, unlike MS-DOS, Unix is case sensitive -- if you type commands or directory names in the wrong case, you'll get an error message. If you're used to working on a Mac, you'll have to remember that Unix stores files in "directories" rather than "folders." Unix directories are organized like branches on a tree. At the bottom is the "root" directory, with sub-directories branching off that (and sub-directories in turn can have sub-directories). The Mac equivalent of a Unix sub-directory is a folder within another folder. cat Equivalent to the MS-DOS "type" command. To pause a file every screen, type cat file |more where "file" is the name of the file you want to see. Hitting control-C will stop the display. Alternately, you could type more file to achieve the same result. You can also use cat for writing or uploading text files to your name or home directory (similar to the MS-DOS "copy con" command). If you type cat>test you start a file called "test." You can either write something simple (no editing once you've finished a line and you have to hit return at the end of each line) or upload something into that .biz domain name file using your communications software's ASCII protocol). To close the file, hit control-D. cd The "change directory" command. To change from your present directory to another, type company domain names cd directory and hit enter. Unlike MS-DOS, which uses a \ to denote sub- directories (for example: \stuff\text), Unix uses a / (for example: /stuff/text). So to change from your present directory to the stuff/text sub-directory, you would type cd stuff/text and then hit enter. As in MS-DOS, you do not need the first backslash if the subdirectory comes off the directory you're already in. To move back up a directory tree, you would type cd .. followed by enter. Note the space between the cd and the two periods -- this is where MS-DOS users will really go nuts. cp Copies a file.

The syntax is cp file1 file2 which would copy file1 to file2 (or overwrite file2 with file1). ls This command, when followed by enter, tells you what's in the directory, similar to the DOS dir command, except in alphabetical order. ls | more will stop the listing every 24 lines -- handy if there are a lot of things in the directory. The basic ls command does not list "hidden" files, such as the .login file that controls how your system interacts with Unix. To see these files, type ls -a or ls -a | more ls -l will tell you the size of each file in bytes and tell you when each was created or modified. mv Similar to the MS-DOS rename command. mv file1 file2 will rename file1 as file2, The command can also be used to move files between directories. mv file1 News would move file1 to your News directory. rm Deletes a file. domain name company Type rm filename and hit enter (but beware: when you hit enter, it's gone for good). WILDCARDS: When searching for, copying or deleting files, you can use "wildcards" if you are not sure of the file's exact name. ls man* would find the following files: manual, manual.txt, man-o-man. Use a question mark when you're sure about all but one or two characters. For example, ls man? would find a file called mane, but not one called manual. 2.7 WHEN THINGS GO WRONG * You send a message but get back an ominous looking message from MAILER-DAEMON containing up to several dozen lines of computerese followed by your message. Somewhere in those lines you can often find a clue to what went wrong.

You might have made a mistake in spelling the e-mail address.

The site to which you're sending mail might have been down for maintenance or a problem. You may have used the wrong "translation" for mail to a non-Internet network. * You call up your host system's text editor to write a message or reply to one and can't seem to get out. If it's emacs, try control-X, control-C (in other words, hit your control key and your X company domain names key at the same time, followed by control and C). If worse comes to worse, you can hang up. * In elm, you accidentally hit the D key for a message you want to save. Type the number of the message, hit enter and then U, which will "un-delete" the message. This works only before you exit Elm; once you quit, the message is gone. ...

Related Searches

Domain Name Company
Company Domain Names
Uk.com Domain
Org Domain Name
.biz Domain Name
Domain .org
.info Domain
Order Domain Name
Public Domain
Brentwood Domain Hos...
Devon Domain Hosting
Domain Hosting Selangor
Domain Hosting Redmond
Cincinnati Domain Ho...
.com Domain Registra...
Oregon Domain Hosting
Registering Domain N...
Roseburg Domain Hosting
Register Domain Name...
Singapore Domain Hos...
Seach Domain Registr...
Global Domain Names
Domain Names Web Hos...
Georgia Domain Hosting
United States Domain...

Recommended Searches

Hosting Bellevue
Outsourcing News
Golden Flash Animation
Free Internet Webspace
Bahamas Web Service
Internet Design Scot...
Crawley Internet Ser...
Cheap Reliable Hosting
Brentwood Website Cr...
Bramley Web Marketing
Naucalpan Edo Mex. I...
Ellicott Web Marketing
Anti Virus Program
Register Domain Name...
Buying Product Category
Danville Web Designers
Marketing Strategy Oxon
Compare Web Hosting ...
Website Traffic Redw...
Flushing Promotion

© computing.fateback.com 2006

Home » Directory »

Domain Name Company

About us