centOS7服务器连接无线网络并搞定ssh命令整理

网络管理

1、ip addr 查看无线网卡
2、ip link set wlp3s0 up 启动无线网卡
3、ip link show wlp3s0 查看无线网卡状态
4、wpa_supplicant -B -i wlp3s0 -c <(wpa_passphrase “网络名字” “密码”) —– 连接WiFi
5、ip addr show wlp3s0 查看ip地址

报错:operation not possible due to RF-kill
rfkill list 查看网卡状态
若开启,需使服务器休眠一次再次进入
rfkill unblock all 解除锁定
rfkill block all 锁定

电源管理

重启: systemctl reboot
退出系统并停止电源: systemctl poweroff
待机: systemctl suspend
休眠: systemctl hibernate
混合休眠模式: systemctl hybrid-sleep

ssh远程连接失败

首先ping通网络下其他主机ip,看是否可以ping通,
若ping不同,关闭防火墙,
systemctl stop firewalld.service //关闭防火墙
systemctl disable firewalld.service //禁止防火墙开机启动
firewall-cmd —state //查看防火墙状态

长时间不使用待机问题解决方案

新增文件/etc/X11/xorg.conf
内容:
Section “ServerFlags”
   Option “BlankTime” “0”
  Option “StandbyTime” “0”
   Option “SuspendTime” “0”
   Option “OffTime” “0”
EndSection

你可能感兴趣的:(centOS)