
Ubuntu
cherish_myleaf
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
英文版ubuntu16.04安装、添加中文输入法
英文版ubuntu16.04安装完后,并没有中文输入功能。下面安装ibus pinyin输入法1.Chinese语言包的安装 首先要给Ubuntu16.04安装Chinese语言包支持通过system setting---->language support打开如下:点击install、remove languages 选择Chinese,然后安装i原创 2017-12-11 14:40:44 · 17040 阅读 · 7 评论 -
常用命令简记
1. 将文件拷贝的别的电脑:scp -r ./file_name ip地址:/file_dirscp -r ./file_name holo@192.168.3.77:/home/data/src原创 2019-09-12 23:48:16 · 200 阅读 · 0 评论 -
ubuntu 18.04 安装搜狗输入法 fcitx无法启动
ubuntu 18.04 安装搜狗输入法 fcitx无法启动fcitx configuation 一片空白,没有输入法解决办法很暴力将.config/fcitx目录删除就一切搞定。原创 2019-07-17 23:33:28 · 1764 阅读 · 0 评论 -
ubuntu install matlab problem
Could not complete Activation because the License File could not be written to disk. You might not have write permission on the License File or the folder. /home/linyulin/licenses/license_ubuntu_1610...原创 2019-07-17 19:34:48 · 288 阅读 · 0 评论 -
在ubuntu中使用goodFesturesToTrack函数提取特征点
1. 在ubuntu下CMakeLists.txtcmake_minimum_required( VERSION 2.8 )project ( feature )set( CMAKE_CXX_COMPILER "g++" )set( CMAKE_BUILD_TYPE "Release" )set( CMAKE_CXX_FLAGS "-std=c++11 -march=native ...原创 2018-09-23 11:05:33 · 386 阅读 · 0 评论 -
ubuntu中查看大的文件
Ubuntu有时候使用的过程中内存不够了,导致一些程序无法运行报错,如何快速查看大文件并删除掉。Ubuntu中查看大于1G的文件:sudo find / -type f -size +1024000k -exec du -h {} \;...原创 2018-05-24 20:21:50 · 5844 阅读 · 0 评论 -
Ubuntu相对路径和绝对路径
ubuntu绝对路径:例如在目录/home/lzj/temp下有一个文件filename.txt那么filename.txt文件的绝对路径就是/home/lzj/tempubuntu相对路径:如果你当前路径是在/home/lzj下,那么filename.txt文件的相对路径就是./temp注:ubuntu中更目录”/“;当前目录“./”;当前目录的上一级目录(如果有...转载 2018-05-28 19:51:59 · 10797 阅读 · 0 评论 -
Ubuntu16.04中sublime下不能使用搜狗输入法
解决Ubuntu16.04中sublime下不能使用搜狗输入发的问题使用方法更新并升级系统为最新(较新的系统会解决很多可能出现的问题)sudo apt-get update && sudo apt-get upgrade克隆项目到本地 :git clone https://github.com/lyfeyaj/sublime-text-imfix.git运行脚本 :cd subli...原创 2018-04-24 15:11:57 · 945 阅读 · 0 评论 -
ubuntu16.04下安装boost库
1.在boost官网上(www.boost.org)下载最新版本这里,下载unix boost_1_67_0.tar.bz2.解压到指定位置(最好在【/home】目录下,为了方便不同用户使用。2.进入此目录下右键打开终端,配置环境sudo ./bootstrap.sh 3.运行之前配置环境后得到的文件,使用./命令./bjam4.检验安装成功否:在linux下任意目录下创建test.cpp#inc...原创 2018-04-22 10:49:22 · 4207 阅读 · 1 评论 -
Unable to install "Visual Studio Code": snap "code" has "install-snap" change in progress
在ubuntu软件商店安装vscode报错:Unable to install "Visual Studio Code": snap "code" has "install-snap" change in progress原因:软件之前安装了一次,只是没安装完。解决方法:1、查看安装情况snap changesID=3是我之前安装失败的。2、终止,重新安装sudo ...原创 2019-09-21 14:01:26 · 8768 阅读 · 2 评论