上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 28 下一页
摘要: Ubuntu Server 18.04.1 LTS 64位 1核 2G 50G 首先需要在控制台中重置密码。然后默认的用户名是ubuntu。之后就可以使用xshell进行连接了。如果想使用root用户登陆,网上有很多的方法,可以参考。 安装nginx: 执行apt-get update,apt-ge 阅读全文
posted @ 2020-06-09 14:40 maycpou 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/wucz122140729/article/details/105113379 在liunx中一些与进程相关的命令: ps 查看当前终端的进程 ps -ef 查看系统的全部进程 ps -ef |grep test查看系统的全部进程并且包含test字符 阅读全文
posted @ 2020-06-01 17:10 maycpou 阅读(1259) 评论(0) 推荐(0) 编辑
摘要: 我是将库和头文件等直接拷贝到/usr/local/下面的路径中后,引入的时候报这个错误。 使用下面的方式得以解决: vi /etc/ld.so.conf,在"include ld.so.conf.d/*.conf"下方增加"/usr/local/lib" 保存后,在命令行终端执行:/sbin/ldc 阅读全文
posted @ 2020-05-29 16:30 maycpou 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 语法:MESSAGE("include folder: "${include_dir}) 在执行cmaek 命令的时候就会输入${include_dir}的值 阅读全文
posted @ 2020-05-29 16:27 maycpou 阅读(4727) 评论(0) 推荐(0) 编辑
摘要: 1.对整个线图层进行平滑不是平滑某一条线 toolbox=>制图工具(Cartographic Tools)=>制图综合(Generalization)=>平滑线(Smooth Line) 在参数的对话框中: Smoothing Algorithm表示平滑算法,有两种选择 指数核的多项式近似 (PA 阅读全文
posted @ 2020-05-28 10:31 maycpou 阅读(922) 评论(0) 推荐(0) 编辑
摘要: 查看本机是否安装了gdb:gdb --version 如果没有安装可以使用apt-get install gdb安装gdb (1)调试一个简单的cpp文件: test.cpp文件: #include<stdio.h> int main() { int a = 5; int b = 6; int c 阅读全文
posted @ 2020-05-27 14:18 maycpou 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 截取: array.silce(satar,end); var a = [1,2,3]; var b = a.silce(1,2); 连接: var a = [1,2]; var b =[3]; var c = a.concat(b); 阅读全文
posted @ 2020-05-14 15:17 maycpou 阅读(757) 评论(0) 推荐(0) 编辑
摘要: grep可用于对在linuxx中使用命令得到的显示结果再进行一次过滤。 ls|grep example.* :ls用于显示当前目录下的所有文件,加上|grep example.*后就是对得到的结果中选择文件名是example,任意后缀的文件。 ls|grep test:显示当前目录下所有目录名包含t 阅读全文
posted @ 2020-05-11 16:15 maycpou 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/wucongzhou/p/12498107.html 1.用C语言写socket和client (1)客户端向服务器端连续发送三条信息并接收每一次服务器端返回的信息,服务器端每接收到一次消息就向客户端返回一个ok socket服务器端: #inc 阅读全文
posted @ 2020-05-07 15:04 maycpou 阅读(370) 评论(0) 推荐(0) 编辑
摘要: npm install --save XXX(包名)@1.0.0(版本号) 阅读全文
posted @ 2020-05-06 17:02 maycpou 阅读(3840) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 28 下一页