An open API service indexing awesome lists of open source software.

https://github.com/herndone/cst-334-operating-systems

A course where l learned about the use and design of modern operating systems, focusing on Linux.
https://github.com/herndone/cst-334-operating-systems

assembly awk c makefile operating-systems python shell

Last synced: about 2 months ago
JSON representation

A course where l learned about the use and design of modern operating systems, focusing on Linux.

Awesome Lists containing this project

README

          

# CST-334-Operating-Systems

# Textbook
Operating Systems: Three Easy Pieces [Link](http://pages.cs.wisc.edu/~remzi/OSTEP/)
The Little Book of Semaphores [Link](https://greenteapress.com/wp/semaphores/)

# Software
Download [Putty](https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html)

# Connect to MLC104
Instructions [Link](https://docs.google.com/document/d/17uspMTf83RB1kk-rL_tSFD04K2eqBdM6ih7NglJKCjQ/edit)

# Tidy Code
Make you code "[tidy](https://codebeautify.org/cpp-formatter-beautifier#)"

# Flashcards
Paging Calculations [Link](https://www.cram.com/flashcards/memorize/334-paging-calculations-9824603)
Bash [Link](https://www.cram.com/flashcards/memorize/bash-practice-6518378)
Awk [Link](https://www.cram.com/flashcards/memorize/awk-334-6529711)
Find [Link](https://www.cram.com/flashcards/memorize/334-find-10292234)

# Test your scripts
```console
foo@bar:~$ for test in test*.sh; do echo $test; ./$test; echo $?; done
```