Productivity, life and computer tips. Tricks for a better day.
Let’s be honest – Apple has gained a lot in market share last year, so there are plenty of former Windows users who just switched to the Mac. This tutorial is for those new switchers who never had the courage to open up Terminal, OSX’s most underrated power-tool. This tutorial is not for the Linux/Unix gurus, but for the casual daily worked who wants to improve his computer operating skills and
First, the basics: you probably remember Windows Command Prompt, though chances are you never had to use it. Well now, Terminal is like Command Prompt on steroids. This is because Apple’s OSX is built around Unix, the most powerful geek-oriented Operating System ever, but with a nice-looking user-friendly gift-wrap. The result? OSX is an operating system that kicks Window’s buttocks any time of the day. Chances are you’ll never have to use Terminal, but I strongly suggest it – as any real Power User will tell you, mastering the command prompt commands is the ultimate swiss-knife for the computer geek.
In today’s lesson you’ll learn to start the Terminal, move around, look around, open up things from within and remove things.
Let’s look at some basic useful operations you can do with the Terminal:
cd /
followed by
ls
What you see is the list of all the main folders on your disk. It should look similar to :
my_computer_name:/ username$ ls
Applications System cores mach_kernel usr
Desktop DB User Guides And Information
dev mtasc.yaml var
Desktop DF Users etc opt
Developer Volumes home private
Library automount mach sbin
Network bin mach.sym tmp
The cd command (short for Change Directory) allows you to move to a different folder than the current one. Just type the name of the target folder after it, and press Enter at the end. The ls (short for LiSt) command lists the contents of the current folder.
One extremely useful Power User trick: after you type the name of a command, try pressing the Tab key. The system will try to auto-complete your command and will show you what you can do with it. For instance, typing cd (notice the blank space ater it) and pressing Tab will show you the names of the folders you could go to from the current one. Same goes for most other commands, actually. In time you’ll get accustomed to only starting typing your command, pressing Tab and letting the system complete the rest. For now, though, just take notice that it exists.
The folder named / is called “root” and represents the root of your operating system. Every other folder is just one of its branches. Any user registered on the computer has its own personal folder, much like in Windows. Your personal folder is named after you and it’s a subfolder of the Users one. Go ahead, try it – cd Users followed by ls. Once you see the name of your username type cd username. A shortcut for this is cd ~ (on a MacBook with US keyboard, the little snake (tilda) is to be found near the ‘z’ key). Under your personal folder, you’ll find your usual subfolders, the ones you use everyday – Documents, Desktop, Movies, Pictures, etc. Go ahead, try to navigate by ‘cd’ there. Oh, and at any time, if you just want to go back to the parent folder, just type
cd ..
. Here .. is a command line word meaning “parent”. the root folder is it’s own parent.
So far so good, though I probably didn’t impress you much. Let’s try this then:
my_computer_name:/ Alex$ cd ~ my_computer_name:~ Alex$ cd /Applications/ my_computer_name:/Applications Alex$ open Utilities/
What happened here is that I opened up the Utilities folder from within Applications by using just my magic Terminal skills. I could have opened any text document, picture, mp3, movie, application, etc. The open command rocks.
You know the Trash, the place where things go after you delete them. The place you need to empty whenever you want to really erase something. Well, as any power user knows, if you really want to erase something you’ll have to do it yourself:
Step 1. go to the file that you want to remove
Step 2. make sure you got the rights to remove it (should be one of your files, from within your directories) and that you’re not really breaking anything(careful here, you don’t want to erase any of the system files, do you?)
Step 3. call the command rm followed by the name of the file to be erased. rm is short for ReMove.
Warning! If the name of the file you want to erase contains a space, then you’ll have to mention it by typing a ‘\’ character before the space. This looks complicated and it really is; using the ‘tab’ shortcut mentioned above might help you a bit in the process.
Did you succeed? Great! You didn’t? Don’t worry – using the Terminal is for pros, you’ll have time to catch on as we go into the next lessons.
Until then, let’s look back – in today’s lesson you’ve learned what Terminal is, how to start it, how to move around the system, look around, open up any things from within and, carefully, how to remove things. Next lesson will include tips on how to quickly move and erase entire folders, how to quickly learn your IP address(without going to the System Preferences app and more). Stay tuned and let us know what you think, by dropping a word in the comments!
Oh, and, if you’re impatient, there are lots of other resources around that will help you in the meantime. For instance, check this O’Reilly series of tutorials, this command list with descriptions over here or Apple’s description of the Terminal.app.
20 Responses to Beginner’s guide to Apple Terminal, part 1
Beginner’s guide to Apple Terminal, part 2 | tips | Hack the Day
June 12th, 2007 at 4:37 pm
[...] Beginner’s guide to Apple Terminal, part 1 [...]
spencer
July 5th, 2007 at 3:04 pm
Hey, great tutorial. I’ve been searching for a while “how to use Terminal” after switching over to Mac, and I stumbled upon your site. I’ll check out some of the other Terminal links you posted. Great intro for noobs like myself. I don’t know what I really intend on doing with Terminal but nice to show off like I know what Unix really is!
Alex
July 5th, 2007 at 6:02 pm
Glad you found this tutorial useful, Spencer. There are plenty of uses for the Mac Terminal out there, and although it might look scary for the noob, Terminal is worth the effort to use.
3 tips you probably didn't know on your Mac Book - Hack the Day
July 13th, 2007 at 10:06 am
[...] do this you need the Terminal (if you’re a beginner, see our terminal tutorials first). You’ll first need to change directories to the USB drive location – all drives [...]
morc
July 16th, 2007 at 10:29 am
Hello
I couldnt get past the “cd/1s thing, i tried all different combos cd / 1s ,, cd/1s,, cd / ls,, it just says No such file or directory?? am i stupid ? brad new imac 20 inch 2 months old.
thanks
Alex
July 16th, 2007 at 3:11 pm
Morc, sorry if I wasn’t too clear. After each command shown in the tutorials, you have to press the Enter/Return key. So cd / and ls are not on the same line, they are two different commands to be executed at different moments.
morc
August 21st, 2007 at 3:33 pm
Ah please forgive me for sounding so frustrated in that email, (quite embarrassing ) . Months have passed since then. i was just slime, a single celled life form drowning in a sea of code and text.
I have now evolved limbs and and will soon walk upright on two legs.
thnx for this page
morc
August 21st, 2007 at 3:36 pm
P.S. my god only one month , where dose the time go ??
Nick
January 23rd, 2008 at 9:17 pm
Nice beginners guide. It’s good to show people that the command line isn’t scary, but is a really useful tool. Because I run both Linux and OS X, The command line works itself into everything. You might want to explain more than file navigating though!
Alex
January 23rd, 2008 at 11:30 pm
you might be interested in the other articles of the series..
HMF
December 28th, 2008 at 6:54 pm
Nice beginner’s guide, I’m still trying to learn the commands instead of just copy/pasting everything! Really helped!
P.S. Computers are like air conditioners, they stop working when you open windows!
Craig
January 7th, 2009 at 5:20 am
Great tutorial for Terminal. I am a switcheroo from XP, though have some Unix syntax knowledge from my time at uni. I would love to gain the same confidence using Terminal that I had using MS Dos command line interface.
Thanks again for your help.
The Command Line Interface « High School Computer Tech
January 16th, 2009 at 7:26 am
[...] Beginner’s guide to Apple Terminal ( part one, part two ) This guide is also useful to those who want to learn about Bash, regardless of the [...]
23 Essential Tools For Web Development on a Mac
March 29th, 2009 at 8:53 am
[...] Terminal is a great place to start when working with the command line. There’s a great guide to learning Terminal, but essentially Terminal is a bare-bones tool that allows you to do just about… anything. [...]
Bradley
March 31st, 2009 at 12:20 am
type this stuff in your command prompt or terminal for the shitty apple computers works both ways though. telnet towel.blinkenlights.nl
23 Essential Tools For Web Development on a Mac | Geeky Bitch
May 15th, 2009 at 2:28 am
[...] Terminal is a great place to start when working with the command line. There’s a great guide to learning Terminal, but essentially Terminal is a bare-bones tool that allows you to do just about… anything. [...]
Hop
June 18th, 2009 at 12:37 am
I wanted to experiment with php pages locally rather than ftp a new file to my host every time I make a change. Attempted to follow instructions on page 25 of Learning PHP & MySQL by Michelle Davis & Jon Phillips.
After I typed “sudo vi /etc/httpd/httpd.conf”, Terminal asked for my password. I would try to type it but my keystrokes wouldn’t show on the screen. I’d get an alert noise each time I tried to type a letter.
For some reason it took my password after several attempts.
Now I’m trying to type “%s/#LoadModule php/LoadModule php/
But each keystroke is ignored except for an alert noise.
Instead of text I get a series of “Whump” sounds. It sounds like I’m playing the bongos.
Is there a way to get Terminal to take the text I’m typing?
GrindSmart » Blog Archive » 18 Essential Apps For Web Development on a Mac
February 24th, 2010 at 12:21 pm
[...] built-in Terminal is a great place to start when working with the command line. There’s a great guide to learning Terminal, but essentially Terminal is a bare-bones tool that allows you to do just about… anything. I’d [...]
Presto
April 27th, 2010 at 6:41 am
This is very helpful! Thank you for breaking it down to the bare bones.
Software technology tips and tricks time saving: Windows XP Command Line Hacking Tricks Guide
June 21st, 2010 at 1:17 pm
[...] “Gadgets” and “P.. Hacking the Dlink 502T router Mac OS X running on Apple TV Beginner’s guide to Apple Terminal, part 1 | Hack the Day Google Zone » Hack: Get username and password with google How-to: VMware player modification [...]