12 2019 档案
摘要:用mysql建了个表: create table file_table ( id int auto_increment primary key, filename varchar(50) not null,filepath varchar(50) not null,update_time date)
阅读全文
摘要:首先打开Ubuntu的终端,利用find命令,然后后面跟一个name参数,冒号里式过滤条件,两个星号表示包含name的文件 find / -name "*name" 权限不够,在前面加sudo 只搜索名称为name的文件: find / -name "name" 按照size大小查找文件: find
阅读全文
摘要:原文:linux查看端口占用情况 查看Linux端口占用,并kill掉相关进程 一、Linux如何查看端口 1.1 lsof -i:端口号 用于查看某一端口的占用情况,比如查看8000端口使用情况,lsof -i:8000 # lsof -i:8000 COMMAND PID USER FD TYP
阅读全文
摘要:原文: Git学习笔记 写的很好。易懂,特此转载一下 1.安装git sudo apt-get install git 2.在命令行输入: git config --global user.name 'Your Name' git config --global user.email 'email@
阅读全文
摘要:今天用git pull来更新代码,遇到了下面的问题: error: Your local changes to the following files would be overwritten by merge: xxx/xxx/xxx.javaPlease, commit your changes
阅读全文
摘要:注意:安装UHD驱动后,会出现非root用户权限的问题,使用sudo也能识别USRP,但后面执行程序的时候会出问题。 解决方法如下: cd /usr/lib/uhd/utils 或者:cd /usr/local/lib/uhd/utils 看你默认安装在哪里 sudo cp uhd-usrp.rul
阅读全文
摘要:if you are upset with sudo password, add this line in /etc/sudoers xxxxxx ALL=(ALL) NOPASSWD: ALL (xxxxxx is your login name) sudo will not ask anymor
阅读全文
摘要:Ctrl+Alt+T 启动终端 Ctrl+Shift+C 复制 Ctrl+Shift+V 粘贴 Ctrl+Shift+T 新建标签页 Ctrl+Shift+W 关闭标签页 Ctrl+Shift+N 新建终端窗口 Ctrl+Shift+Q 关闭终端窗口 参考https://www.cnblogs.co
阅读全文
摘要:USRP作为软件无线电系统中常用的射频设备,其驱动UHD的安装及稳定运行,是SDR系统稳定的必备条件,该篇博客总结UHD的相关安装方法,主要有三种,分别是apt-get、github clone源码编译以及官网下载源码编码。下面对三种方法进行简单介绍,系统为Ubuntu14.04,其他系统过程基本类
阅读全文
摘要:检查发现其实已经安装了automake,只不过版本是automake-1.15.1 $ automake --version automake (GNU automake) 1.15.1 解决方法一 参考https://github.com/UBERTC/isl/issues/1,在 /usb/bi
阅读全文
摘要:1.stash通常遇到这个问题,你可以直接commit你的修改;但我这次不想这样。看看git stash是如何做的。 git stash git pull git stash pop接下来diff一下此文件看看自动合并的情况,并作出相应修改。git stash: 备份当前的工作区的内容,从最近的一次
阅读全文
摘要:Matlab配置C++/VS2015等编译环境(mex -setup 找不到编译器问题解决)
阅读全文
摘要:matlab 2018b之编译器的安装 安装MinGW C/C++ 编译器
阅读全文
摘要:1.配置编译环境 在命令行窗口输入: mbuild -setup 如果出现以下提示信息说明成功: 如果提示信息为: 错误使用mbuild(line 164) Unable to complete successfully. 未找到支持的编译器或SDK。您可以安装免费提供的MinGW-w64 C/C+
阅读全文