| dbpedia-owl:abstract
|
- The mtab (contraction of mounted file systems table) file is a system information file, commonly found on Unix-like systems. This file lists all currently mounted filesystems along with their initialization options. mtab has a lot in common with fstab, the main distinction being that the latter lists all available filesystems whereas the former lists only currently mounted ones. Therefore mtab is usually in a format similar to that of fstab. Most of the time it is possible to directly use lines from mtab in fstab. The file commonly resides in /etc/mtab. Sample mtab contents: /dev/sdb1 / ext3 rw,relatime,errors=remount-ro 0 0 proc /proc proc rw,noexec,nosuid,nodev 0 0 /sys /sys sysfs rw,noexec,nosuid,nodev 0 0 varrun /var/run tmpfs rw,noexec,nosuid,nodev,mode=0755 0 0 varlock /var/lock tmpfs rw,noexec,nosuid,nodev,mode=1777 0 0 udev /dev tmpfs rw,mode=0755 0 0 devshm /dev/shm tmpfs rw 0 0 devpts /dev/pts devpts rw,gid=5,mode=620 0 0 lrm /lib/modules/2.6.24-16-generic/volatile tmpfs rw 0 0 securityfs /sys/kernel/security securityfs rw 0 0 gvfs-fuse-daemon /home/alice/. gvfs fuse. gvfs-fuse-daemon rw,nosuid,nodev,user=alice 0 0
- Nei sistemi GNU/Linux è un file di configurazione che si trova all'interno della cartella /etc (secondo lo standard FHS) ed il cui proprietario è l'utente root. Il file contiene l'elenco dei file system montati sul sistema ed è quindi strettamente collegato all'uso del comando mount, infatti la struttura di questo file è proprio l'output del comando mount senza opzioni. Un esempio di mtab, che si può vedere con, è: /dev/hda6 / reiserfs rw,notail 0 0 proc /proc proc rw 0 0 /sys /sys sysfs rw 0 0 varrun /var/run tmpfs rw 0 0 varlock /var/lock tmpfs rw 0 0 procbususb /proc/bus/usb usbfs rw 0 0 udev /dev tmpfs rw 0 0 devpts /dev/pts devpts rw,gid=5,mode=620 0 0 devshm /dev/shm tmpfs rw 0 0 lrm /lib/modules/2.6.15-27-386/volatile tmpfs rw 0 0 /dev/hda1 /media/hda1 vfat rw,utf8,umask=007,gid=46 0 0 /dev/hda5 /media/hda5 vfat rw,utf8,umask=007,gid=46 0 0 dove sono indicati, per ciascuna riga, i dispositivi e i loro punti di montaggio con le loro relative opzioni. Questo file viene letto da alcuni programmi per ottenere le informazioni dei file system del sistema. Viene generato automaticamente ed è in sola lettura per un utente normale. Volendo si può sostituire con un link a che mantiene le stesse informazioni.
- Plik mtab (mounted file systems table, tablica zamontownych systemów plików) występuje w systemach z rodziny Unix, znajduje się zwykle w katalogu /etc i zawiera listę zamontowanych systemów plików. Plik ten ma format bardzo podobny do pliku fstab i jest automatycznie modyfikowany podczas użycia polecenia mount.
|