2021年3月

使用树莓配4B的 CentOS 8 Stream 系统尝试连接WIFI时查到的

nmcli device wifi list
# 显示可以搜索到的WiFi

nmcli device wifi connect SSID password PASSWORD
# 连接WiFi,SSID为WIFI名,PASSWORD为密码

nmcli device disconnect
# 断开连接

nmcli connect del SSID
# 删除WIFI,SSID为WIFI名

适用于CentOS 7 与 8.
防火墙的服务是 firewalld.service,使用 systemctl 管理即可。

systemctl enable firewalld
# 打开开机自启防火墙

systemctl disable firewalld
# 关闭开机自启防火墙

systemctl start firewalld
# 启动防火墙

systemctl reload firewalld
# 重载防火墙

systemctl status firewalld
# 查看状态

systemctl stop firewalld
# 关闭防火墙

firewall-cmd --list-ports
# 查看已放行的端口

firewall-cmd --zone=public --add-port=80/tcp --permanent
# 放行端口,参数分别为:指定作用域、放行端口号与协议、设置永久生效

使用attrib命令编辑目录属性,参数如下:

+r 设置只读属性
-r 取消只读属性
+a 设置存档属性
-a 取消存档属性
+s 设置系统属性
-s 取消系统属性
+h 设置隐藏属性
-h 取消隐藏属性

/s 显示目录下所有文件属性
/d 指定应用目录,为空表示所有

进入目标目录执行以下命令即可

attrib -s -a -r -h /s /d
# 重置目录下所有文件属性