ubuntuusers.de

fstab / mount

Autor:
mrkramps
Datum:
27. März 2012 11:53
Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FSTAB
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda1 during installation
UUID=1900d252-a4fa-4ff4-a0d6-cc982b30c2b3 /               ext4    discard,noatime,data=ordered,errors=remount-ro 0       1
# /home was on /dev/sda2 during installation
UUID=69430f53-56d2-4928-bd15-a72c5dc2c866 /home           ext4    discard,noatime,data=ordered        0       2
# /tmp evacuated to RAM
tmpfs	/tmp	tmpfs	nosuid	0	0

MOUNT
/dev/sda1 on / type ext4 (rw,noatime,discard,data=ordered,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /tmp type tmpfs (rw,nosuid)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
/dev/sda2 on /home type ext4 (rw,noatime,discard,data=ordered)