2019年3月11日
摘要:
echo $ROS_PACKAGE_PATH
阅读全文
posted @ 2019-03-11 18:37
一杯明月
阅读(158)
推荐(0)
摘要:
直接上代码: #include<iostream> #include<string> #include<vector> using namespace std; typedef int(*PF)(int *, int); typedef bool (*cmpFcn)(const string&, c
阅读全文
posted @ 2019-03-11 16:15
一杯明月
阅读(202)
推荐(0)
摘要:
在 Ubuntu 中,删除文件夹可以使用以下两种常用命令: 删除空文件夹: 使用 rmdir 文件夹名 命令。如果该文件夹不为空,则无法删除。 删除非空文件夹: 使用 rm -r 文件夹名 命令,其中 -r 表示递归删除文件夹及其内容。 如果想强制删除(不提示确认),可以加上 -f 参数,即使用 r
阅读全文
posted @ 2019-03-11 09:40
一杯明月
阅读(548)
推荐(0)
2019年3月9日
摘要:
参考:https://www.ncnynl.com/archives/201801/2273.html
阅读全文
posted @ 2019-03-09 19:22
一杯明月
阅读(881)
推荐(0)
摘要:
这个也可以参考:https://zhuanlan.zhihu.com/p/150263093 下面的来源是:https://www.jianshu.com/p/faf8bbbdd0f2 必要条件: PC VMware Workstation https://my.vmware.com/cn/web/
阅读全文
posted @ 2019-03-09 13:43
一杯明月
阅读(1790)
推荐(0)
摘要:
参考:https://www.cnblogs.com/ywl925/archive/2013/05/26/3100010.html
阅读全文
posted @ 2019-03-09 12:54
一杯明月
阅读(191)
推荐(0)
2019年3月8日
摘要:
http://mirror.pnl.gov/releases/xenial/ ubuntu16.04下载地址: 中科大源 http://mirrors.ustc.edu.cn/ubuntu-releases/16.04/ 阿里云开源镜像站 http://mirrors.aliyun.com/ubun
阅读全文
posted @ 2019-03-08 14:27
一杯明月
阅读(386)
推荐(0)
2019年3月7日
摘要:
git clone --depth=10 git_仓库_url 意思是获取最近10条提交记录的代码,默认是master分支, 如果想要指定分支,可以结合 -b --single--branch 使用! depth用于指定克隆深度,为1即表示只克隆最近一次commit. 这种方法克隆的项目只包含最近的
阅读全文
posted @ 2019-03-07 22:42
一杯明月
阅读(635)
推荐(0)
摘要:
1.打开一个终端,输入dpkg --list ,按下Enter键,终端输出以下内容,显示的是你电脑上安装的所有软件。 2.在终端中找到你需要卸载的软件的名称,列表是按照首字母排序的。 3.在终端上输入命令sudo apt-get --purge remove 包名(--purge是可选项,写上这个属
阅读全文
posted @ 2019-03-07 22:42
一杯明月
阅读(586)
推荐(0)
摘要:
参考:http://www.cnblogs.com/weizhixiang/p/5804778.html
阅读全文
posted @ 2019-03-07 14:28
一杯明月
阅读(291)
推荐(0)