initial commit

This commit is contained in:
root
2023-06-12 09:14:09 +02:00
commit b4912f303e
2545 changed files with 209350 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,43 @@
MTAB(5) FILE FORMATS MTAB(5)
NAME
mtab - mounted file system table
SYNOPSIS
/etc/mtab
#include <mntent.h>
DESCRIPTION
mtab resides in the /etc directory, and contains a table of
filesystems currently mounted by the mount(8) command.
umount removes entries from this file.
The file contains a line of information for each mounted
filesystem, structurally identical to the contents of
/etc/fstab, described in fstab(5). There are a number of
lines of the form:
_f_s_n_a_m_e _d_i_r _t_y_p_e _o_p_t_s _f_r_e_q _p_a_s_s_n_o
for example:
/dev/xy0a / 4.2 rw,noquota 1 2
samba:/usr/packages /nfs/packages nfs ro 0 0
For now, this file contains only information about mounted
NFS file systems.
The file is accessed by programs using getmntent(3), and by
the system administrator using a text editor.
FILES
/etc/mtab
SEE ALSO
getmntent(3), fstab(5), mount(8)