Skip to content

node2319/OperatingSystem-Algorithms

 
 

Repository files navigation

INDEX

  • w
  • who
  • uptime
  • pwd
  • ls
  • mkdir
  • cd
  • vi
  • head
  • rmdir
  • df
  • du
  • top
  • cp
  • who -Hu-
  • cal
  • tty
  • cal {year}
  • wc
  • bc
  • tail
  • man
  • passwd
  • xcalc
  • history
  • logout
  • exit
  • echo "..."
  • read <VAR_NAME>
  • read -p "" <VAR_NAME>
  • expr 10 + 20
  • $(( a+b ))
  • [ a == b ]
  • if [ ... ]; then ... else ... fi
  • for((i=0;i<=n;i++)) { ... }
  • case "ch" "a") ... ;; "b") ... ;; *) ... ;; esac
  • Child process using fork()
  • Orphan process
  • Zombie process
  1. First Come First Serve (FCFS)
  2. Shortest Job First (SJF)
  3. Round Robin (RR)
  4. Priority
  1. Producer Consumer Problem
  2. Readers writers problem
  3. Dining philosophers problem
  4. cigarette smokers problem
  1. First Fit
  2. Best Fit
  3. Worst Fit
  1. FIFO
  2. Optimal
  3. LRU
  1. FCFS
  2. SSTF
  3. SCAN
  4. C-SCAN
  5. LOOK
  6. C-LOOK

About

A GUIDE TO ALGORITHMS RELATED TO OPERATING SYSTEMS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 92.7%
  • Shell 7.3%