To run the program, open the terminal in Ubuntu and run the following command
make run
This will compile all the necessary C files, generate the corresponding output files and run them on terminal. To cleanup all the temporary executables and files generated during program execution, run the following command.
make clean
It is recommended that you run the above command before executing the run command.
If make is not available in your system, run the below command on your terminal.
sudo apt-get install make
./main FIFO
./main LRU
./main LFU
./main MFU
=======
To run the program, open the terminal in Ubuntu and run the following command
make run
This will compile all the necessary C files, generate the corresponding output files and run them on terminal. To cleanup all the temporary executables and files generated during program execution, run the following command.
make clean
It is recommended that you run the above command before executing the run command.
If make is not available in your system, run the below command on your terminal.
sudo apt-get install make
./main FIFO
./main LRU
./main LFU
./main MFU
./main Random