Operating Systems – Week 4 Assignment The Process Scheduler You will need to locate and utilize performance analysis tools and process scheduling tools to complete this assignment. Your mission this week is to analyze and manipulate the process scheduler in action on your LINUX system. You will use Linux commands to alter scheduling policies and process priorities while analyzing the effects and resulting performance. Useful commands for this assignment: · top · chrt · nice · renice · ps · vmstat And as always “man” is your best friend Requirements Part 1 Answer the Following: What is an interrupt? What specifically on your system causes interrupts? What is a context switch? Start your Linux Partition from a fresh boot and open the Terminal. Do not open any other applications at this time. Determine values for each of the following. Provide screenshots of command output. For a 30 second time interval: About how many interrupts per second? About how many context switches per second? At a high level, what events are likely causing the current values for interrupts and context switches? IMPORTANT: Before performing the tasks below, you will want to open at least one terminal window and maybe 2. You should be watching the performance statistics WHILE these applications are opening! This will yield the most valuable results in this lesson. i.e. Use vmstat to watch CPU statistics in real time as the system becomes busy. Continue watching values once the applications finish opening. Open as many applications as you can while still maintaining a Linux system that functions (the slower the system the better). Now repeat the steps from above and record new values. Summarize finding for interrupts and context switches for each: · Before opening applications · While opening applications · Shortly After all applications have opened Part 2 Find three processes in different “states.” List the process name, its current state, and what this means. Find 3 processes using different priorities / nice values. List the process name, the priority and nice values, and what these values mean? What is the scheduling policy of the three processes using the most CPU currently? (It is OK if they are all the same). Change the priority of any process using the chrt command. Record before and after values. Note any noticeable effects on performance if any. Change the nice value of any process. Record before and after values. Note any noticeable effects on performance if any. You will want to use multiple terminal windows for this part. i.e. Use one to watch “top” values and another to enter commands. Switch to the “root” user as you will require elevated privelges: Type command: sudo su - root then enter the password for the account you setup for yourself. Use the following command to simulate system load: dd if=/dev/zero of=/dev/null & run the command at least twice so that there are 2 “dd” processes running. Y ...