INT 1700 Prince Georges Community College Unit 4 Understanding Operating Systems Lab

Question Description

I’m working on a operating systems project and need support to help me study.

Prince George’s Community College

INT-1700: Understanding Operating Systems (Zero-cost course material)

Unit 4 Lab Assignment 4: Processor Management (30 points)

In this assignment, you will learn to collect information about and send commands to your OS’s processor manager. For each of the two questions, do the following:

  • Create a document (use Microsoft word or any equivalent tool such as LibreOffice) and name it appropriately to reflect the assignment type, number, and your name.
  • Answer the following questions (if any) in the document you created and justify your answers. To do this, you may need to perform some tasks on your computer, use a snipping or “print screen” tool to take screenshots, and paste the illustrations/pictures into the document. Showing screenshots only does not constitute answering a question. You need to provide both the answer to the question and the screenshots.
  • Save and upload the document to the learning management system (Blackboard). Upload the two documents at once.

Do not forget to show visual evidence (screenshots) of the main actions you took to answer the questions.

Question 1: Windows Virtual Memory (15 points)

  1. How many cores does your machine have?
  2. How many processors does your machine have?
  3. What is the frequency of each processor?
  4. How much physical memory does your system have?
  5. How much of this memory is free?
  6. How many context switches has the system performed since bootup?

Do not forget to show visual evidence of the main actions you took to answer the questions.

Question 2: Linux Virtual Memory (15 points)

You may perform the tasks in this question on any Linux system. You may find help in [1].

  1. Install and run the utility htop on your Linux OS using the CLI. Answer the following questions:
    1. How much swap memory do you have? how much of it is being used by your OS?
    2. For how long has your system been up?
    3. How do you kill a process in htop? Kill a random process and see if it will have an effect on your OS.
  2. Start the text editing program of your choice (e.g., gedit)
    1. What is the PID of the editing process? [hint: Use the ps utility (module 4-1) and “| grep”]
    2. Kill the text editing process. What command did you use?
    3. Issue the “pstree” command. What is the first process that your OS started? What happens if you kill that process?

Do not forget to show visual evidence of the main actions you took to answer the questions.

Reference: [1] https://linuxtogether.org/htop-command-explanation/