I feel lost, how do I start learning UNIX?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers I feel lost, how do I start learning UNIX?
# 1  
Old 02-18-2012
I feel lost, how do I start learning UNIX?

I'm in college now and a part of a subject in this semester is learning UNIX, though the teacher failed to explain the basics, I feel, we got straight to the Unix Terminal and started putting in commands without much explanation what they were for. I quickly adapted to the basic ones, but in 5 days, I have a major test, not the finals, but I have to pass it to get to the finals. Basically, we'll be doing those basic commands, also pipes, which I'm admittedly not very good at, and I'm also unsure about the flags. My current 'opinion', so to speak is that flags define the way the command is executed. -f meaning it will be forced etc...

tl;dr - Where do I start learning UNIX? Need those commands explained in details.
# 2  
Old 02-18-2012
Did you try these ones:

Unix Tutorials/Programming Tutorials/Shell Scripting Tutorials

You may also try Bruce Barnett's tutorials.
Start with sh for example.

Try also the manual pages:

Code:
man <command>

I know they are not easy to read, but you really need them.

Last edited by radoulov; 02-18-2012 at 06:09 PM..
# 3  
Old 02-18-2012
Use any variant of UNIX or Linux everyday. There are tons of books on UNIX basics and shell scripting. I prefer books from O'Reilly.

If you encounter any issue or have trouble understanding certain things, this forum is the place where you will always get good help. Smilie
# 4  
Old 02-20-2012
Install a nix virtual machine. Full screen that puppy and use it as much as you can. If you are daring, make it your main OS. You'll learn as you go. There's no point in memorizing the commands. Just use them until you are used to them.
# 5  
Old 02-20-2012
Very good recommendation for the O'Reilly books on unix and Linux above. When you realise that the core subject matter can be condensed into a single paperback then it is much easier to comprehend.


Regarding command syntax. Unfortunately there are only 26 letters in the alphabet. Within unix syntax you may find that "-f" refers to "force" (say in the context of the "rm" command) or just the name of a file "-f filename" in the context of the "tar" command. This is where the "man" pages and a decent book are so useful.

You'll get used to it.

The one thing newcomers to unix find most difficult is the first principle of unix commands: "when the command has worked, say nothing".

This can be disturbing if you have been used to command languages which have to tell you that they have done a task.
To balance this many unix commands have the "-v" (verbose) switch to tell you that something happened. I rarely ever use it because I like the silence of unix.



If you have a command or a concept which you do not understand, please do post you question on this forum.


Code:
echo "I do not understand"|cut -d" " -f1-2,4

I do understand


Last edited by methyl; 02-20-2012 at 10:09 PM.. Reason: layout
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Learning python, lost with script

Hi there, im just having a hard time understanding why this code does not print anything that is suppose to print: score = raw_input ('what is your score? \n') try: if 1.0 == float(score) >= 0.9: print "A" elif 0.9 > float(score) >= 0.8: ... (1 Reply)
Discussion started by: la2015
1 Replies

2. What is on Your Mind?

Learning UNIX

Hi Guys , Hope everybody is fine . I am here to learn UNIX . Please provide any URLs/pdfs for learning . Thanks in advance. -Radha ---------- Post updated at 07:59 PM ---------- Previous update was at 07:48 PM ---------- Just to add , I am good at basics but unable to write scripts... (4 Replies)
Discussion started by: radha254
4 Replies

3. What is on Your Mind?

Studying but feel like not learning anything

I am trying to study this solaris OS. But each time I study, I feel like I didn't learn anything. Any suggestions? Thanks (4 Replies)
Discussion started by: cjashu
4 Replies

4. Programming

What Programming language should I start learning first?

I want to create a computer program that will translate from English to Spanish and vice versa. So someone could type in a word, phrase, or paragraph and translate from one language to another. What programming language would I use to write up the code and then implement this program? I want to... (8 Replies)
Discussion started by: Anna Hussie
8 Replies

5. UNIX for Dummies Questions & Answers

learning unix

Hi, i have started to learn unix (on and off for the past few months) and am wishing to move into that area in the administration field of it. I have been working in the help desk area (desktop support - windows based) for about 2.5 years and moved into a team leading role for 1 year in which i... (1 Reply)
Discussion started by: donnieDarko
1 Replies

6. UNIX for Dummies Questions & Answers

Learning Unix

Hi all, and thanks for viewing this thread. I have never used the terminal (UNIX) before, not until I read an introductory book about it: Unix for Mac OS X Tiger. Now I've become intrigued, and I want to uncover more of the mysteries of Unix. I've searched and searched, but there are many books... (5 Replies)
Discussion started by: Hin
5 Replies

7. UNIX for Dummies Questions & Answers

Learning Unix/Linux from the Start?

I was wondering if someone could tell me where I could learn everything about Unix/Linux and I was also wondering what the differance between Unix and Linux was :confused: Ive never used it, never seen it.. But Im interested in learning :D (3 Replies)
Discussion started by: Vallzi
3 Replies

8. UNIX for Dummies Questions & Answers

Learning UNIX

Hi guys! Am new to this forum so would like to say hello to all. Was wondering, what the best way to learn UNIX was? Theoretically or Practically? Cheers (2 Replies)
Discussion started by: bibah11
2 Replies

9. UNIX for Dummies Questions & Answers

where to obtain UNIX and learning on a UNIX variant?

Hi. I've just started to get into UNIX. Researched on the Net, found out that most of the UNIX variants are not offered online. 1. Any of you guys know where I could obtain them on the Net? or anywhere at all? 2. Does learning a UNIX variant enough to cover an understanding of other UNIX... (6 Replies)
Discussion started by: ninelives1980
6 Replies
Login or Register to Ask a Question