Submitted by fuggi on Thu, 01/08/2015 - 04:41
Happy new year!
The latest update of webmin-virtual-server to v4.13.gpl via apt-get reported the error "Failed to find mount point for /home". However, the current version on the system information summary page reads now 4.13.gpl and the update is not waiting anymore (seems to be implemented). Should I worry about or check anything?
Regards,
fuggi
Status:
Closed (fixed)
Comments
Submitted by JamieCameron on Thu, 01/08/2015 - 10:50 Comment #1
If you go to System Settings -> Re-check Configuration on the left menu, does it still report that same error message?
If so, what does the
/etc/fstab
file contain on your system?Submitted by fuggi on Thu, 01/08/2015 - 11:04 Comment #2
Yes, it does:
The module could not find the mount point for your home directories filesystem /home. Quotas editing has been disabled.
Content of /etc/fstab:
proc /proc proc defaults 0 0
none /dev/pts devpts rw 0 0
shm /dev/shm tmpfs defaults 0 0
However /etc/fstab has not being changed lately and home directory is mounted and accessible.
Thanks in advance for you help!
Submitted by JamieCameron on Thu, 01/08/2015 - 15:49 Comment #3
I assume you are on a VM of some kind? That would explain why there is no entry in /etc/fstab for the root filesystem.
What does the
mount
command output on your system?Submitted by fuggi on Fri, 01/09/2015 - 08:14 Comment #4
Yes, it is a VM. ASAIK it's OpenVZ.
mount
says:/dev/ploop56933p1 on / type ext4 (rw,relatime,barrier=1,data=ordered,balloon_ino=12,usrquota,grpquota)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,relatime,mode=755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,relatime)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,mode=600,ptmxmode=000)
shm on /dev/shm type tmpfs (rw,relatime)
Submitted by JamieCameron on Fri, 01/09/2015 - 11:03 Comment #5
Ok, the quick fix is to add the following line to your
/etc/fstab
file :/dev/ploop56933p1 / ext4 rw,relatime,barrier=1,data=ordered,balloon_ino=12,usrquota,grpquota 0 0
A "real" system would always have this, but on an OpenVZ VM it can be left out in some cases.
Submitted by fuggi on Fri, 01/09/2015 - 19:10 Comment #6
Thanks a lot! It did the job.
However, I wonder why this issue has not come up at any earlier Virtualmin/Webmin update. Any ideas?
Submitted by JamieCameron on Fri, 01/09/2015 - 19:45 Comment #7
Maybe the file was always missing that line, but Virtualmin didn't detect it until you did an update?
Submitted by fuggi on Sat, 01/10/2015 - 08:34 Comment #8
I will keep an eye on that. Thank you again!