Directory - /sys in linux

35

7

What is going on inside the /sys directory on a Linux system?

user72789

Posted 2014-08-08T12:28:47.573

Reputation: 363

Related: the same question (with detailed answers) on AskUbuntu.SE.

– Jeroen – 2017-07-16T12:25:09.617

Answers

45

From sysfs.txt:

sysfs is a ram-based filesystem [...]. It provides a means to export kernel data structures, their attributes, and the linkages between them to userspace.

In essence /sys allows you to get information about the system and its components (mostly attached and installed hardware) in a structured way.

See also the Wikipedia Article on sysfs. The following statement makes it pretty clear:

sysfs is a virtual file system provided by Linux. sysfs provides a set of virtual files by exporting information about various kernel subsystems, hardware devices and associated device drivers from the kernel's device model to user space. In addition to providing information about various devices and kernel subsystems, exported virtual files are also used for their configuring. sysfs is similar to the sysctl mechanism found in BSD systems, but implemented as a file system instead of a separate mechanism.

See also this excellent answer to What is the difference between procfs and sysfs? on Unix & Linux StackExchange.

countermode

Posted 2014-08-08T12:28:47.573

Reputation: 851

Should sys be included in a complete machine backup? – Danijel – 2016-03-03T13:30:32.457

3Certainly not. The content of /sys is rebuilt upon each boot. – countermode – 2016-08-16T23:44:05.610

11

Can't beat Wikipedia's simplicity:

Filesystem Hierarchy Standard > FHS compliance

Modern Linux distributions include a /sys directory as a virtual filesystem (sysfs, comparable to /proc, which is a procfs), which stores and allows modification of the devices connected to the system, whereas many traditional UNIX and Unix-like operating systems use /sys as a symbolic link to the kernel source tree.

I guess that, when this /sys directory got finally standardized, a description and its specification will be added to the Specifications Archive under the Filesystem Hierarchy Standard documentation.

jimm-cl

Posted 2014-08-08T12:28:47.573

Reputation: 1 469