The commands used in this lab are listed in the file linux_commands.md.
(Output screen should contain both positive and negative instances)
./OS
├── 1_linux_commands.md
|
├── 2_process_creation_and_termination.c
|
├── 3_thread_creation_and_termination.c
|
├── 4_IPC_techniques
│ ├── a_shared_memory_concept.c
│ └── b_message_passing_concept.c
|
├── 5_Process_scheduling_algorithms
│ ├── a_fcfs.c
│ ├── b_sjf.c
│ ├── c_srtf.c
│ ├── d_round_robin.c
│ ├── e_non_preemptive_priority.c
│ └── f_preemptive_priority.c
|
├── 6_Deadlock_avoidance_and_deadlock_detection_algorithms
│ ├── a_bankers_algorithm.c
│ └── b_deadlock_detection.c
|
├── 7_Page_replacement_algorithms
│ ├── a_fifo.c
│ ├── b_optimal.c
│ ├── c_lru.c
│ ├── d_second_chance.c
│ └── e_lfu.c
|
├── 8_File_allocation_techniques
│ ├── a_contiguous.c
│ ├── b_linked.c
│ ├── c_fat.c
│ └── d_inode.c
|
├── 9_Free_space_management_techniques
│ ├── a_bitmap.c
│ └── b_linked_list.c
|
├── 10_Disk_scheduling_algorithms
│ ├── a_fcfs.c
│ └── b_sstf.c
│ └── c_scan.c
│ └── d_cscan.c
│ └── e_look.c
│ └── f_clook.c
.