I have two Ubuntu 16.04.1 servers providing DHCP and DNS services on my network. Today, on one of my servers, I discovered a new filesystem mounted at /sys/kernel/debug/tracing
. The other server, which is configured almost identically, does not have this filesystem mounted.
Why did this filesystem get mounted? How do I get rid of it?
> uname -a
Linux net-services-02 4.4.0-47-generic #68-Ubuntu SMP Wed Oct 26 19:39:52 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
> cat /proc/cmdline
BOOT_IMAGE=/vmlinuz-4.4.0-47-generic root=/dev/mapper/net--services--02--vg-root ro
> cat /etc/fstab
# /etc/fstab: static file system information.
# [... more comments ...]
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/mapper/net--services--02--vg-root / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=363b849e-4574-410a-acf9-e84c95d7d879 /boot ext2 defaults 0 2
/dev/mapper/net--services--02--vg-swap_1 none swap sw 0 0
uname -a
andcat /etc/fstab
– WinEunuuchs2Unix Nov 11 '16 at 02:07