I am used to ask for 4 to 5 assignments in the Operating Systems course - PCS3746. Last year, it was four. My former student Tiago Shibata put the work of his team on: https://github.com/tiagoshibata/pcs3746-sistemas-operacionais He did not provide much documentation. I will do it. This links points to the source code necessary to build a docker image. A docker image is some kind of light virtual machine where you insert everything you need and nothing more. In a normal virtual machine, you would install ubuntu with X windows, Unity, and a lot of stuff that is not related to what we want: an ARM Linux kernel. Besides, a normal virtual machine, it emulates the hardware, I/O (clock, hard disk, etc.), BIOS, etc. while a docker image makes use of the Linux system calls. So, a docker image consumes much less resource than a real virtual machine. In order to run a docker image, you can: download the image and run it. download the image source, build and run it. As I will ask to m...
Comentários
Postar um comentário