gustavo-aguiar01 / SO2021

SO 2020/2021 - IST LEIC-A

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SO2021

Context

3 project exercises assigned from SO (Operating Systems) in the first semester of 2020/2021 (IST).

Goal

Develop a user-level File System that keeps its contents in primary memory - TecnicoFS.

Usage

c -> create file or directory
l -> lookup i-node
d -> delete i-node
m -> move i-node

Examples

c /a f -> creates file a on root
c /b d -> creates directory b on root
c /c f -> creates file c on root
l /a -> searches for i-node associated to given path
d /a -> deletes i-node a
m /c /b/c -> moves i-node /c from root to directory /b

About

SO 2020/2021 - IST LEIC-A


Languages

Language:C 95.5%Language:Makefile 3.5%Language:Shell 0.7%Language:C++ 0.3%