跳转至

Linux常用命令

显示计算机的ip

ip addr show

创建目录

mkdir <dir>
mkdir -p <dir> # 递归创建目录

将用户添加到新的组

usermod -a -G <groupName> <userName>

其他

Linux常用命令