1.1
上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: D-Bus setup failed: Connection ":1.396" is not allowed to own the service "org.bluez" due to security policies in the configuration file 如果你是代码编译安装了某些 阅读全文
posted @ 2020-09-01 18:32 asml 阅读(2909) 评论(0) 推荐(0) 编辑
摘要: 树莓派开发stm32 需要安装的东西 gcc-arm-none-eabi和openocd使用手工下载可以得到最新版,支持最新的技术和芯片. 另外,自动安装版的gcc-arm-none-eabi没有gdb,无法调试. 先安装下这两个: apt install -y libncurses5 make 名 阅读全文
posted @ 2020-08-19 15:43 asml 阅读(1132) 评论(0) 推荐(0) 编辑
摘要: 利用Nginx WebDAV搭建自己的网盘 需要准备的东西 硬件: Linux服务器 软件: 名称 简介 下载地址 nginx源码 服务端需要自己编译代码 https://nginx.org/en/download.html nginx扩展dav模块 nginx自身的dav功能不足以用来做webda 阅读全文
posted @ 2020-07-31 15:45 asml 阅读(14245) 评论(1) 推荐(0) 编辑
摘要: 需要的东西 需要的软件: |名称|备注|下载地址| | | | | |gcc-arm-none-eabi|编译代码|https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolch 阅读全文
posted @ 2020-06-17 13:45 asml 阅读(4313) 评论(0) 推荐(0) 编辑
摘要: 在Windows上使用VSCode远程链接到Linux上开发并调试C++程序 开发环境配置成功,记个流水账 Linux安装相应工具 apt install -y gcc make gdb 请配置好Linux端的SSH功能 给VSCode安装Remote Development扩展 安装后可以看到一个 阅读全文
posted @ 2020-05-26 17:26 asml 阅读(6907) 评论(0) 推荐(0) 编辑
摘要: | 名称 | 介绍 | | | | | Live Share| 编辑器版本的远程协助工具 | | Markdown All in One | 编辑MD文档必备 | | Remote SSH | 远程链接linux开发 | | Remote WSL | 本地Linux虚拟机开发 | | Visual 阅读全文
posted @ 2020-05-15 13:19 asml 阅读(428) 评论(0) 推荐(0) 编辑
摘要: OpenCV加载Pytorch模型出现Unsupported Lua type 解决方法 原因 Torch有两个版本,一个就叫Torch一个专门给Python用的Pytorch,它们训练完之后保存下来的模型是不一样的. 说到这问题就很清楚了.OpenCV的 支持的是前者... 解决方法 那么有没有解 阅读全文
posted @ 2020-05-08 17:45 asml 阅读(2382) 评论(0) 推荐(2) 编辑
摘要: mysql P3306 h localhost u root p 分别是:端口 服务器 用户名 有密码(这里可以先不用输入,带这个参数表示有密码,密码在打开客户端后输入,也可以在这里直接输入在后面,打开客户端无需输入密码) 一些基本操作: 创建数据库: 创建用户: 操作权限:用来控制用户能使用什么命 阅读全文
posted @ 2020-03-11 14:46 asml 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 不要使用python 3.6.0版本 对应这个版本的pytorch包有问题,会出现如下报错: from torch._C import ImportError: DLL load failed: 找不到指定的模块 最好换python版本解决 到官网生成安装命令 不要使用野生安装命令,这玩意官方命令选 阅读全文
posted @ 2020-03-09 13:24 asml 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 生成秘钥对 参数解释: -t:加密算法 -b:秘钥位数 -C:注释.可任意定义 Windows cmd下: ssh-keygen -t rsa -b 2048 -C "github" -f %USERPROFILE%\.ssh\id_rsa && type %USERPROFILE%\.ssh\id 阅读全文
posted @ 2020-03-04 09:58 asml 阅读(444) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页
@.@