ubuntu
HelloJinYe
生于忧患,死于安乐
展开
-
Ubuntu卸载dpkg安装的软件
我用dpkg安装了dropboxsudo dpkg -i dropbox_2020.03.04_amd64.deb现在想要卸载sudo dpkg --purge dropbox_2020.03.04_amd64.deb这样做不行dpkg: error: you must specify packages by their own names, not by quoting the names of the files they come inType dpkg --help for hel原创 2020-12-28 16:38:10 · 5226 阅读 · 0 评论 -
NVIDIA-SMI has failed because it couldn‘t communicate with the NVIDIA driver
Hello,大家好!有时候ubuntu系统的显卡驱动明明已经装好了,但是输入nvidia-smi,却出现如下提示:NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.解决办法:(1)安装DKMS(Dynamic Kernel ModuleSupport)sudo apt转载 2020-12-07 17:06:15 · 144 阅读 · 0 评论 -
Ubuntu 查看软件包是否安装,定位安装位置等操作
1.查看包是否安装dpkg -s <package-name>或者dpkg-query -l <package-name> # 可以加通配符*2.列出哪些软件包被安装dpkg --get-selections | grep <package-name>*3.列出软件包的位置dpkg -L <package-name>参考https://linux.cn/article-5154-1.html...原创 2020-10-16 11:24:48 · 6893 阅读 · 0 评论 -
/home/jinye/anaconda3/envs/d3feat/lib/libfontconfig.so.1: undefined reference to `FT_Done_MM_Var‘
1.问题ros编译程序的时候遇到了/home/jinye/anaconda3/envs/d3feat/lib/libfontconfig.so.1: undefined reference to `FT_Done_MM_Var'因为conda的虚拟环境中的动态库与系统下的版本不一样2.解决办法将conda虚拟环境中的库链接到系统库sudo rm /home/jinye/anaconda3/envs/d3feat/lib/libfontconfig.so.1sudo ln -s /lib/x8原创 2020-07-18 15:04:21 · 818 阅读 · 1 评论 -
ubuntu16.04安装gcc g++7.5.0 添加版本优先级及各个版本的切换
环境 ubuntu16.041.安装gcc7.3.0 g++7.3.0sudo ppa-purge ppa:jonathonf/gcc-7.3sudo add-apt-repository ppa:ubuntu-toolchain-r/testsudo apt-get updatesudo apt-get install gcc-7sudo apt-get install g++-7这里其实有一个问题,我指定的是7.3版本的,安装的却是7.5的,不过问题不大.2.添加版本及优先级2.1g原创 2020-07-17 11:39:16 · 4060 阅读 · 0 评论 -
ubuntu ~/.bashrc和/etc/profile的区别
ubuntu下有两个跟环境变量相关的文件一个在: ~/.bashrc, 另一个在 /etc/profilebashrc是用户级环境,profile是系统级的环境原创 2020-07-06 15:56:33 · 228 阅读 · 0 评论 -
ubuntu16.04 qt安装ros插件
环境:ubuntu16.04重装了系统后,需要重新用到ros和qt,这次不自己装qt了,安装ros插件的过程中,会自己安装一个qtcreator5.9sudo add-apt-repository ppa:levi-armstrong/qt-libraries-xenial sudo add-apt-repository ppa:levi-armstrong/ppa sudo apt-get update && sudo apt install qt59creator sudo a原创 2020-07-06 09:26:37 · 598 阅读 · 0 评论 -
ubuntu16.04 fcitx 安装搜狗输入法
在ibus中添加Chinese是非必要的,直接安装fcitx和sogou拼音即可。在语言设置中找不到fcitx,需要安装sudo apt-get install fcitx-table-wbpy参考https://blog.csdn.net/singleyellow/article/details/77448246原创 2020-07-05 21:16:56 · 603 阅读 · 0 评论 -
ubuntu NVIDIA-SMI has failed because it couldn‘t communicate with the NVIDIA driver
环境 ubuntu16.04nvidia-smi突然找不到显卡驱动了。进入BIOS关闭Secure Boot原创 2020-07-05 11:02:34 · 167 阅读 · 0 评论 -
ubuntu16.04安装nvidia显卡驱动过程
环境 ubuntu16.041.卸载可能存在的旧版本 nvidia 驱动sudo apt-get remove --purge nvidia*2.禁用 nouveausudo gedit /etc/modprobe.d/blacklist.conf 在最后一行添加:blacklist nouveau更新系统sudo update-initramfs -u重启之后执行lsmod | grep nouveau3.安装驱动关闭图形界面sudo service lightdm st原创 2020-07-04 22:28:02 · 298 阅读 · 0 评论 -
安装ubuntu系统时卡在启动界面
系统: ubuntu16.04安装ubuntu系统是卡在启动界面,像下图这样子,logo下面的小圆点也不动.选中install ubuntu选项,按e,将倒数第二行中的“quiet splash —”改为“nomodeset”,在按F10保存,就可以进入安装界面了....原创 2020-07-04 19:03:15 · 7552 阅读 · 0 评论 -
ubuntu删除内核及禁止自动更新内核
1.查看所有的内核dpkg --get-selections|grep linux2.删除内核sudo apt-get purge linux-image-4.15.0-72-genericsudo apt-get purge linux-headers-4.15.0-72(这个会自动把linux-headers-4.15.0-72-generic删除)3.如果你删除的是最新的内核的话,会让你装一个更新的The following packages will be REMOVED: li原创 2020-06-16 15:02:01 · 1828 阅读 · 0 评论 -
ubuntu卸载WPS
ubuntu卸载WPSsudo apt-get purge wps-office原创 2020-06-14 18:54:47 · 4641 阅读 · 0 评论 -
ubuntu查看内存使用情况
单独查看内存使用情况free -mfree默认输出的单位是kb,-m表示以M为单位。查看CPU内存使用情况top查看GPU内存使用情况nvidia-smi原创 2019-11-24 15:14:14 · 13519 阅读 · 0 评论 -
ubuntu内核的操作
修改配置文件/etc/apt/apt.conf.d/10periodic 然后0是关闭,将所有值改为0原创 2019-11-23 13:10:35 · 151 阅读 · 0 评论 -
ubuntu屏幕截图
Print Screen #截取整个桌面Alt + Print Screen #截取选中的窗口Shift + Print Screen #自由选区默认的快捷键设置如下:原创 2019-11-23 13:08:27 · 174 阅读 · 0 评论