安装根证书:certutil.exe -addstore -f Root path\to\file.cer 查询网卡IP地址:ip addr show,hostname -I 重启:poweroff,shutdown now,reboot -p 查端口:sudo lsof -i :80,sudo ss -tulnp | grep 80
curl -x socks://127.0.0.1:40000 ifconfig.me curl ifconfig.me curl ipinfo.io curl httpbin.org/ip curl 2023.ip138.com -H “User-Agent: iPhone”
tasklist |findstr “30524”
kill -9 $(ps -ef | grep java | grep chat-cloud-gateway.jar | grep -v grep | awk '{print $2}')
在 Linux 系统中,用于控制系统服务的命令主要有以下几个: service: 这个命令通常用于 SysVinit 系统(比如 CentOS 6 及之前版本),用来启动、停止、重新启动和管理系统服务。
# 启动服务 service servicename start # 停止服务 service servicename stop # 重新启动服务 service servicename restart # 查看服务状态 service servicename status systemctl: 这是一个更为强大且现代的命令,用于管理 Systemd 系统(包括大多数现代的 Linux 发行版,如 CentOS 7+、Ubuntu 16.