会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
LeoShi2020
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
20
21
22
23
24
25
26
27
28
···
49
下一页
2021年7月24日
[ESXi6.5]ssh信任
摘要: # 复制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
阅读(125)
评论(0)
推荐(0)
2021年7月14日
[CentOS7]tcpdump
摘要: 抓取源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
阅读(198)
评论(0)
推荐(0)
2021年6月13日
[FFmpeg]Centos7 yum安装
摘要: 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
阅读(74)
评论(0)
推荐(0)
2021年6月3日
[Redis]存放字典
摘要: 存放字典 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
阅读(386)
评论(0)
推荐(0)
2021年5月25日
[Docker]开放2375端口
摘要: 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
阅读(216)
评论(0)
推荐(0)
2021年5月22日
[MySQL] 安装
摘要: # 安装环境 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
阅读(27)
评论(0)
推荐(0)
[CentOS7]rpm 强制卸载软件
摘要: [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
阅读(784)
评论(0)
推荐(0)
[CentOS7]git 安装使用
摘要: # 安装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
阅读(30)
评论(0)
推荐(0)
[vue]nvm安装
摘要: 下载地址 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
阅读(130)
评论(0)
推荐(0)
2021年4月30日
[Excel]列添加字符
摘要: 第二列的公式 ="<需要添加的字符>"&<哪一列>
阅读全文
posted @ 2021-04-30 11:14 LeoShi2020
阅读(180)
评论(0)
推荐(0)
上一页
1
···
20
21
22
23
24
25
26
27
28
···
49
下一页
公告