0% found this document useful (0 votes)
13 views3 pages

List of Experiment

This document contains a list of 20 experiments related to operating systems concepts for a course. The experiments include writing shell scripts to perform tasks like calculating sums and averages, finding the greatest number, checking if a number is prime, sorting files, and implementing scheduling algorithms like FCFS and SJF. The list also includes experiments to split a file, implement the producer-consumer problem using semaphores, and use the bankers algorithm for deadlock avoidance.

Uploaded by

the
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views3 pages

List of Experiment

This document contains a list of 20 experiments related to operating systems concepts for a course. The experiments include writing shell scripts to perform tasks like calculating sums and averages, finding the greatest number, checking if a number is prime, sorting files, and implementing scheduling algorithms like FCFS and SJF. The list also includes experiments to split a file, implement the producer-consumer problem using semaphores, and use the bankers algorithm for deadlock avoidance.

Uploaded by

the
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

LIST OF EXPERIMENT

AI2230: OPERATING SYSTEMS


LABORATORY

Course Coordinator
Dr. Deepika Shekhawat
S.NO Experiment Name
1. Basic Linux/Unix Command
touch command cd command df command wc command

cat command bc command dfspace command sort command

cp command expr command du command grep command

rm command factor command ulimit command tput rmso command

mv command logname command cal command tput smso command

ls command puname command banner command passwd command

chmod command who command sh command echo command

mk dir command date command ./a.out command man command

The find command


a. Find all the files whose name is tecmint.txt in a current working directory.
b. Find all the files under /home directory with name tecmint.txt.
c. Find all directories whose name is Tecmint in / directory.
d. Find all php files whose name is tecmint.php in a current working directory.
e. Find all php files in a directory.
f. Find all the files whose permissions are 777.
g. Find all the files without permission 777.
2. Write a shell script to print your name
3. Write a shell script to calculate the sum of three no and also find out the average of them
4. Write a shell script to find out greatest no between the three no
5. Write a shell script to check whether given no is prime or not
6. Write a shell script to find out greatest between the four no
7. Write a shell script to check whether given no is Armstrong or not
8. Write a shell script to calculate reverse no of given no
9. Write a shell script to sum of digit of given no
10. Write a shell script to print file names one per line in a directory showing serial number of the file
11. Write a shell script to sort a list of file either in alphabetic order or largest file first, according to user
response.
12. Write a shell script count the lines, words and characters in it's input
13. Write a shell script to change date format. Show the time taken in execution of this script
14. Write a shell script to find out pattern in a file and count its occurrence
15. Write a shell script count occurrence of each word in a file

16. write a shell script to split a file into a char file and a number file.
17. Write a Program to implement Scheduling algorithm: FCFS
18. Write a Program to implement Scheduling algorithm: SJF
19. Write a Program to implement Producer-Consumer problem using semaphores
20. Write a Program to implement Bankers algorithm for the purpose of deadlock avoidance
21. Write a Program to implement page replacement algorithm: FIFO

You might also like