• [^] # Re: ext3

    Posté par . En réponse au message Mount, ext3 et ta mère. Évalué à 1.

    > Le problème c'est que si je lance un mount du FS sur /media/répertoire, les permissions sont modifiées et deviennent root:root 755.

    Exemple :
    # ll -d boot
    drwxr-xr-x 2 root root 4096 mai 9 00:10 boot
    # ll -d boot/
    drwxr-xr-x 2 root root 4096 mai 9 00:10 boot/
    # mount boot/
    # ll -d boot/
    drwxr-xr-x 5 root root 2048 jun 28 11:27 boot/
    # chown nobody:nobody boot/
    # ll -d boot/
    drwxr-xr-x 5 nobody nobody 2048 jun 28 11:27 boot/
    # umount boot/
    # ll -d boot/
    drwxr-xr-x 2 root root 4096 mai 9 00:10 boot/
    # mount boot/
    # ll -d boot/
    drwxr-xr-x 5 nobody nobody 2048 jun 28 11:27 boot/

    Donc sur ce point précis, je n'ai toujours pas compris le problème.