摘要: Install You can install directly from the official repository: Settings > Plugins > search for makefile > Search in repositories > Install > Restart 阅读全文
posted @ 2018-01-31 16:12 橙子好甜 阅读(4960) 评论(0) 推荐(1)
摘要: 1. 启用 ssl 模块 sudo a2enmod ssl 2. 安装openssl sudo apt-get install openssl 3. 创建CA签名(不使用密码去除-des3选项) openssl genrsa -des3 -out server.key 1024 4. 创建CSR(C 阅读全文
posted @ 2018-01-31 11:57 橙子好甜 阅读(283) 评论(0) 推荐(0)
摘要: 1. -c 配置文件从文件中加载配置参数 如果没有指定默认路径为/etc/mosquitto/mosquitto.conf2. -d 表示以后台守护进程的形式启动3. -p 指定监听端口 默认为18834. -v 监控日志 类似于在配置文件中把log_type 设置为allmosquitto bro 阅读全文
posted @ 2018-01-31 11:57 橙子好甜 阅读(1101) 评论(0) 推荐(0)
摘要: 多年没用linux上编辑c程序,忘记怎么生成了。刚刚试了一下 vim hello.c 在hello.c中 按下 i 或者 insert 输入以下内容 #include <stdio.h> #include <stdlib.h> int main(int argc, char **argv) { pr 阅读全文
posted @ 2018-01-31 11:56 橙子好甜 阅读(184) 评论(0) 推荐(0)
摘要: 安装https://swift.org/download/#using-downloads1.Install required dependencies:下载安装包clangsudo apt-get install clang libicu-dev2.Download the latest bina 阅读全文
posted @ 2018-01-31 11:52 橙子好甜 阅读(247) 评论(0) 推荐(0)