From e2a451d730772a66a248268f9a5b79ca5b50087a Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Mon, 11 May 2020 17:59:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20=E6=8F=90=E5=8D=87?= =?UTF-8?q?=E6=9D=83=E9=99=90=20=E7=9A=84=E6=96=B9=E6=B3=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- Software/System/Linux/Editions/Manjaro/Manjaro_初始配置.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Software/System/Linux/Editions/Manjaro/Manjaro_初始配置.md b/Software/System/Linux/Editions/Manjaro/Manjaro_初始配置.md index 76ece32..581f123 100644 --- a/Software/System/Linux/Editions/Manjaro/Manjaro_初始配置.md +++ b/Software/System/Linux/Editions/Manjaro/Manjaro_初始配置.md @@ -270,7 +270,11 @@ pacman -S virtualbox-guest-utils 普通用户可能无法访问某些设备,需要提升权限: ```sh -gpasswd --add dialout +# 通过下列命令获得设备节点所在的组. +ls -l /dev |grep +# 以下命令中的 group name 为上述 ls 得到设备节点所在组名. +gpasswd --add +# 通过以下命令确认是否已将用户添加到该组. groups ```