Ubuntu Pastebin

Paste from smoser at Tue, 4 Oct 2016 13:03:33 +0000

Download as text
  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
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
+ cat /proc/filesystems
nodev sysfs
nodev rootfs
nodev ramfs
nodev bdev
nodev proc
nodev cgroup
nodev cpuset
nodev tmpfs
nodev devtmpfs
nodev debugfs
nodev securityfs
nodev sockfs
nodev pipefs
nodev anon_inodefs
nodev devpts
   ext3
   ext2
   ext4
nodev hugetlbfs
   vfat
nodev ecryptfs
   fuseblk
nodev fuse
nodev fusectl
nodev pstore
nodev mqueue
nodev binfmt_misc
+ lsmod
Module                  Size  Used by
nbd                    17676  0
binfmt_misc            17468  1
dm_crypt               23177  0
kvm_intel             143187  0
kvm                   455843  1 kvm_intel
serio_raw              13462  0
crct10dif_pclmul       14289  0
crc32_pclmul           13113  0
aesni_intel            55624  0
aes_x86_64             17131  1 aesni_intel
lrw                    13286  1 aesni_intel
gf128mul               14951  1 lrw
glue_helper            13990  1 aesni_intel
ablk_helper            13597  1 aesni_intel
cryptd                 20359  2 aesni_intel,ablk_helper
psmouse               106692  0
floppy                 69418  0
+ mkdir b
+ mount -t overlayfs a b
mount: wrong fs type, bad option, bad superblock on a,
       missing codepage or helper program, or other error

       In some cases useful info is found in syslog - try
       dmesg | tail or so.
+ true
+ mount -t overlay a b
mount: unknown filesystem type 'overlay'
+ true
+ cat /proc/filesystems
nodev sysfs
nodev rootfs
nodev ramfs
nodev bdev
nodev proc
nodev cgroup
nodev cpuset
nodev tmpfs
nodev devtmpfs
nodev debugfs
nodev securityfs
nodev sockfs
nodev pipefs
nodev anon_inodefs
nodev devpts
   ext3
   ext2
   ext4
nodev hugetlbfs
   vfat
nodev ecryptfs
   fuseblk
nodev fuse
nodev fusectl
nodev pstore
nodev mqueue
nodev binfmt_misc
nodev overlayfs
+ lsmod
Module                  Size  Used by
overlayfs              28027  0
nbd                    17676  0
binfmt_misc            17468  1
dm_crypt               23177  0
kvm_intel             143187  0
kvm                   455843  1 kvm_intel
serio_raw              13462  0
crct10dif_pclmul       14289  0
crc32_pclmul           13113  0
aesni_intel            55624  0
aes_x86_64             17131  1 aesni_intel
lrw                    13286  1 aesni_intel
gf128mul               14951  1 lrw
glue_helper            13990  1 aesni_intel
ablk_helper            13597  1 aesni_intel
cryptd                 20359  2 aesni_intel,ablk_helper
psmouse               106692  0
floppy                 69418  0
Download as text