Как я могу запустить команду для установки программного обеспечения без sudo? [дубликат]

На этот вопрос уже есть ответ здесь:

Я пытаюсь установить Skype с помощью команды

dpkg -i skype-ubuntu-precise_4.3.0.37-1_i386.deb

Это дает мне ошибка:

dpkg: error: requested operation requires superuser privilege

Как мне назначить привилегию суперпользователя для текущего пользователя, чтобы я мог запускать команду без sudo?

Вот мой файл / etc / sudoers :

#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults    env_reset
Defaults    mail_badpass
Defaults    secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL


# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

Когда я запускаю следующее команда

sudo adduser ehsaan sudo

выдает ошибку:

The user `ehsaan' is already a member of `sudo'.
0
задан 18 September 2016 в 05:50

1 ответ

Sudo обязан делать редактирования к системным файлам, если Вы не входите в систему как корень. Это не возможно к моему знанию.

0
ответ дан 28 September 2019 в 15:08

Другие вопросы по тегам:

Похожие вопросы: