随笔分类 -  UBUNTU

摘要:限制进程CPU占用率 sudo cpulimit -p 1780(进程号) -l 200 脱离终端后台运行程序 nohup roslaunch your_package_name your_launch_file.launch & 查看python3相关进程 sudo ps aux | grep p 阅读全文
posted @ 2024-09-09 19:09 penuel 阅读(48) 评论(0) 推荐(0)
摘要:https://www.jianshu.com/p/38792751f755 阅读全文
posted @ 2024-06-13 09:55 penuel 阅读(39) 评论(0) 推荐(0)
摘要:查看磁盘使用率 df -h 查看当前目录下每个文件夹的大小 du -h -d1 查看root目录下每个文件夹的大小 du -h -d1 /root 阅读全文
posted @ 2024-01-31 17:13 penuel 阅读(50) 评论(0) 推荐(0)
摘要:1. 扫描可用的wifi网络 nmcli device wifi rescan nmcli device wifi list 2. 连接到wifi网络 nmcli device wifi connect "wifi_name" password "password" ifname 阅读全文
posted @ 2024-01-29 10:32 penuel 阅读(433) 评论(0) 推荐(1)
摘要:#####1. 去sudo ``` sudo usermod -aG docker ${USER} sudo gpasswd -a ${USER} docker newgrp docker sudo service docker restart ``` #####2. 创建容器 使用以下指令创建,同 阅读全文
posted @ 2022-12-05 11:33 penuel 阅读(39) 评论(0) 推荐(0)
摘要:sudo add-apt-repository --remove ppa:nemh/systemback sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 382003C2C8B7B4AB813E915B14E4942973C 阅读全文
posted @ 2022-11-14 16:28 penuel 阅读(1367) 评论(0) 推荐(0)
摘要:sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update sudo apt-get install -y boot-repair && boot-repair 阅读全文
posted @ 2022-10-24 10:02 penuel 阅读(63) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/u013066730/article/details/122948011 图形化: https://blog.csdn.net/liyunxin_c_language/article/details/114107994 1. windows打开XLaunc 阅读全文
posted @ 2022-10-22 18:47 penuel 阅读(254) 评论(0) 推荐(0)
摘要:https://developer.nvidia.com/cuda-toolkit-archive 使用deb安装的话,有时会报错: dpkg: 处理软件包 nvidia-driver-450 (--configure)时出错: 依赖关系问题 - 仍未被配置 dpkg: 依赖关系问题使得 cuda- 阅读全文
posted @ 2022-09-28 14:26 penuel 阅读(1003) 评论(0) 推荐(0)
摘要:xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ PS/2 Generic Mouse id=11 [sla 阅读全文
posted @ 2022-09-20 18:56 penuel 阅读(117) 评论(0) 推荐(0)
摘要:1.创建docker docker run -itd -p 8089:8089 --name (容器名) 镜像名:TAG 2.登录报错 Error saving credentials: error storing credentials - err: exit status 1, out: No 阅读全文
posted @ 2022-03-06 13:13 penuel 阅读(53) 评论(0) 推荐(0)
摘要:自动挂载 修改/etc/fstab,加入如下内容 .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0 手动挂载 修改/etc/fstab,加入如下内容 sudo vmhgfs-fuse .host:/ /mnt/hgfs -o al 阅读全文
posted @ 2022-02-22 10:43 penuel 阅读(503) 评论(0) 推荐(0)
摘要:aria2 是 Linux 下一个不错的高速下载工具 。由于它具有分段下载引擎,所以支持从多个地址或者从一个地址的多个连接来下载同一个文件。这样自然就大大加快了文件的下载速 度。aria2 也具有断点续传功能,这使你随时能够恢复已经中断的文件下载。除了支持一般的 http(s) 和 ftp 协议外, 阅读全文
posted @ 2021-02-15 15:19 penuel 阅读(1690) 评论(0) 推荐(0)
摘要:Unknown media type in type 'chemical/......我找到了文件/usr/share/mime/packages/chemical-mime-data.xml。 在文件上使用cat向我显示该包是相同的chemical-mime-data V 0.94 所以我跑了: 阅读全文
posted @ 2020-11-26 14:52 penuel 阅读(410) 评论(0) 推荐(0)
摘要:1.安装Systemback: sudo add-apt-repository ppa:nemh/systemback sudo apt-get update sudo apt-get install systemback unionfs-fuse 勾选左侧的 include the user da 阅读全文
posted @ 2020-07-05 10:46 penuel 阅读(964) 评论(0) 推荐(0)
摘要:https://www.jetbrains.com/help/clion/ros-setup-tutorial.html 阅读全文
posted @ 2020-06-15 11:00 penuel 阅读(251) 评论(0) 推荐(0)
摘要:工作空间名为catkin_cart 1.安装步骤: https://google-cartographer-ros.readthedocs.io/en/latest/compilation.html 2.按照他的步骤来,会在最后编译的时候出错 3.解决思路。 删除掉之前安装的cere和protobu 阅读全文
posted @ 2019-08-30 11:42 penuel 阅读(815) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_40641902/article/details/79607225 1.直接下载 Understand-3.1.670-Linux-64bit.tgz文件:https://pan.baidu.com/s/1i52nrut(感谢博主提供资源!) 阅读全文
posted @ 2019-08-13 10:40 penuel 阅读(2241) 评论(0) 推荐(0)
摘要:https://github.com/tonyrobotics/RoboWare/ https://blog.csdn.net/lixujie666/article/details/80139112 roboware-studio 打开软件 阅读全文
posted @ 2019-08-12 16:17 penuel 阅读(1469) 评论(0) 推荐(0)
摘要:1.卸载 sudo apt-get remove libprotobuf-dev which protoc 然后删除路径即可 2.安装 sudo apt-get install autoconf automake libtool curl make g++ unzip git clone -b v3 阅读全文
posted @ 2019-08-11 11:39 penuel 阅读(6278) 评论(0) 推荐(0)