今天使用git 添加远程github仓库的时候提示错误:fatal: remote origin already exists. 最后找到解决办法如下: 1、先删除远程 Git 仓库 $ git remote rm origin 2、再添加远程 Git 仓库 $ git remote add ori ...
分类:
其他好文 时间:
2018-06-03 17:35:18
阅读次数:
163
ubuntu系统pip安装paramiko报错fatalerror:openssl/opensslv.h:Nosuchfileordirectory首先根据报错检查OpenSSL是正常安装的,查看openssl-devel是没有安装的,尝试安装无法安装成功,网上搜索了一下看到这篇文章https://jingyan.baidu.com/article/ea24bc39f72681da62b331d7
分类:
其他好文 时间:
2018-06-01 11:39:35
阅读次数:
145
唉学习snort真是各种麻烦啊,今天遇到一个问题。 ERROR: D:\Snort\etc\snort.conf(511) Unknown preprocessor: "sip".Fatal Error, Quitting..解决方法其实很简单,直接在第511句后面加上 \ 就行了。 ...
分类:
其他好文 时间:
2018-05-31 16:14:48
阅读次数:
446
Linux bonding驱动一共提供了7种模式,它们分别是:balance-rr 、active-backup、balance-xor、broadcast、802.3ad、balance-tlb、balance-alb。 balance-rr or 0:轮询模式,提供负载平衡和容错。该模式下两个网 ...
分类:
系统相关 时间:
2018-05-30 21:29:34
阅读次数:
247
root@magina-Inspiron-3847:~# docker pull 172.16.1.41:5000/ubuntuUsing default tag: latestError response from daemon: Get https://172.16.1.41:5000/v1/_ ...
分类:
系统相关 时间:
2018-05-29 18:53:18
阅读次数:
186
解决方法:设置cpp文件的Precompiled Header属性设置为Not Using Precompiled Headers ...
分类:
其他好文 时间:
2018-05-29 16:16:19
阅读次数:
150
输入 $git remote add origin https://github.com/用户名/项目.git,提示fatal: remote origin already exists. 解决办法: 1 、先输入$ git remote rm origin 2、再输入git remote add ...
分类:
其他好文 时间:
2018-05-29 14:04:12
阅读次数:
168
参考博客: https://www.jianshu.com/p/8a7f257e07b8 从某个项目地址pull代码下来,老是报错 fatal: Authentication failed for 'https://gitee.com/CTOLiXianSheng/zx-cloud.git/' 因为 ...
分类:
其他好文 时间:
2018-05-28 13:49:27
阅读次数:
169
一、修改网卡名:网卡配置文件:vi/etc/sysconfig/network-scripts/ifcfg-ens33TYPE=EthernetBOOTPROTO=staticDEFROUTE=yesPEERDNS=yesPEERROUTES=yesIPV4_FAILURE_FATAL=noIPV6INIT=yesIPV6_AUTOCONF=yesIPV6_DEFROUTE=yesIPV6_PEE
分类:
其他好文 时间:
2018-05-28 11:46:10
阅读次数:
173
git通过git clone下载github上的资源到机器上,结果出现如题所示的错误。 [plain] view plain copy [root@server data]# git clone https://github.com/pingcap/tidb-docker-compose.git C ...
分类:
数据库 时间:
2018-05-26 22:17:46
阅读次数:
2334