“超级用户”一词源自哪里?

“超级用户”一词源自哪里?

“超级用户”一词源自何处?它是“管理用户”的缩写,还是仅表示此类用户在系统中拥有的权限级别?

答案1

“超级用户”一词源自哪里?

su 可以让一个人成为超级用户,拥有各种神奇的权力。

来自第一版Unixsu 手册页:

        11/3/71                                                        SU (I)


NAME              su -- become privileged user

SYNOPSIS          su password

DESCRIPTION       su allows one to become the super--user, who has all sorts
                  of marvelous powers. In order for su to do its magic, the
                  user must pass as an argument a password. If the password
                  is correct, su will execute the shell with the UID set to
                  that of the super--user. To restore normal UID privileges,
                  type an end--of--file to the super--user shell

FILES

SEE ALSO          shell

DIAGNOSTICS       "Sorry" if password is wrong

BUGS

OWNER             dmr, ken

来源minnie.tuhs.org/UnixTree/V5/usr/source/s2/su.c.html

su在 Unix 系统上用于更改用户,通常用于以 root 用户身份运行命令。

并且...继续阅读

我又一次对“su”的含义感到震惊。我找到了一些旧的 Unix 源代码,其中 su.c 可用。我好奇地查看了源代码。我发现了什么?

/* su -- become super-user */

char    password[100];
char    pwbuf[100];
int ttybuf[3];
main()
{
    register char *p, *q;
    extern fin;

    if(getpw(0, pwbuf))
        goto badpw;
    (&fin)[1] = 0;
    p = pwbuf;
    while(*p != ':')
        if(*p++ == '\0')
            goto badpw;
    if(*++p == ':')
        goto ok;
    gtty(0, ttybuf);
    ttybuf[2] =& ~010;
    stty(0, ttybuf);
    printf("password: ");
    q = password;
    while((*q = getchar()) != '\n')
        if(*q++ == '\0')
            return;
    *q = '\0';
    ttybuf[2] =| 010;
    stty(0, ttybuf);
    printf("\n");
    q = crypt(password);
    while(*q++ == *p++);
    if(*--q == '\0' && *--p == ':')
        goto ok;
    goto error;

badpw:
    printf("bad password file\n");
ok:
    setuid(0);
    execl("/bin/sh", "-", 0);
    printf("cannot execute shell\n");
error:
    printf("sorry\n");
}

该 C 文件中的第一个注释是什么?

/* su -- become super-user */

su仅用于切换到系统上的 root 用户。它并非设计用于切换到拥有帐户的任何其他用户。“su”表示“超级用户”。我需要坐下来休息一会儿。

上面的代码来自 Dennis Ritchie 和 Ken Thompson 编写的 Unix 第五版。如果你了解 Unix 的历史,那么直到第六版,Unix 世界才真正开始腾飞。因此,可以肯定地说,第五版及之前版本中的大部分(如果不是全部的话)代码都是由 Dennis 和 Ken 自己编写的。第五版 Unix 于 1975 年发布,因此没有比这更权威的了。

来源Aaron Toponce:“su”的含义


进一步阅读

答案2

牛津英语辞典(付费墙)给出了以下词源:

极好的-字首+ 用户n.

他们列出的最早的例子来自 K. Thompson 和 DM Ritchie (1971):“Unix 程序员的人。”:

只有超级用户可以调用此命令。

相关内容