1. building the nova moudle
make fs/nova/nova.ko
2. check if there is already a nova module in use
sudo lsmod | grep nova
3. Remove existing modules (unmounting)
(/mnt/nova) will be the mounting point of nova
sudo umount /mnt/nova
4. Remove existing modules (rmmod)
When removing a moudle, '.ko' is not needed
sudo rmmod nova
5. Load new module
sudo insmod fs/nova/nova.ko
6. mount nova
mounting nova fs
sudo mount -t NOVA -o init /dev/pmem0 /mnt/nova
7. Check if it's successfully mounted
df -T
'DeNOVA Test' 카테고리의 다른 글
6. Radix Tree추가해보기 2부 (실제 코딩) (0) | 2021.07.20 |
---|---|
5. Radix Tree추가해보기 1부 (Free list로 탐색) (0) | 2021.07.20 |
4. Module 수정 + test (0) | 2021.07.17 |
3. Test system call 추가 (0) | 2021.07.17 |
1. NOVA Vanilla Code Build (0) | 2021.07.16 |