Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is a question form the operating system course. This is a higher-level course. Please do read the question carefully and answer it. Objective Learn

This is a question form the operating system course. This is a higher-level course. Please do read the question carefully and answer it. image text in transcribed

Objective Learn the basic concepts of the UNIX process execution and creation. Learn the basics of the exec/fork system calls and introductory C programming in Linux. Description Write a program using the "execvp" command to execute commands given from the command line. For example: the "./a.out who" would run the "who" command. The program should support programs with arguments. Other examples could be: ./a.out cp bigfile.txt anotherfilename.txt ./a.out ls -1 /usr ./a.out md5sum bigfile You will overwrite your own executable with the new unix command that is the passed to your program. The program should be able to handle any number of command arguments up to 50. Using the getrusage() function which is located in sys/resource.h find out what your child is doing. Print out the time your child spent in user mode and kernel mode. Comment in your report on what you found. Report Individual work only (no collaboration is allowed). Submit via Canvas. Along with the program source code, please also submit a short report (

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions