dapper-net怎样用_使用apt-get将Ubuntu从Dapper升级到Edgy

2023-11-05 14:10

本文主要是介绍dapper-net怎样用_使用apt-get将Ubuntu从Dapper升级到Edgy,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

dapper-net怎样用

dapper-net怎样用

Important Note: According to the Ubuntu Help:

重要说明 :根据Ubuntu帮助:

Please note – this method is much less reliable. If you use this method, you MUST be prepared to fix problems manually, such as packages being unexpectedly removed. Using Update Manager is likely to be much less problematic.

请注意–此方法可靠性较差。 如果使用此方法,则必须准备好手动解决问题,例如意外删除软件包。 使用Update Manager可能会少很多问题。

Before you read this HowTo, you may want to consider installing using the GUI with Update Manager, which is probably a simpler method for regular users.

在阅读本HowTo之前,您可能需要考虑使用带有Update Manager的GUI进行安装,这对于普通用户而言可能是一种更简单的方法。

If you are a power user, then let’s move on. First, we’ll need to install ubuntu-desktop if it’s not already installed because otherwise there will be a dependencies problem.

如果您是高级用户,那就继续吧。 首先,如果尚未安装ubuntu-desktop,我们将需要安装它,否则会出现依赖关系问题。

sudo apt-get install ubuntu-desktop

sudo apt-get install ubuntu-desktop

Now we’ll need to run a command that will change all the occurrences of dapper to edgy in our sources.list file. If you aren’t familiar, sources.list is the file that points to your list of possible upgrades and packages. For windows users, you can think of it as the file that points to Windows Update. Of course, if you are a windows user, you should really install with the Update Manager utility linked above.

现在,我们需要运行一个命令,将我们的sources.list文件中所有出现的dapper更改为edgy。 如果您不熟悉,sources.list是指向您可能的升级和软件包列表的文件。 对于Windows用户,您可以将其视为指向Windows Update的文件。 当然,如果您是Windows用户,则应该使用上面链接的Update Manager实用程序进行安装。

sudo sed -e ‘s/\sdapper/ edgy/g’ -i /etc/apt/sources.list

sudo sed -e's / \ sdapper / edgy / g'-i /etc/apt/sources.list

Now we’ll perform the actual upgrades:

现在,我们将执行实际的升级:

sudo apt-get update && sudo apt-get dist-upgrade

sudo apt-get更新&& sudo apt-get dist-upgrade

The && part of the command means that the second command will run after the first as long as the first command completes successfully.

该命令的&&部分表示只要第一个命令成功完成,第二个命令就会在第一个命令之后运行。

Now we’ll finish up the upgrade with a few more commands:

现在,我们将使用更多命令完成升级:

sudo apt-get -f install

sudo apt-get -f安装

sudo dpkg –configure -a

sudo dpkg –配置-a

Note that the –configure is actually two dashes. For some reason WordPress makes it look like a single dash. Reboot, and you are all done!

请注意,–configure实际上是两个破折号。 由于某些原因,WordPress使它看起来像一个破折号。 重新启动,一切就完成了!

Note: I’ve seen some notes that this upgrade doesn’t work very well for people running Ubuntu as a Guest in VMWare with VMWare tools installed. I tested it out and came to the same conclusion, no fix as of yet.

注意:我已经注意到一些注意事项,对于在安装了VMWare工具的VMWare中以Guest虚拟机身份运行Ubuntu的用户,此升级效果不佳。 我对其进行了测试,并得出了相同的结论,但目前尚未解决。

Update:

更新:

If upgrading gives you the error message “failed to load module GLcore”, you will want to run these commands. Thanks for this tip to Biogeek in the comments below.

如果升级后出现错误消息“无法加载模块GLcore”,则您将要运行这些命令。 感谢您在下面的评论中给Biogeek的技巧。

apt-get install xfs apt-get install –reinstall xfonts-base

apt-get install xfs apt-get install –重新安装xfonts-base

翻译自: https://www.howtogeek.com/howto/ubuntu/upgrading-ubuntu-from-dapper-to-edgy-with-apt-get/

dapper-net怎样用

这篇关于dapper-net怎样用_使用apt-get将Ubuntu从Dapper升级到Edgy的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/350346

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti