Basic Linux Command Line for Builders

From FreekiWiki
Jump to navigation Jump to search

Learn real basic stuff so when we say "ok, now go to dev" you know what to type.

  • log in, close the web browser.
  • open an xterminal session, ctrl-alt-t (if it's too small, ctrl + should make the font bigger)
  • make them window larger, using either F10 or the bigger-box click-button thing.


listing, linking, removing, tab-completion:

  • type "ls" and hit enter. (list files)
  • ls -l (and hit enter... the long listing, point out time/date info)
  • ls -a (shows all files, note that most begin with)
  • ls -al (shows all files the long way)
  • ls (to show the Desktop diretory again)
  • ls D and hit tab, and hit enter. (note how it finished out the rest of the word Desktop)
  • ln -s D<tab> yourname
  • ls -l (note that yourname points to Desktop)

(note: periodically remind them about tab completion if they're not picking it up- it's a real arthritis-saver)

  • ls D<tab>
  • ls yourname (note that it's actually the same files as in Desktop)
  • rm yourname
  • ls (note that it removed yourname)


more tab-completion, text editors, modules file:

now we're going to use a text editor, which is basically like a very simple word processor- no bold, underlining or italics- just plain old text. (in this example i use nano, since that's what most build instructors end up teaching. mcedit is another text editor that would work)

  • nano /etc/m hit tab twice. (note all the possible completions)
  • nano /etc/mo<tab><tab> (note the shorter list)
  • nano /etc/mod<tab><tab> (note the shorter list)
  • nano /etc/modul<tab> (note how it completed it out to modules)
  • nano /etc/modules

this file basically contains certain hardware modules(or in windows terms "drivers") to load when the computer starts up. in build, we're usually looking for 3c509, eexpress or ne. use the arrow keys to move the cursor to the bottom of the screen, and type in whatever you want to say....

  • ctrl-o to save it. in the "File Name to write: " section near the bottom, it should say "/etc/modules". hit enter to save it. (note, they get a permission denied message, because they are not root)
  • try again: ctrl-o, and change "/etc/modules" to "modules"
  • ctrl-x to exit.
  • ls (note the presence of the modules file)
  • nano modules (note that your changes were saved there)
  • nano /etc/mod<tab><tab>

system configuration via tab-completion:

  • ls<tab><tab>
  • lsm<tab> (lsmod: list modules. usually we use this to look for 3c509, eexpress or ne modules)
  • ls<tab><tab>
  • lspc<tab> (lspci: lists pci devices. look for VGA for video card information)

final check-in:

do they seem to understand the concept of typical command syntax: command <option flags> arguments

"what to do, how to do it, and what to do it to"

any other questions?


==networking== (*optional* if people seem *energetic* and want to learn more- not to be done if people seem bored or tired):

  • ping cragg (we're pinging the server named cragg, which is the server used in the build area)
  • ctrl-c to quit
  • ifconfig (note eth0 has an "inet address")
  • ifconfig -a (note eth2 does not have an "inet address" which means it's not active, but available to be configured)

other extras- dmesg, grep, piping:

  • dmesg
  • dmesg | less
  • dmesg | grep eth