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

相关文章

使用Python删除Excel中的行列和单元格示例详解

《使用Python删除Excel中的行列和单元格示例详解》在处理Excel数据时,删除不需要的行、列或单元格是一项常见且必要的操作,本文将使用Python脚本实现对Excel表格的高效自动化处理,感兴... 目录开发环境准备使用 python 删除 Excphpel 表格中的行删除特定行删除空白行删除含指定

深入理解Go语言中二维切片的使用

《深入理解Go语言中二维切片的使用》本文深入讲解了Go语言中二维切片的概念与应用,用于表示矩阵、表格等二维数据结构,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习吧... 目录引言二维切片的基本概念定义创建二维切片二维切片的操作访问元素修改元素遍历二维切片二维切片的动态调整追加行动态

prometheus如何使用pushgateway监控网路丢包

《prometheus如何使用pushgateway监控网路丢包》:本文主要介绍prometheus如何使用pushgateway监控网路丢包问题,具有很好的参考价值,希望对大家有所帮助,如有错误... 目录监控网路丢包脚本数据图表总结监控网路丢包脚本[root@gtcq-gt-monitor-prome

Python通用唯一标识符模块uuid使用案例详解

《Python通用唯一标识符模块uuid使用案例详解》Pythonuuid模块用于生成128位全局唯一标识符,支持UUID1-5版本,适用于分布式系统、数据库主键等场景,需注意隐私、碰撞概率及存储优... 目录简介核心功能1. UUID版本2. UUID属性3. 命名空间使用场景1. 生成唯一标识符2. 数

SpringBoot中如何使用Assert进行断言校验

《SpringBoot中如何使用Assert进行断言校验》Java提供了内置的assert机制,而Spring框架也提供了更强大的Assert工具类来帮助开发者进行参数校验和状态检查,下... 目录前言一、Java 原生assert简介1.1 使用方式1.2 示例代码1.3 优缺点分析二、Spring Fr

Android kotlin中 Channel 和 Flow 的区别和选择使用场景分析

《Androidkotlin中Channel和Flow的区别和选择使用场景分析》Kotlin协程中,Flow是冷数据流,按需触发,适合响应式数据处理;Channel是热数据流,持续发送,支持... 目录一、基本概念界定FlowChannel二、核心特性对比数据生产触发条件生产与消费的关系背压处理机制生命周期

java使用protobuf-maven-plugin的插件编译proto文件详解

《java使用protobuf-maven-plugin的插件编译proto文件详解》:本文主要介绍java使用protobuf-maven-plugin的插件编译proto文件,具有很好的参考价... 目录protobuf文件作为数据传输和存储的协议主要介绍在Java使用maven编译proto文件的插件

Python包管理工具pip的升级指南

《Python包管理工具pip的升级指南》本文全面探讨Python包管理工具pip的升级策略,从基础升级方法到高级技巧,涵盖不同操作系统环境下的最佳实践,我们将深入分析pip的工作原理,介绍多种升级方... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

如何在Ubuntu 24.04上部署Zabbix 7.0对服务器进行监控

《如何在Ubuntu24.04上部署Zabbix7.0对服务器进行监控》在Ubuntu24.04上部署Zabbix7.0监控阿里云ECS服务器,需配置MariaDB数据库、开放10050/1005... 目录软硬件信息部署步骤步骤 1:安装并配置mariadb步骤 2:安装Zabbix 7.0 Server

SpringBoot线程池配置使用示例详解

《SpringBoot线程池配置使用示例详解》SpringBoot集成@Async注解,支持线程池参数配置(核心数、队列容量、拒绝策略等)及生命周期管理,结合监控与任务装饰器,提升异步处理效率与系统... 目录一、核心特性二、添加依赖三、参数详解四、配置线程池五、应用实践代码说明拒绝策略(Rejected