• debian中sudo无法使用问题


    原文链接:http://sharadchhetri.com/2013/08/07/sudo-command-not-found-debian-7/

    To solve this issue install sudo in Debian,follow the given below steps

    Step 1: First you have to become super user (root)

    su -

    Step 2: Now install sudo with the help of command apt-get

    apt-get install sudo

    Step 3: Now check the sudo

    root@debian:~# exit
    logout
    linux@debian:~$ sudo su -
    
    We trust you have received the usual lecture from the local System
    Administrator. It usually boils down to these three things:
    
        #1) Respect the privacy of others.
        #2) Think before you type.
        #3) With great power comes great responsibility.
    
    [sudo] password for linux: 
    linux is not in the sudoers file.  This incident will be reported.
    linux@debian:~$ 
    

    Note: user name linux is not listed in sudoers file hence to allow the user called linux to use “sudo su -“. We will edit the sudoers file

    Important note: With sudoers file you can also specify which particular commands a particular user or group can use.

    Step 4: Allowing user to use “sudo su -”

    Because in my system user called linux is first user.I want to give access of super user to this account.

    switch to superuser root

    linux@debian:~$ su -
    Password: 
    root@debian:~#

    Edit the /etc/sudoers file: Append the below given line in sudoers file.
    Replace the user name called linux with your user name. save and exit

    vi /etc/sudoers
    
    linux   ALL=(ALL:ALL) ALL

    Step 5: Now recheck. Exit from console and login with user and use the command sudo su –

    root@debian:~# exit
    logout
    You have mail in /var/mail/linux
    
    linux@debian:~$ sudo su -
    [sudo] password for linux: 
    root@debian:~#
  • 相关阅读:
    vim tail
    范式
    $@疑点
    ^ $ 和 a z 字符匹配
    [导入]DataList编辑、更新、取消、删除、分页(分页控件AspNetPager.dll)
    [导入]用.net操作word
    导出文件
    [导入]总结:ADO.NET在开发中的部分使用方法和技巧
    读取DataTable中的数据,一行一行进行比较
    [导入]ASP.NET 数据访问类
  • 原文地址:https://www.cnblogs.com/ieayoio/p/5392249.html
Copyright © 2020-2023  润新知