i wanna know if this is all legal,

is telnet freeshell.org free and legal?

it asked me to set up for a netbsd account and stuff

Dani AI

Generated

Quick orientation for : newcomers often mix MS-DOS with Unix shell use — they’re different environments and expect different commands. , and made helpful points; below is a compact, practical plan to get started safely on any shared shell account and avoid common pitfalls.

Start by learning these basic commands and try them in a disposable directory (do not run anything you don’t understand):

pwd                  # show current directory
ls -la               # list files (including hidden) with details
cd /some/path        # change directory
mkdir practice && cd practice
echo "hello" > file.txt
cat file.txt         # show file contents
cp file.txt copy.txt
mv copy.txt ../
rm file.txt
man ls               # read the manual page for a command

Practice tasks: create a directory tree, make and edit a small text file, move/copy it, inspect file permissions and sizes. Learn man, whatis and apropos to discover what commands do. Troubleshooting basics: confirm your current path with pwd, list files to see permissions with ls -la, and check disk usage with du -h / df -h. Never paste long commands from strangers, and avoid running commands that request elevated privileges unless you know exactly what they do.

Learn by doing: use the system manuals and small offline exercises or a local virtual machine before using a real account. Good study items are a concise tutorial on the shell, a beginner’s bash guide, and an explain‑a‑command tool to decode unfamiliar pipelines. Also read the host’s documentation and acceptable‑use notes so you know any limits or rules for your account.

Recommended Answers

All 7 Replies

Hello,

I would think that it is legal. Why? Because it is inviting you to sign up into their system. A number of places and technical networks that prohibit unauthorized access will tell you upon contacting the machine that unauthorized use is prohibited.

It looks to me that the freeshell (in effect, a command line interface... we unix people call the command line environment a shell) is simply a training / explore environment for people to use. I do not know if it is locked down or anything... other than that it is there.

Just my $.02 opinion.

Christian

Yeah, freeshell.org is completely legal.

You can pay for a shell account there, if you'd like. People tend to think that freeshell is for "MAD H4><0rz" or something, when all they offer is a shell account. In fact, if they caught you doing anything illegal with your account, you'd be out their digital door.

thank you, cause im not a cracker, and im not in to that illegal stuff. i signed up for a free temp account, but first i must learn MS-DOS, to know the commands. Thank you guys

[Moderator's note: Please do not use profanity in our forums; we explicitly prohibit doing so.]

sorry, my bad. i didnt realize it.. lol wont let it happen again i promise

thank you, cause im not a cracker, and im not in to that illegal stuff. i signed up for a free temp account, but first i must learn MS-DOS, to know the commands. Thank you guys

[Moderator's note: Please do not use profanity in our forums; we explicitly prohibit doing so.]

You mean Unix commands :p MS-DOS is microsoft...

ya i know but the kid theat had me sign up said i needed to know some dos too. did you wall read a book on unix b4 you started??

ya i know but the kid theat had me sign up said i needed to know some dos too. did you wall read a book on unix b4 you started??

You don't need to know DOS at all to use freeshell. It's just a shell account on a UNIX box (NetBSD, if I'm not mistaken). If you pay for a freeshell account, you get an email address there, and access to it through ssh and telnet. I think you even get some webspace or something...

If you'd like to pick up some books, there are some good ones: UNIX in a Nutshell, UNIX for Dummies, Learning the UNIX Operating system, you name it. There are plenty of free resources out there if you do some searching. UNIX/Linux/BSD isn't really hard, just different. If you have the proper guides, it will be a snap to learn.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.