Ubuntu

Ubuntu 各版本代号简介

寵の児 提交于 2020-12-10 04:56:57
Ubuntu中,每个版本都有一个更为特色的名字,这个名字由一个形容词和一个动物名称组成,并且,形容词和名词的首字母都是一致的。从D版本开始又增加了一个规则,首字母要顺延上个版本,如果当前版本是 D ,下个版本就要以 E 来起头。 Ubuntu历史版本与代号一览: Ubuntu 发布版本的官方名称是 Ubuntu X.YY ,其中 X 表示年份(减去2000),YY 表示发布的月份。 Ubuntu 没有像其它软件一样有 1.0 版本,是因为其第一个版本是发布于 2004 年。所以Ubuntu的生日是10月20日。 版本 别名(codename) 发布日期 4.10 Warty Warthog(长疣的疣猪) 2004年10月20日 5.04 Hoary Hedgehog(灰白的刺猬) 2005年4月8日 5.10 Breezy Badger(活泼的獾) 2005年10月13日 6.06 Dapper Drake(整洁的公鸭) 2006年6月1日(LTS) 6.10 Edgy Eft(急躁的水蜥) 2006年10月6日 7.04 Feisty Fawn(坏脾气的小鹿) 2007年4月19日 7.10 Gutsy Gibbon(勇敢的长臂猿) 2007年10月18日 8.04 Hardy Heron(耐寒的苍鹭) 2008年4月24日(LTS) 8.10 Intrepid Ibex

树莓派3b重新折腾

北慕城南 提交于 2020-12-10 02:17:56
最近把树莓派3b重新折腾起来了,安装了一个ubuntu,装上docker 和docker compose,我测试了一下读写系统盘的SD卡,写入大概15M/s,读取20M/s。读写usb2.0接口上的sd卡速度更慢,写入只有6~7M/s,用来存放生产数据不太乐观,比较合理的是用来做备份,数据放在系统盘的SD卡上。 安装Docker: 当前只能使用snap的方式安装: snap install docker snap install docker-composer snap logs docker snap stop docker snap start docker [解决] snap 安装的 docker 意外关闭导致找不到进程的错误 @todo 来源: oschina 链接: https://my.oschina.net/falcon10086/blog/4783607

关于Ubuntu16.04下安装VMwareTools失败,未发现软件包open-vm-dkms,open-vm-tools问题解决

