Difference between revisions of "SPR720"

From CDOT Wiki
Jump to: navigation, search
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
= SPR720 -- Shell Programming =
 
= SPR720 -- Shell Programming =
 +
 +
== Professor ==
 +
 +
SPR720 is taught by [[User:Chris Tyler|Chris Tyler]] (Fall 2008).
 +
 +
==[[Fall 2008 SPR720 Weekly Schedule|Weekly Outline]]==
 +
 +
See the [[Fall 2008 SPR720 Weekly Schedule]] for specific dates and topics.
  
 
==[http://cs.senecac.on.ca/index.php?outline=SPR720 Course Outline]==
 
==[http://cs.senecac.on.ca/index.php?outline=SPR720 Course Outline]==
Line 5: Line 13:
 
=== Subject Description ===
 
=== Subject Description ===
  
Every UNIX System Administrator must be capable of creating, debugging, and running scripts. This course is an intensive look at Linux, from the command level, and at the Bourne Again SHell (BASH), RPM spec files, and introductory Python. Students will learn how to write, debug, run, and modify BASH scripts, spec files, and python scripts.
+
Unix/Linux System Administrators use scripts to automate repetitive tasks, schedule tasks for execution at preset times, automate software installation/removal processes, and build tools. This course looks shell programming and scripting in the Bourne Again SHell (BASH), RPM spec files, and introductory Python. Students will learn how to write, debug, run, and modify BASH scripts, spec files, and python scripts.
  
 
=== Specific Outcomes ===
 
=== Specific Outcomes ===
Line 11: Line 19:
 
Upon successful completion of this subject students should be able to:
 
Upon successful completion of this subject students should be able to:
  
* Create and use BASH scripts
+
* Create and use BASH scripts
* Create and use Makefiles
+
* Create and use Makefiles
* Create RPM Specfiles
+
* Create RPM Specfiles
* Build RPM packages
+
* Build RPM packages
* Use Mock to test RPM build dependencies
+
* Use Mock to verify RPM build dependencies
* Create and use simple Python scripts
+
* Create and use simple Python scripts
* Use regular expressions
+
* Use basic regular expressions
* Use common Linux commands
+
* Use common Linux commands
  
 
=== Topic Outline ===
 
=== Topic Outline ===
  
* Open Source and Linux history and overview
+
* Open Source and Linux history and overview - 5%
* Bash scripting basics and Linux commands - 20%
+
* Bash scripting basics and Linux commands - 20%
* Makefiles - 10%
+
* Makefiles - 10%
* Building packages (SPEC files, rpmbuild, Mock, repositories) - 40%
+
* Building packages (SPEC files, rpmbuild, Mock, repositories) - 35%
* Python scripting basics - 20%
+
* Python scripting basics - 20%
* Using Python libraries - 10%
+
* Using Python libraries - 10%
  
 
=== Modes Of Instruction ===
 
=== Modes Of Instruction ===
  
    2 hours interactive lecture per week, and 2 hours lab time per week  
+
2 hours interactive lecture per week, and 2 hours lab time per week  
  
 
=== Prescribed Text ===
 
=== Prescribed Text ===
  
    * Learning Python - 3rd Edition by Mark Lutz; ISBN 0-596-51398-4 published by O'Reilly
+
''Learning Python'' - 3rd Edition by Mark Lutz; ISBN 0-596-51398-4 published by O'Reilly
  
 
=== Reference Material ===
 
=== Reference Material ===
  
    * Learning the BASH Shell by Bill Rosenblatt and Cameron Newham Published by O'Reilly and Associates - 2nd Edition - 1998 ISBN 1-565-923-472
+
''Learning the BASH Shell'' by Bill Rosenblatt and Cameron Newham Published by O'Reilly and Associates - 2nd Edition - 1998 ISBN 1-565-923-472
 +
 
 +
=== Promotion Policy ===
  
=== Promotion Policy: ===
 
 
To obtain a credit in this subject, a student must:
 
To obtain a credit in this subject, a student must:
  
    * Achieve a grade of 55% or better on the final exam
+
* Achieve a grade of 55% or better on the final exam
    * Satisfactorily complete all assignments
+
* Satisfactorily complete all assignments
    * Achieve a weighted average of 55% or better for the tests and final exam
+
* Achieve a weighted average of 55% or better for the tests and final exam
    * Achieve a grade of 55% or better on the overall course
+
* Achieve a grade of 55% or better on the overall course
 
 
Modes of Evaluation:
 
Final Exam 40%
 
Midterm Test 30%
 
Term Work 30%
 
Academic Regulations
 
 
 
Students are responsible for being aware of college regulations in the Academic Policy Handbook.
 
 
 
Seneca Academic Policy - Cheating and Plagiarism
 
Cheating and/or plagiarism are offences which will not be tolerated by the College. Such offences occur when a student violates the procedures governing the administration of examinations, tests or other means of evaluating student achievement in a subject or program.
 
 
 
Approved By: Evan Weaver, Chair
 
  
College Policy
+
=== Modes of Evaluation ===
Accommodation for Students with Disabilities:
+
* Final Exam 40%
The College will provide reasonable accommodation to students with disabilities in order to promote academic success. If you require accommodation, contact the Counseling and Disabilities Services Office at ext. 2900 to initiate the process for documenting, assessing and implementing your individual accommodation needs.
+
* Midterm Test 30%
 +
* Term Work 30%
 +
** Weekly labs 10%
 +
** Project 0.1 release 5%
 +
** Project 0.2 release 5%
 +
** Project 0.3 release 10%
  
All students and employees have the right to study and work in an environment that is free from discrimination and/or harassment. Language or activities that defeat this objective violate the College Policy on Discrimination/Harassment and shall not be tolerated. Information and assistance are available from the Center for Equity and Human Rights at Ext. 2078 or via e-mail at Human.Rights@senecac.on.ca.
+
[[Category:LUX]][[Category:SPR720]]

Latest revision as of 23:23, 15 September 2008

SPR720 -- Shell Programming

Professor

SPR720 is taught by Chris Tyler (Fall 2008).

Weekly Outline

See the Fall 2008 SPR720 Weekly Schedule for specific dates and topics.

Course Outline

Subject Description

Unix/Linux System Administrators use scripts to automate repetitive tasks, schedule tasks for execution at preset times, automate software installation/removal processes, and build tools. This course looks shell programming and scripting in the Bourne Again SHell (BASH), RPM spec files, and introductory Python. Students will learn how to write, debug, run, and modify BASH scripts, spec files, and python scripts.

Specific Outcomes

Upon successful completion of this subject students should be able to:

  • Create and use BASH scripts
  • Create and use Makefiles
  • Create RPM Specfiles
  • Build RPM packages
  • Use Mock to verify RPM build dependencies
  • Create and use simple Python scripts
  • Use basic regular expressions
  • Use common Linux commands

Topic Outline

  • Open Source and Linux history and overview - 5%
  • Bash scripting basics and Linux commands - 20%
  • Makefiles - 10%
  • Building packages (SPEC files, rpmbuild, Mock, repositories) - 35%
  • Python scripting basics - 20%
  • Using Python libraries - 10%

Modes Of Instruction

2 hours interactive lecture per week, and 2 hours lab time per week

Prescribed Text

Learning Python - 3rd Edition by Mark Lutz; ISBN 0-596-51398-4 published by O'Reilly

Reference Material

Learning the BASH Shell by Bill Rosenblatt and Cameron Newham Published by O'Reilly and Associates - 2nd Edition - 1998 ISBN 1-565-923-472

Promotion Policy

To obtain a credit in this subject, a student must:

  • Achieve a grade of 55% or better on the final exam
  • Satisfactorily complete all assignments
  • Achieve a weighted average of 55% or better for the tests and final exam
  • Achieve a grade of 55% or better on the overall course

Modes of Evaluation

  • Final Exam 40%
  • Midterm Test 30%
  • Term Work 30%
    • Weekly labs 10%
    • Project 0.1 release 5%
    • Project 0.2 release 5%
    • Project 0.3 release 10%