windows清除原有SSH公钥

在powershell输入:

1
~/.ssh/known_hosts

选择记事本打开方式,然后ctrl+a,然后delete

连接状态为Attached的screen

1
screen -D  -R <session>

systemctl常用命令

1
2
3
4
5
6
7
8
9
10
#启动
sudo systemctl start frpc
#关闭
sudo systemctl stop frpc
#重启
sudo systemctl restart frpc
#查看状态
sudo systemctl status frpc
#设置为开机自启动
sudo systemctl enable frpc

安卓子系统安装apk

1
adb connect 127.0.0.1:58526
1
adb install xxx.apk
1
2
3
4
5
6
PS C:\Users\Triority\Desktop> adb connect 127.0.0.1:58526
connected to 127.0.0.1:58526
PS C:\Users\Triority\Desktop> adb install base.apk
Performing Streamed Install
Success
PS C:\Users\Triority\Desktop>