matthias krull
matthias krull

Reputation: 4429

howto create a filesystem like /proc?

I would like to create a pseudo filesystem like /proc to access an applications configuration.

How could i achieve this or where could i find some introductory documentation about it?

Upvotes: 5

Views: 1571

Answers (2)

Daniel Băluţă
Daniel Băluţă

Reputation: 1275

Perhaps you want to have a look at sysfs

Upvotes: 4

Marcelo Cantos
Marcelo Cantos

Reputation: 185852

The easiest way is to use FUSE. This is particularly easy with high-level language bindings, such as fuse-python.

Upvotes: 18

Related Questions