
Linux
carol_zyy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Switch between Intel & Nvidia on Ubuntu
1 useful linkhttps://www.linuxbabe.com/desktop-linux/switch-intel-nvidia-graphics-card-ubuntulspci -k | grep -A 2 -i ''VGA''sudo ubuntu-drivers devices choose the recommended onesudo apt install nvidia-diver-510 tape the recommended oneif there is原创 2022-04-22 20:32:46 · 244 阅读 · 0 评论 -
Could NOT find SDL (missing: SDL_LIBRARY SDL_INCLUDE_DIR)
sudo apt-get install libsdl-image1.2-devsudo apt-get install libsdl-dev.原创 2022-04-10 21:16:00 · 3217 阅读 · 0 评论 -
[rospack] Error: no such package beginner_tutorials
[rospack] Error: no such package beginner_tutorials过程中发现这个错误,倒入了路径还是无法解决,查看workspace发现了beginner_tutorials文件,所以问题在执行catkin_create_pkg beginner_tutorials std_msgs rospy roscpp的时候没有cd到src里面。所以如果发现这个问题可以查看一下beginner_tutorials的位置。解决方法:把beginner_tutorials删原创 2022-03-18 15:59:09 · 682 阅读 · 0 评论 -
创建ros工作空间
https://www.cnblogs.com/huangjianxin/p/6347416.html3,4不需要最后结果:carol@carol-ubuntu:~/ros_tutorial$ echo $ROS_PACKAGE_PATH/home/carol/ros_tutorial/src:/opt/ros/melodic/share原创 2022-03-18 15:11:57 · 175 阅读 · 0 评论 -
Ubuntu踩坑日记--ros安装【1】
Ros 安装踩的坑1rosdep问题原因是资源无法下载,可以自己直接下载倒入也可以参考https://mp.weixin.qq.com/s/VGs8oWdhHH6XsHcx21lN4Q2找不到command1 .在/etc/profile里面加入命令的bin文件2.find -name command 找到命令位置3 pip show package 找到安装包位置3 sudo command找不到命令1 在/etc/sudoers 中加入path...原创 2022-03-18 14:33:16 · 142 阅读 · 0 评论 -
Vim 基本命令
Vim基本命令1.vim filename 用vim打开filename文件2. i 插入命令按一下i键,下端显示 --INSERT–3. esc 退出编辑模式(配合i使用)4. :wq 保存文件并退出5. :q! 强制退出,不保存6. :set number 或者 :set nu 显示行号7. :set nonumber 或者 :set nonu ...原创 2019-05-21 14:36:04 · 161 阅读 · 0 评论 -
Linux基本命令操作
Linux基本命令操作1.mv a b 文件重命名2.ls -a 查看文件列表原创 2019-05-21 21:24:46 · 111 阅读 · 0 评论