Droits sur un dossier
Résolu/Fermé
Daryl
-
10 avril 2017 à 14:12
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 11 avril 2017 à 16:30
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 11 avril 2017 à 16:30
A voir également:
- Droits sur un dossier
- Dossier appdata - Guide
- Mettre un mot de passe sur un dossier - Guide
- Impossible de supprimer un dossier - Guide
- Dossier rar - Guide
- Vous devez disposer des droits d'administrateur pour supprimer ce dossier - Guide
1 réponse
zipe31
Messages postés
36402
Date d'inscription
dimanche 7 novembre 2010
Statut
Contributeur
Dernière intervention
27 janvier 2021
6 418
Modifié le 10 avril 2017 à 15:20
Modifié le 10 avril 2017 à 15:20
Salut,
Il te faut chercher du côté du serveur FTP (notamment proftpd).
Voici un passage du lien (donné ci-dessus) :
One situation that often arises is one where the administrator would like to give users the ability to upload and dowload files from a given directory, but not to be able to delete files from that directory. This cannot be accomplished using normal Unix filesystem permissions, for if a user has write permission on a directory (necessary for uploading files to that directory) they also have delete permissions. In Unix, a directory file serves as a sort of "table of contents", tracking the files in the directory. Adding or removing a file are thus changes on the directory file, and do not involve checking the permissions on the file being added or removed. This is also how a non-root user can delete files that are owned by root and only have user-write permissions. So how then can a site be configured to allow writes but not deletes? By using a configuration similar to the following:
This will allow the user ftpadm to delete files in the /path/to/dir, but no other users.
_______________________________ ☯ Zen my nuggets ☮ ______________________________
Faites un geste pour l'environnement, fermez vos fenêtres et adoptez un manchot… 🐧
Il te faut chercher du côté du serveur FTP (notamment proftpd).
Voici un passage du lien (donné ci-dessus) :
One situation that often arises is one where the administrator would like to give users the ability to upload and dowload files from a given directory, but not to be able to delete files from that directory. This cannot be accomplished using normal Unix filesystem permissions, for if a user has write permission on a directory (necessary for uploading files to that directory) they also have delete permissions. In Unix, a directory file serves as a sort of "table of contents", tracking the files in the directory. Adding or removing a file are thus changes on the directory file, and do not involve checking the permissions on the file being added or removed. This is also how a non-root user can delete files that are owned by root and only have user-write permissions. So how then can a site be configured to allow writes but not deletes? By using a configuration similar to the following:
<Directory /path/to/dir>
<Limit DELE>
AllowUser ftpadm
DenyAll
</Limit>
</Directory>
This will allow the user ftpadm to delete files in the /path/to/dir, but no other users.
_______________________________ ☯ Zen my nuggets ☮ ______________________________
Faites un geste pour l'environnement, fermez vos fenêtres et adoptez un manchot… 🐧
11 avril 2017 à 12:12
Merci beaucoup, ça fonctionne.
J'ai une petite question, au cas ou je veux autoriser 2 utilisateurs à pouvoir supprimer, est-ce que j'ai le droit de faire ça ?
Merci
11 avril 2017 à 12:26
Ça je n'en sais rien. Le plus simple étant de tester, non ? ;-)
Le plus simple à mon avis étant de créer un groupe (comme dans l'exemple) et d'y rajouter les users autorisés.
11 avril 2017 à 16:26
Dans l'exemple c'était un utilisateur il me semble. J'ai essayé de mettre une virgule mais ça ne marche pas. J'ai testé en ajoutant une deuxième ligne Allowuser et là ça marche.
Ça donne ça
Encore merci !
Bonne journée
11 avril 2017 à 16:30
Bonne fin de journée à toi aussi.