In 12.1, openSUSE uses tmpfs for some usage cases. I think, also for /tmp et. al. As I’ve updated from 11.4-Tumbleweed, I don’t know whether my mount still conform to current standard.
/etc/fstab reads like this
/dev/disk/by-id/ata-WDC_WDxxxx-part2 swap swap defaults 0 0
/dev/disk/by-id/ata-WDC_WDxxxx-part1 / ext4 defaults 1 1
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
Output of “mount” shows:
devtmpfs on /dev type devtmpfs (rw,relatime,size=1985936k,nr_inodes=496484,mode=755)
tmpfs on /dev/shm type tmpfs (rw,relatime)
tmpfs on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
devpts on /dev/pts type devpts (rw,relatime,gid=5,mode=620,ptmxmode=000)
/dev/sda1 on / type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
securityfs on /sys/kernel/security type securityfs (rw,relatime)
tmpfs on /var/lock type tmpfs (rw,nosuid,nodev,relatime,mode=755)
tmpfs on /var/run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
tmpfs on /media type tmpfs (rw,nosuid,nodev,relatime,mode=755)
I switched back from systemd to sysvinit (among other reasons), because swap was not mounted. However, I am still missing swap in above list. /tmp is still mounted conventionally. Therefore: What would an /etc/fstab as created by a virgin 12.1 installation look like? What do I have to change to bring my mounts up to standard?