Page 1 of 1

Filesystem implementatin for beginers

Posted: Fri Jun 19, 2015 10:37 am
by snasim2002
hI,
I am looking for a effective, simple to implement, and informative filesystem. Which one should i chose ??
I have
# paging enabled,
# wrote a keyboard driver,
# Kernel heap

Re: Filesystem implementatin for beginers

Posted: Fri Jun 19, 2015 10:46 am
by Muazzam
In my opinion, FAT16:

1. It's more simple than other file systems, ever simpler than FAT12.
2. Unlike FAT12, FAT16 is still in use (in USB flash drives, I mean).
3. Unlike ext/ext2 and custom file systems, it is supported virtually by every device.

I'm not saying that it's a perfect (or even a good) file system but you asked a file system for "beginners."

Re: Filesystem implementatin for beginers

Posted: Fri Jun 19, 2015 11:47 am
by Brendan
Hi,

My opinion is FAT and/or ISO9660. They're both relatively simple, and both remain useful after you implement a high performance/secure native file system later.


Cheers,

Brendan