Can you telnet or connect to a ftp program?
I'm wanting to set up a ftp account with cuteftp or something so I can be on any computer either at school or at a buddies house and be able to log into it and download stuff from it without any additional software. Like can I log into it using dos commands or telnet and download from it?
telnet or ftp to a remote machine
Yeah sure.
If the remote machine accepts telnet connections from outside the firewall and has a telnet service running, just (I assume you are a Windows user) open up a command prompt and
C:\ telnet machine.example.org
You most likely will need a username and password to get in, unless they did not set it up for username/passwords.
To ftp to a remote machine, once again using the command prompt.
C:\ ftp ftp.hostname.org
//sometimes ftp ww.hostname.org
once again you will probably need a username and password, but if the machine accepts anonynous users use.
username: anonymous
password: [email protected]
Hope that helps a little.