I have bought a VPS and I am busy with setting up a FTP server. This is working now, but i can give only one account owner rights. So i have made a group 'administrators' with 2 users. The problem is that i can give only one user owner rights. Now i am using the next code:
chown -r user1:administrators /var/websites
chown -r user2:administrators /var/websites
Only the last user(user 2) has now owner rights. What must i do to give both users administrator rights?
Tom