@erkin What do these do?
@gudenau
Firmlinks are like symlinks in that they point to a file instead of an inode, but instead of just pointing to a path (valid or not), it points to the file itself, avoiding breakage.
Doors are a special file type (like named pipes or sockets) that allow for simple RPC, eschewing necessity for things like D-Bus for simple IPC operations. A Linux implementation of doors exists but it's abandoned since it was never merged.
@gudenau
Unlike a hard link, it's not a separate file pointing to the same inode, but a special file pointing at a file pointing at an inode instead.
@erkin So hard links not dependent on being on the same FS and more compatible?
@gudenau
Not sure how they handle cross-filesystem links but that's the gist. Unlike hardlinks, firmlinks die if the original file is deleted.
@erkin Would they work on FAT32 or Windows?
@erkin Also finding it hard to find documentation on that.
@gudenau
I don't think any OS other than HURD implements it.
@erkin I meant documentation on it in general, HURD docs would work.
@gudenau
This page explains how HURD's filesystem concept works:
https://www.debian.org/ports/hurd/hurd-doc-translator
It's got rather novel features.
@erkin So like a hard link?