摘要:
1. 安装第三方库 pip install websocket pip install websocket-client 2. 实战 import time from websocket import create_connection url = 'ws://192.168.1.100:8888/ 阅读全文
摘要:
1. 在哪里 apt-get install apps 这样的命令,一般会将下载文件放在 /var/cache/apt/archives目录下,然后安装。 2. 如何清理 apt-get clean删除/var/cache/apt/archives/ 和 /var/cache/apt/archive 阅读全文
摘要:
1. 更新系统 sudo apt-get update sudo apt-get dist-upgrade sudo apt-get autoremove 2. 安装postfixadmin sudo apt install php7.2-fpm php7.2-cli php7.2-imap php 阅读全文
摘要:
1. shell脚本 #!/bin/bash echo 'some id_rsa content'>~/.ssh/id_rsa_mac chmod 600 ~/.ssh/id_rsa_mac eval `ssh-agent` ssh-add ~/.ssh/id_rsa ssh-add ~/.ssh/ 阅读全文
摘要:
1. 复制密钥到主机 复制到你自己win主机的 ssh目录, C:\Users\xxxx\.ssh\id_rsa_some,自己命个名 2. 添加密钥 报错: Error connecting to agent: No such file or directory 解决方法:【以管理员身份运行】运行 阅读全文
摘要:
由于开发给了个jar,本地搭建个环境 然后运行就报错error unable to access jarfile java -jar antenna-server-1.0.0-jar 实际是包名不对,不是“-”, 应该是“.” 阅读全文
摘要:
1. 官网 https://www.proofpoint.com/us/products/email-protection/open-source-email-solution 2. 使用qq/163/126免费个人邮箱,申请获取授权码 3. smtp 非ssl #!/bin/bash read - 阅读全文
摘要:
1. 默认打印是一行的 debug_logger.info(f'[rsp json] {rsp.json()}') 2022-01-10 20:38:53,108 | root | INFO | [rsp json] {'code': 200, 'msg': 'SUCCESS', 'data': { 阅读全文
摘要:
1. 开始我是用sudo去安装, 可能用到了系统环境 sudo pip3 install -r requirements.txt 2. 改成如下即可 pip3 install -r requirements.txt --user 阅读全文
摘要:
由于帐号并没有开启免密码导致的 假设当前帐号为jenkins 1 打开sudoers sudo vim /etc/sudoers 2 添加免密码 jenkins ALL = NOPASSWD: ALL 阅读全文