I was asked to teach UNIX to a group of people in my company who probably don't know much about UNIX with total Windows background. Help me decide the Course Contents. I don't want to go in and teach them a set of commands. I want it to be more on the lines of the UNIX architecture, file system, pipes, how everything are files, process creation and handling, virtual memory management etc. What do you all think? Help me in covering these topics.
|
1
|
|||||||||||||||
|
closed as not programming related by Dana, Mehrdad Afshari, dmckee, Alan, dr. evil Apr 16 at 22:28 |
|
|
In addition to all of the other great suggestions, I would recommend discussing regular expressions in detail with examples in sed, awk, perl, vi, etc. REs are used in so many places, they really deserve their own place in the discussion. Add in a discussion of the common text processing utilities - cut, paste, grep, etc. |
||
|
|
|
|
You must read The UNIX Philosophy by Mike Gancarz. It might be worthwhile using as a text, but it will definitely give you a lot of the reasons why UNIX is good and how to leverage it's power best. |
||
|
|
|
How about to talk a little about its history? http://www.bell-labs.com/history/unix/ |
||
|
|
|
I would go through the Linux Administration Handbook and look at the chapters in the book and focus on those concepts that are important to a user as opposed to an administrator. |
||
|
|
|
|
|
||
|
|
|
|
Unix topics in order of importance:
An ideal way for Windows folks to learn how to function in a Unix environment is to have them use Cygwin on their Windows box. |
||||||
|
|
|
let them run some UNIX-like system e.g. from live-cd etc (ubuntu or knoppix maybe some other live UNIX systems as well) If they are power windows users, compare bash to powershell. Most of windows users also don't get the cncept of init scripts vs. Windows services so I would explain that as well. |
||
|
|
|
|
I'd start with fundamentals and compare each concept to its Windows counterpart. Kernel, driver, memory, process, daemon, file, user, a shell (vs. the command prompt), a filesystem etc. |
||
|
|
|
|
Underlying theory is always good, mention why UNIX is designed the way it is Eric Raymond's The Art of UNIX programming is good for that. If they're going to be developing for UNIX some of the standards wont be amiss, Filesysetm Hierarchy standard and POSIX for example. |
||
|
|
|
|
You should include information about the shell. Explain the standard old method of using the output of one command as the input for the next, using the pipe. Also show how output redirection is powerful, and how error redirection works (&2>). Have your "Students" install Cygwin on their workstations to give them the opportunity to run "Unix-Commands" right inside Windows. |
||
|
|
|
|
Sounds to me like you want to take a basic OS course, and make it UNIX specific. If you're designing the course for developer types, I'd think that would work well - they'd be familar with basic OS constructs and would appreciate knowing the UNIX specific flavors and then the commands that interact with each construct. If you're designing the course for regular people, though, they might get lost in the OS theory. Even with a simple OS example, the whole thing gets very complicated. My favorite UNIX book of all time is "A Student's Guide to UNIX". I'm sure there's many great competitor's out there. But what I liked was that it combined commands with basic theory and bundled each section with a bit of history on why given parts of the OS were designed a certain way and/or a bit of history on who the designers were. So much of UNIX is the commands, it was nice to have all those little blurbs and they were often nice memory joggers. |
||
|
|
|
Both Unix and Windows share most of their basic OS concepts: file descriptors, processes, virtual memory, etc... The only main difference you will need to address immediately is the different path tree structure: single root plus mount points vs drive letters. I think you have to distinguish between several widely different topics:
|
||
|
