LINUXシステムでユーザーの種類を知る方法

LINUXシステムでユーザーの種類を知る方法

私のアカウントはLINUXコンピュータで作成されました。しかし、私はどのタイプのユーザー(ルートまたは一般)なのか、どのタイプのアクセス権を持っているのかわかりません。私が持っていることを確認するために使用できるコマンドはありますか?Sudoすでにアカウントをお持ちの場合は、Linuxシステムでそのアカウントにアクセスできますか?

ベストアンサー1

sudo -l設定に割り当てる機能レベルを決定するために使用されます。

~からman 8 sudo

   -l[l] [command]
        If no command is specified, the -l (list) option will list the 
        allowed (and forbidden) commands for the invoking user (or the user 
        specified by the -U option) on the current host.  

        If a command is specified and is permitted by the security policy, 
        the fully-qualified path to the command is displayed along with any 
        command line arguments.  If command is specified but not allowed, 
        sudo will exit with a status value of 1.  

        If the -l option is specified with an l argument (i.e. -ll), or if 
        -l is specified multiple times, a longer list format is used.

おすすめ記事