当前位置:首页 > 编程开发

How do I update Ubuntu Linux softwares?

webgou16年前 (2010-08-04)编程开发129

Q. I have latest version of Ubuntu Linux. How do I update Ubuntu Linux for security and application fix or upgrades?

A. Ubuntu Linux can be upgraded using GUI tools or using traditional command line tools.

Using apt-get command line tool

apt-get is the command-line tool for handling packages. You can use following command options:

=> apt-get update : Update is used to resynchronize the package index files from their sources via Internet.

=> apt-get upgrade : Upgrade is used to install the newest versions of all packages currently installed on the system

=> apt-get install package-name : install is followed by one or more packages desired for installation. If package is already installed it will try to update to latest version.

a) Open terminal and type following two commands (Application > Accessories > Terminal):

b) Get update software list, enter:
$ sudo apt-get update

c) Update software(s) i.e. apply updates:
$ sudo apt-get upgrade

d) Please note that above two command will fetch files from Internet. The location of update pages is specified in /etc/apt/sources.list (repositories). You need NOT to make any changes to this file until and unless you need extra repositories for your setup.

e) To upgrade individual software called foo type command:
$ sudo apt-get install foo

Using Ubuntu Update Manager tool

This is GUI tool. It works like Microsoft /Red Hat update manager i.e. you will see a little icon in the kicker bar/taskbar when there are updates. It will only appear when new upgrades are available. All you have to do is click on it and follow the online instructions.

You can also star GUI tool by Clicking System > Administration > Update Manager

扫描二维码推送至手机访问。

版权声明:本文由知了博客发布,如需转载请注明出处。

本文链接:https://www.webgou.info/?id=213

标签: ubuntu
分享给朋友:

“How do I update Ubuntu Linux softwares?” 的相关文章

android developer 打不开 解决办法

android 官网 目前developers版块无法访问。可以直接访问http://androidappdocs.appspot.com/index.html,或者在链接后面加上“.nyud.net”就可以访问了 http://developer.android.…

跟踪wince遇到的问题

今天,测试报告的几个问题,非常的诡异,把 问题记录下来. 1.wince直接运行explorer.exe,模拟导航,出现黑屏 2.运行我们的应用程序,模拟导航,出现内存只剩下2M. 3.出现读取注册表出错,通过在数字电视下,打大灯,旋音量很容易. 第一个问题,硬件工程师,用电压表量电压正常,…

The Basics of Protocols and Delegates

Apple offers a good overview of working with protocols in their Objective-C Programming Reference. However, sometimes a simple working example can go…

Android界面互调具体应用方式解析

在Android操作系统中,对于界面的一些操作是用户需要掌握的最基础的知识点。我们可以通过这篇文章对Android界面互调的方法介绍,来初步了解一下再Android系统中对于界面的一些应用技巧。...…

static_cast、dynamic_cast、reinterpret_cast、和const_cast

关于强制类型转换的问题,很多书都讨论过,写的最详细的是C++ 之父的《C++ 的设计和演化》。最好的解决方法就是不要使用C风格的强制类型转换,而是使用标准C++的类型转换符:static_cast, dynamic_cast。标准C++中有四个类型转换符:static_cast dynamic_ca…

大端小端(Big- Endian和Little-Endian)

字节序(Endian),大端(Big-Endian),小端(Little-Endian)…

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。