因为用Docker拉取的Base镜像如Centos和Ubuntu的话都是最简版本,不包含Ping工具,而对Docker进行Docker network和Docker链接操作时往往要用到Ping工具测试两个容器间的网络,此时就要用到Ping工具了,下面是Ubuntu下安装Ping工具的命令:
sudo apt-get update && apt-get install iputils-ping
知道越多,语言越少。明白一点真理就看到太多虚妄。
因为用Docker拉取的Base镜像如Centos和Ubuntu的话都是最简版本,不包含Ping工具,而对Docker进行Docker network和Docker链接操作时往往要用到Ping工具测试两个容器间的网络,此时就要用到Ping工具了,下面是Ubuntu下安装Ping工具的命令:
sudo apt-get update && apt-get install iputils-ping
apt-get update && apt install net-tools
route del -net 0.0.0.0/0 gw 192.168.2.3 删除原来的
route add -net 0.0.0.0/0 gw 192.168.2.1 添加新的路由规则
14天以上的
find ‘path/to/Plex Media Server/Cache/PhotoTranscoder’ -type f -name ‘*.jpg’ -mtime +14 -delete
win+R运行netplwiz
1
|
find /mnt/vol1/ptdataset/ptuser/download/ -name ‘*.mp4’ -print0 | xargs -0 -I% cp -nrsv % /mnt/vol1/lnk/
|
拷贝整个目录并创建硬链接
1
|
cp -al <origdir> <newdir>
|
1
|
opkg install python3 python3-pip
|
安装虚拟环境
1
|
pip3 install virtualenv
|
1
|
virtualenv /mnt/sda3/homeassistant -p /usr/bin/python3.6
|
进虚拟环境
1
|
source /mnt/sda3/homeassistant/bin/activate
|
1
|
python3 -m pip install homeassistant
|
1
|
hass –open-ui
|
等两分钟初始化 看看能不能打开webui,默认端口8123 路由器ip:8123
Ctrl + C 中止
退出虚拟环境
1
|
deactivate
|
1
|
/etc/init.d/hass-daemon enable
|
设置为开机启动
1
|
/etc/init.d/hass-daemon start
|
启动
1
|
/etc/init.d/hass-daemon stop
|
关闭
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
#!/bin/sh /etc/rc.common
START=99 # /etc/init.d Service Script for Home Assistant start() { stop() { create_piddir() { |
1
2 |
jls
jexec 1 /bin/tcsh |
https://github.com/Neilpang/acme.sh/wiki/%E8%AF%B4%E6%98%8E
1,安装acme.sh
1
|
curl https://get.acme.sh | sh
|
2,将CloudFlare Global API KEY加入临时系统变量
1
2 |
export CF_Key="******************"
export CF_Email="********" |
3,获取证书
1
|
~/.acme.sh/acme.sh –issue -d lingbo.me -d *.lingbo.me –dns dns_cf
|
ps,
How to get pkcs12(pfx) format
1
|
acme.sh –toPkcs -d <domain> [–password pfx-password]
|