核能气质少年 提交于 2020-12-09 10:30:11
问题描述 1.某天我在用VMwareTools拖拽文件到主机桌面时,每次复制到一半就卡死了,之后虚拟机卡死,只能重启才行 2.在尝试n种方法无果之后,我决定卸载VMwareTools重新安装,使用共享文件夹方式传输文件 开始重装 看到官方支持的新命令,抛弃以往复杂的安装方式, 只需要一行代码就能搞定 sudo apt-get install open-vm-tools open-vm-tools-desktop open-vm-dkms 在命令行输入回车之后 E: 未发现软件包open-vm-dkms E: 无法定位软件包 open-vm-dkms 然后查百度,输入 sudo apt-get update 然而并没有什么X用!!! 报错显示 W: Some index files failed to download. They have been ignored, or old ones used instead. 百度了很多方法最后我决定换 阿里云的源!! 首先将/var/lib/apt/lists 的文件备份一下 mkdir /var/lib/apt/list cp -r /var/lib/apt/lists/* /var/lib/apt/list 然后删除/var/lib/apt/lists/文件夹下所有的文件 sudo rm -rf /var/lib/apt/lists/

矩池云上如何安装nvcc

微笑、不失礼 提交于 2020-12-09 00:41:49
若您想要使用 nvcc,但是所选的镜像中没有预装 nvcc,可按照如下操作自行安装。 1、检查系统版本 source /etc/os-release && echo $VERSION_ID 2、导入apt仓库和其GPG key # 第一步若输出 16.04 curl -fsSL https://mirrors.aliyun.com/nvidia-cuda/ubuntu1604/x86_64/7fa2af80.pub | apt-key add - echo "deb https://mirrors.aliyun.com/nvidia-cuda/ubuntu1604/x86_64/ /" > /etc/apt/sources.list.d/cuda.list # 第一步若输出 18.04 curl -fsSL https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/7fa2af80.pub | apt-key add - echo "deb https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/ /" > /etc/apt/sources.list.d/cuda.list 3、安装所需版本的 nvcc apt update # "10-0" 表示安装CUDA10

Ubuntu20.04 构建并运行ONOS

▼魔方 西西 提交于 2020-12-08 20:00:52
一、安装 Bazel 在 Ubuntu 上安装Bazel有以下几种方式: 通过 npm 安装 npm install -g @bazel/bazelisk 这种方式需要安装 nodejs ,命令为 sudo apt install nodejs 使用 Bazel 的 apt 仓库 步骤1:将 Bazel 发行版 URI 添加为包源 sudo apt install curl gnupg curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg sudo mv bazel.gpg /etc/apt/trusted.gpg.d/ echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list 步骤2:安装和更新Bazel sudo apt update && sudo apt install bazel 二、获取ONOS源码 确保已安装git,然后创建源存储库的本地克隆: git clone https://gerrit.onosproject.org/onos 如果下载比较慢,可以通过gitee

Install rgdal library in rstudio - GDALAllRegister not found in libgdal

浪子不回头ぞ 提交于 2020-12-08 15:41:07
问题 I'm trying to install rgdal library in Rstudio (0.97.332), using Ubuntu 12.10 (quantal) and R 2.15.1 (Roasted Marshmallows). I have the following installed regarding gdal in Ubuntu: $ apt-cache search gdal dans-gdal-scripts - GDAL contributed tools by Geographic Information Network of Alaska gdal-bin - Geospatial Data Abstraction Library - Utility programs libgdal-dev - Geospatial Data Abstraction Library - Development files libgdal-doc - Documentation for the Geospatial Data Abstraction

Install rgdal library in rstudio - GDALAllRegister not found in libgdal

懵懂的女人 提交于 2020-12-08 15:31:23
问题 I'm trying to install rgdal library in Rstudio (0.97.332), using Ubuntu 12.10 (quantal) and R 2.15.1 (Roasted Marshmallows). I have the following installed regarding gdal in Ubuntu: $ apt-cache search gdal dans-gdal-scripts - GDAL contributed tools by Geographic Information Network of Alaska gdal-bin - Geospatial Data Abstraction Library - Utility programs libgdal-dev - Geospatial Data Abstraction Library - Development files libgdal-doc - Documentation for the Geospatial Data Abstraction

Install rgdal library in rstudio - GDALAllRegister not found in libgdal

倖福魔咒の 提交于 2020-12-08 15:30:33
问题 I'm trying to install rgdal library in Rstudio (0.97.332), using Ubuntu 12.10 (quantal) and R 2.15.1 (Roasted Marshmallows). I have the following installed regarding gdal in Ubuntu: $ apt-cache search gdal dans-gdal-scripts - GDAL contributed tools by Geographic Information Network of Alaska gdal-bin - Geospatial Data Abstraction Library - Utility programs libgdal-dev - Geospatial Data Abstraction Library - Development files libgdal-doc - Documentation for the Geospatial Data Abstraction

如何在 LibreOffice 中完全启用深色模式 | Linux 中国

喜你入骨 提交于 2020-12-08 14:05:56
如果要让 LibreOffice 进入完全深色模式,只需更改一些设置。让我告诉你如何做。 来源: https:// linux.cn/article-12893- 1.html 作者:Dimitrios Savvopoulos 译者:geekpi (本文字数:1413,阅读时长大约:2 分钟) LibreOffice 是一款自由开源的跨平台办公生产力软件。如果你没有充分利用它,那么必须看下 LibreOffice 小技巧 。 甚至在非编程人员中,深色主题也越来越受欢迎。它减轻了眼睛的压力,特别适合长时间使用屏幕。有人认为,这使文本看起来清晰明了,有助于提高生产率。 如今,某些 Linux 发行版例如 Ubuntu 带有深色模式 ,使你的系统具有更暗的色彩。当你打开 深色模式(dark mode) 时,某些应用将自动切换到深色模式。 LibreOffice 也会这样,但你编辑的主区域除外: LibreOffice semi dark mode matching with the system theme 你可以更改它。如果要让 LibreOffice 进入完全深色模式,只需更改一些设置。让我告诉你如何做。 如何在 LibreOffice 中完全启用深色模式 如前所述,你需要先启用系统范围的深色模式。这样可以确保窗口颜色(或标题栏)与应用内深色完全融合。 接下来,打开套件中的 任意

Playing sound in pyo and python

折月煮酒 提交于 2020-12-08 08:33:07
问题 I am trying out the pyo for python. I installed the pyo for ubuntu using these commands from the homepage: sudo apt-get install libjack-jackd2-dev libportmidi-dev portaudio19-dev liblo-dev sudo apt-get install libsndfile-dev python-dev python-tk sudo apt-get install python-imaging-tk python-wxgtk3.0 git clone https://github.com/belangeo/pyo.git cd pyo sudo python setup.py install --install-layout=deb --use-jack --use-double Howerver when i try the very first example to Play a sound: >>> from