Ubuntu 10.04 sunucusunu çalıştırıyorum ve kullanıcılar / gruplarla çok sezgisel deneyimler yaşıyorum. Örneğin:
sudo touch test_file # create empty file
sudo groupadd test # create 'test' group
sudo chown root:test test_file # change group of file to 'test'
sudo chmod g+rwx test_file # give write permissions to group
sudo usermod -a -G test {my-user} # add my user to 'test' group
touch test_file # touch the file as my current user
Son satır bir izin hatası üretir.
Kullanıcımın 'test' grubunun bir parçası olmasını groups {my-user}
sağladım (bunu onaylar). Test_file grubu da kesinlikle 'test' olarak ayarlanır ve grup izinleri ayarlanır.
Kullanıcım neden dosya test dosyasına yazamıyor?
su - username
çalışan konsolunuza hackleyin. bu şekilde giriş yapmak için çıkış yapmanıza gerek yok :)