Hello,
I have an OpenVZ VPS with only ubuntu-8.04-i386-minimal installed.
I did this:
• Install packages:
# sudo apt-get install acl (this works ok!, I have installed ACL 2.2.45-1
I had to add ACL in fstab because I had an error message in the next command (sudo mount -o remount,rw,acl /) It says: "ACL" not found .
---------------------------------------------------------------------------------
• Add mount option 'acl' in /etc/fstab which contains '/etc/' directory if it doesn't there yet. Copy it as a new line, and comment the old one, add 'acl' like below.
#UUID=d4cfe48c-4332-4357-bcc8-1ed977449e89 / ext3 relatime,errors=remount-ro 0 1
UUID=d4cfe48c-4332-4357-bcc8-1ed977449e89 / ext3 acl,relatime,errors=remount-ro 0 1
I added this line in fstab
Note: It seems you don't need to add this 'acl' option in /etc/fstab if you use VPS which hosted by OpenVZ, because you can't edit /etc/fstab file, and it already supports acl.
-----------------------------------
Then I did this
• Remount the mount point which contains '/etc/' directory. e.g. '/':
# sudo mount -o remount,rw,acl /
mount: permission denied (error message)
What can I do in order to solve this problem?
thanks