更多

纪录一些可能有用的,不经常使用的windows命令。 Contents 定时关机 定时关机 shutdown -s -t [second] 比如: # 1个小时后关机 shutdown -s -t 3600 取消定时关机 shutdown -a
2021-12-17
1分钟阅读时长
Homeassitant docker 安装 docker-compose.yml version: "3" services: homeassitant: container_name: homeassistant image: homeassistant/home-assistant restart: unless-stopped network_mode: host privileged: true # environment: # - https_proxy=http://172.16.8.168:8123 volumes: - /root/homeassistant/config:/config - /etc/localtime:/etc/localtime:ro 创建并运行 docker docker-compose up -d HACS 安装 (Integrations of the community store/社区插件) 如果 hacs 没有安装, 可以手动安装 # 进入do
2021-11-24
2分钟阅读时长
纪录一些可能有用的,不经常使用的命令。 目录 iperf3 - 测试网络速度 qemu - 转换磁盘映像 iperf3 测试设备间网络速度。 先开启服务端 iperf/iperf3 服务, 再用客户端 iperf/iperf3 测速。 windows 下为 iperf3.exe 应用。 服
2020-10-27
1分钟阅读时长