Basic unix concepts

From Flooxs
Revision as of 21:30, 9 July 2010 by Nrowsey (talk | contribs) (New page: ===Where am I?=== * how to open a [http://en.wikipedia.org/wiki/Terminal_emulator terminal] * bash vs cshell (and also tcl) are scripting languages * pwd * `pwd` * home (~) * ls * cd * cp ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Where am I?

  • how to open a terminal
  • bash vs cshell (and also tcl) are scripting languages
  • pwd
  • `pwd`
  • home (~)
  • ls
  • cd
  • cp
  • a directory is a folder
  • ..
  • .
  • root directory (/)
  • links in your ubuntu root directories for 64 bit stuff

Who am I?

  • root is a person (sudo)

Viewing and Editing Files

  • more, less, and cat
  • gedit comes with ubuntu
  • the ampersand (&) symbol

Finding Files or Text in Files

  • the find program
  • grep
  • the asterisk symbol (*)

Executing Programs

  • execute an executable with ./
  • execute programs by typing their names

Know Your Computer

  • 64 bit vs 32 bit
  • how do I know what architecture I have?

Stuff You'll be Doing A Lot

  • environment variables
  • comments in scripts (#) vs comments in c++ (//), a programing language
  • download, configure, and compile (make)