SóProvas


ID
1414399
Banca
FCC
Órgão
TJ-AP
Ano
2014
Provas
Disciplina
Sistemas Operacionais
Assuntos

Considere o seguinte comando do sistema operacional Linux:

# useradd -g admin -s /bin/bash -d /home/sup1 -c "Usuário Administrativo de Suporte 1" -m sup1

Este comando

Alternativas
Comentários
  • The options which apply to the useradd command are:

    -e, --expiredate EXPIRE_DATE

    -b, --base-dir BASE_DIR

    -c, --comment COMMENT

    -d, --home HOME_DIR

    -D, --defaults

    -f, --inactive INACTIVE

    -g, --gid GROUP

    -G, --groups GROUP1[,GROUP2,...[,GROUPN]]]

    -h, --help

    -k, --skel SKEL_DIR

    -K, --key KEY=VALUE    - Overrides /etc/login.defs defaults (UID_MIN, UID_MAX, UMASK, PASS_MAX_DAYS and others).

    -l, --no-log-init

    -m, --create-home

    -M - Do not create the user's home directory, even if the system wide setting from /etc/login.defs (CREATE_HOME) is set to yes

    -N, --no-user-group

    -o, --non-unique

    -p, --password PASSWORD

    -r, --system

    -s, --shell SHELL

    -u, --uid UID

    -U, --user-group

    -Z, --selinux-user SEUSER



  • Bom lembrar que usuários podem ser criados também utilizando o comando adduser.