linux
192字小于1分钟
2024-11-22
配置终端代理
Linux
export http_proxy=user:password@127.0.0.1:3128
export https_proxy=user:password@127.0.0.1:3128
powershell
$Env:http_proxy="user:password@127.0.0.1:3128"
$Env:https_proxy="user:password@127.0.0.1:3128"
cmd
# 设置代理
netsh winhttp set proxy 127.0.0.1:3128
#取消代理
netsh winhttp reset proxy
#查看代理
netsh winhttp show proxy
systemctl 相关命令
提示
以firewalld.service为例
# 启动一个服务:
systemctl start firewalld.service
# 关闭一个服务:
systemctl stop firewalld.service
# 重启一个服务:
systemctl restart firewalld.service
# 显示一个服务的状态:
systemctl status firewalld.service
# 在开机时启用一个服务:
systemctl enable firewalld.service
# 在开机时禁用一个服务:
systemctl disable firewalld.service
# 查看服务是否开机启动:
systemctl is-enabled firewalld.service
# 查看开机启动的服务列表:
systemctl list-unit-files|grep enabled
# 查看启动失败的服务列表:
systemctl --failed