上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 49 下一页
摘要: # 复制key ssh-copy-id -i ~/.ssh/id_rsa.pub root@10.1.1.1 # 登录ESXi cp .ssh/authorized_keys /etc/ssh/keys-root/authorized_keys 阅读全文
posted @ 2021-07-24 14:40 LeoShi2020 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 抓取源ip是10.10.10.122数据包。 # tcpdump -i eth0 -vnn src host 10.10.10.122 抓取目的ip是10.10.10.122数据包 # tcpdump -i eth0 -vnn dst host 10.10.10.122 阅读全文
posted @ 2021-07-14 11:45 LeoShi2020 阅读(189) 评论(0) 推荐(0) 编辑
摘要: yum install epel-release yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm yum install ffmpeg 阅读全文
posted @ 2021-06-13 11:06 LeoShi2020 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 存放字典 import json from redis import Redis rdb = Redis() d = {"key": "value"} rdb.set("Leo2021", json.dumps(d)) print(json.loads(rdb.get("Leo2021"))) EN 阅读全文
posted @ 2021-06-03 08:55 LeoShi2020 阅读(381) 评论(0) 推荐(0) 编辑
摘要: vi /usr/lib/systemd/system/docker.service # 修改为 ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix://var/run/docker.sock -H fd:// --containerd=/ 阅读全文
posted @ 2021-05-25 13:58 LeoShi2020 阅读(207) 评论(0) 推荐(0) 编辑
摘要: # 安装环境 CentOS Linux release 7.8.2003 (Core) # 下载yum源 wget http://mirrors.ustc.edu.cn/mysql-repo/mysql57-community-release-el7-8.noarch.rpm rpm -ivh my 阅读全文
posted @ 2021-05-22 09:39 LeoShi2020 阅读(23) 评论(0) 推荐(0) 编辑
摘要: [root@vue ~]# rpm -qa | grep MariaDB MariaDB-compat-10.3.22-1.el7.centos.x86_64 MariaDB-common-10.3.22-1.el7.centos.x86_64 [root@vue ~]# rpm -e --node 阅读全文
posted @ 2021-05-22 09:23 LeoShi2020 阅读(756) 评论(0) 推荐(0) 编辑
摘要: # 安装git yum install -y git # 配置git git config --global user.name "<名称>" git config --global user.email "<邮箱>" # 查看git配置 git config --list # 添加远端仓库 git 阅读全文
posted @ 2021-05-22 08:36 LeoShi2020 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 下载地址 https://github.com/nvm-sh/nvm/archive/refs/tags/v0.38.0.tar.gz tar zxvf nvm-0.38.0.tar.gz mv nvm-0.38.0 /usr/local/ ln -s /usr/local/nvm-0.38.0 ~ 阅读全文
posted @ 2021-05-22 00:21 LeoShi2020 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 第二列的公式 ="<需要添加的字符>"&<哪一列> 阅读全文
posted @ 2021-04-30 11:14 LeoShi2020 阅读(171) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 49 下一页