python
hu434587115
这个作者很懒,什么都没留下…
展开
-
ubuntu 更换源
1. 备份 使用cd/etc/apt进入apt目录,找到sources.list文件,运行cp /etc/apt/sources.list /etc/apt/sources.list.backup进行备份 2. 替换 使用sudovim /etc/apt/sources.list 编辑sources.list 打开sources.list 在vim命令模式下(进入后即是命...原创 2019-11-24 15:43:42 · 312 阅读 · 0 评论 -
ubuntu配置SSH服务
1. 如果ls命令没用 cd / 再使用 ls 命令就可以了 2. 配置静态IP 查看本机ip地址:ifconfig -a sudo vim /etc/network/interfaces 重启一下网络即可 sudo /etc/init.d/networking restart service networking start(开启) service networki...原创 2019-11-24 14:49:45 · 503 阅读 · 0 评论 -
python3 fabric3 模块实现密钥登录
原文地址 python3 fabric3 模块实现密钥登录 去网上搜索,发现一堆文章,比如官网 execution 说明文档,官网 SSH 使用说明文档,还有官网 password-management 使用说明文档。 而我想要的就是知道如何使用密钥链接到远程的主机。简单点,看下面就好。 配置一个 fabfile.py 文件。from fabric.api import * # 填...转载 2018-11-16 11:20:44 · 1539 阅读 · 1 评论