上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 38 下一页
摘要: https://blog.csdn.net/weixin_43636782/article/details/123416064 ssh登录老的服务器的时候报错 Unable to negotiate with 192.168.1.10 port 22: no matching host key ty 阅读全文
posted @ 2022-05-18 17:48 秋来叶黄 阅读(440) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/bugang4663/article/details/110408633 visual Studio打开unicode/ut8的文件,如果文件中有中文,会显示一个弹窗 使用 简体中文(GB2312)编码加载文件xxx时,有些字节已用Unicode替换字符替 阅读全文
posted @ 2022-05-18 11:13 秋来叶黄 阅读(6155) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sinat_42483341/article/details/121108774 https://www.cnblogs.com/ice-image/p/15420411.html https://confluence.atlassian.com/bitb 阅读全文
posted @ 2022-05-18 10:26 秋来叶黄 阅读(1406) 评论(0) 推荐(0) 编辑
摘要: 使用ssh的svn有时候在第一次checkout的时候,并不会提示记录密码,这样的话,每次操作都会提示输入密码,可以在Settings->Network->SSH Client添加上如下的命令"C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe" - 阅读全文
posted @ 2022-05-13 08:59 秋来叶黄 阅读(106) 评论(0) 推荐(0) 编辑
摘要: windows下编译的mysql connector c++的连接ubuntu的mysql时,报错2026,看介绍就是与ssl有关。因为windows下编译mysql connector c++的时候没有选择ssl,所以如果mysql开启了ssl连接,就会报错。默认mysql在ubuntu下是开启的 阅读全文
posted @ 2021-04-20 17:38 秋来叶黄 阅读(1802) 评论(0) 推荐(0) 编辑
摘要: https://forum.qt.io/topic/119033/qt-creator-does-not-launch-on-ubuntu-20-04-1-in-virtualbox 在virtual box中安装qt creator,打开的时候会提示如下错误(直接通过图标打开,没有任何提示,需要用 阅读全文
posted @ 2021-04-13 13:50 秋来叶黄 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 这是因为默认没有安装ssh服务 ```bash apt install ssh ``` 编辑/etc/ssh/ssh_config,这个默认是只读的,增加可写权限,把下面的一行22端口的注释去掉,表示打开 ```bash Include /etc/ssh/sshd_config.d/*.conf P 阅读全文
posted @ 2021-04-09 11:05 秋来叶黄 阅读(957) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/daodaotest/p/13841951.html #!/bin/sh git filter-branch --env-filter ' # 之前的邮箱 OLD_EMAIL="aaa@aaa.com" # 修改后的用户名 CORRECT_NAME=" 阅读全文
posted @ 2021-04-08 12:38 秋来叶黄 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 拷贝构造函数 拷贝构造是在传入一个类的实例作为参数创建新的类的时候触发的 class ctest { public: ctest(ctest& t) { cout << "ctest(ctest& t)" << endl; } }; 也可以为参数增加const修饰防止修改。触发拷贝构造的情况一般有两 阅读全文
posted @ 2021-03-25 13:11 秋来叶黄 阅读(154) 评论(0) 推荐(0) 编辑
摘要: https://en.cppreference.com/w/cpp/utility/move std::move 获得右值引用 Defined in header <utility> template< class T > typename std::remove_reference<T>::typ 阅读全文
posted @ 2021-03-25 11:16 秋来叶黄 阅读(281) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 38 下一页