Que signifient les autorisations de fichiers Unix et Linux ?

WBOY
Libérer: 2023-05-17 19:13:04
avant
1212 Les gens l'ont consulté

Autorisations de fichiers

st_mode

含义

八进制值

英文注记

S_IRUSR

用户读

4

READ USER

S_IWUSR

用户写

2

WRITE USER

S_IXUSR

用户执行

1

EXEC USER

S_IRGRP

组读

4

READ GROUP

S_IWGRP

组写

2

WRITE GROUP

S_IXGRP

组执行

1

EXEC GROUP

S_IROTH

其他用户读

4

LIRE AUTREOTHER

S_IWOTH

其他用户写

2

WRITE OTHER

S_IXOTH

其他用户执行

1

EXEC OTHER

这也对应了我们常见的chmod 755

S_IWOTH

其他用户写🎜🎜🎜

2🎜🎜🎜

ÉCRIRE AUTRE🎜🎜

S_IXOTH code>🎜🎜<td data-id="t6267798-4HovhX4y" data-transient-attributes="table-cell-selection" class="table-last-column"><p data-id="p838747a-IrYqU1af">其他用户执行🎜🎜🎜</p></td> <td data-id="t6267798-ozNoNUXU" data-transient-attributes="table-cell-selection" class="table-last-column"><p data-id="p838747a-1xhjVoPp ">1🎜🎜🎜</p></td> <td data-id="t6267798-dMlKKYAP" data-transient-attributes="table-cell-selection" class="table-last-column table-last-row"><p data-id="p838747a-xWFmkIKs">EXEC <code>AUTRE🎜🎜

这也对应了我们常见的chmod 755, 上面的表格可以分成三组, 每组最大值为7,表示读写执行权限. 下面用C代码来看看具体值:🎜

#include <stdio.h>
#include <sys/stat.h>

/*
S_IRUSR: 使用者读权限, READ USER 4
S_IWUSR: 使用者写权限, WRITE USER 2
S_IRGRP: 组用户读权限, READ GROUP 4
S_IROTH: 其他用户读权限, READ OTHER 4
*/


int main(int argc, char const *argv[]) {
    printf(
        "S_IRUSR, S_IWUSR, S_IRGRP, S_IROTH=%o, %o, %o, %o, (S_IRUSR | S_IWUSR "
        "| S_IRGRP | S_IROTH)=%o\n",
        S_IRUSR, S_IWUSR, S_IRGRP, S_IROTH,
        (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH));
    return 0;
}
Copier après la connexion
🎜结果:🎜
S_IRUSR, S_IWUSR, S_IRGRP, S_IROTH=400, 200, 40, 4, (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)=644
Copier après la connexion

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:yisu.com
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal