Hide Forgot
Description of problem: dmesg: 16.200199] systemd[1]: /etc/mtab is not a symlink or not pointing to /proc/self/mounts. This is not supported anymore. Please make sure to replace this file by a symlink to avoid incorrect or misleading mount(8) Version-Release number of selected component (if applicable): util-linux-2.20.1-2.1.fc16 How reproducible: always on boot Steps to Reproduce: 1. boot 2. 3. Actual results: shows error, as /etc/mtab is not a symlink but an actual file. Expected results: fix symlink Additional info: Box was upgraded from F15 workaround rm /etc/mtab ln -s /proc/self/mounts /etc/mtab
That's strange, there is a post-install script in the util-linux.spec file to create the symlink.
does it delete an existing mtab file?
%if %{mtab_symlink} rm -f /etc/mtab ln -s /proc/mounts /etc/mtab %else touch /etc/mtab /bin/chown root:root /etc/mtab /bin/chmod 0644 /etc/mtab %endif