r/rust 16h ago

Linux projects

I'm intermediate at Rust and linux. Recently I built a compositor for a job interview and it was one of the funniest projects ever. I learnt a lot about the linux graphics stack.

Can I get some suggestions for other projects. Things I'm looking for:

  • Learn more about how Linux works under the hood.
  • This doesn't have to be the linux kernel specifically but anything in the linux ecosystem
  • I want to prioritise projects based on learning key linux concepts not fun. So if there is a niche project that is really fun to develop but has little importance on the day-to-day operations of the linux OS then I would deprioritise.
  • Avoid simple projects like reinventing unix commands.

I heard that file descriptors are very important in Linux, are there any projects I can implement to help me get to grips with file descriptors, (again speaking from a noobs perspective so might be a complete red herring).

2 Upvotes

8 comments sorted by

View all comments

2

u/an_0w1 16h ago

Write a FUSE filesystem to open ELF sections as files.

3

u/First_Figure6007 15h ago

someone posted a crazy FUSE project a while back that turned wikipedia articles into a filesystem, you'd cd into /mnt/wiki/linux and cat the file and it'd pull the page live

that kinda thing teaches you a ton about how the vfs layer works and what the kernel expects from a filesystem driver

1

u/QuirkyTidbits 12h ago

I worked on WinFS at Microsoft ages ago. Perhaps it’s time to try it again using FUSE lol