Part of the appeal of Ubuntu is its six-month release cycle. Every six months a new version of the free operating system is released into the wild, complete with updates for all of your favorite software. This is great, but can be a trifle disappointing from time to time. For example, if a new version of your favorite software comes out you may have to wait until the next version of Ubuntu comes out to try it.

The solution to this is the PPA. This is a repository, provided by Canonical (the company behind Ubuntu), that allows developers and enthusiasts to offer up-to-date versions of software to all Ubuntu users. Originally PPAs were limited to programmers and testers, but Canonicalopened PPAs to everyone in late 2007.

I constantly mention PPAs in my Ubuntu articles because for the newest software, installing a PPA is the simplest way to get everything working. But what is a PPA and why would you want to use one?

What is PPA?

Those new to Ubuntu, and to Linux in general, find themselves lost in an array of initial-isms and acronyms that make little sense to the first-time user. This can make Ubuntu feel like a very unfriendly place, but don’t panic: it’s all easy to understand.

Installing software on Ubuntu is different than on Mac or Windows; some might saybetter. Rather than going to the web to download a package, it’s usually a better bet to check the Ubuntu Software Center for any program you might want to install. This software is stored in a repository, which is a collection of software Ubuntu can download quickly and easily.

Repositories are a more trustworthy way to download software than grabbing EXE files from random websites. Since everything in the default repositories is reviewed by the Ubuntu team before it goes out, you know everything there is completely safe for your system.

That doesn’t mean there aren’t downsides, though. Users typically have to wait for a new version of Ubuntu to try out new software. So if Firefox updates, you might not get to play with the new version until the next Ubuntu release comes out.

This is where PPAs come in. A PPA, or Personal Package Archive, is a collection of software not included in Ubuntu by default. Typically these repositories focus on a single program, but they can include more depending on the person maintaining them. A PPA might focus on an unreleased piece of software, such as Hotot, the best Linux Twitter client out there. It also might include updates for software already in Ubuntu, such as Firefox.

Whatever the case, PPAs provide updates for your favorite software at a much quicker rate than Ubuntu itself. This is great, because you can decide which software you want to keep up to date and leave the rest to Ubuntu.

Once you install new software, updates will come to you through the Ubuntu Update Manager:

This is fantastic, because it means all of your updates come through a single interface. No Windows-style popups from every single program you’ve installed!

How to add PPA?

So you’ve found a program you want to install, but the “Download” link leads you to a confusing site you don’t understand:

Don’t panic; adding a PPA is easy, but you will need to use the command line a little.

Find the terminal in “Applications”, “Accessories”, “Terminal“. Now you just need to type “sudo add-apt-repository” followed by the name of your PPA. Then all you need to do is update your package manager and install the program you’re looking for. For example, here are the steps required to install Hotot:

sudo add-apt-repository ppa:hotot-team
sudo apt-get update
sudo apt-get install hotot

That’s it; you’re done. You can now enjoy your new software, or the latest version of an already-loved piece of software.

Ubuntu’s six-month release cycle isn’t perfect, but I personally perfer it to Windows-style releases. With PPAs Ubuntu users can have access to bleeding-edge software. Adding too many PPAs may result in an unstable system, but one or two usually doesn’t hurt anything.

What are your favorite PPAs? Share them in the comment below. Also feel free to discuss the merits of Ubuntu’s release cycle, or to troll me for not writing about Fedora or Linux Mint more often.

See Also:

http://www.makeuseof.com/tag/ubuntu-ppa-technology-explained/

  

What is the PPA and How to do with it ?的更多相关文章

  1. Ubuntu install codeblocks by ppa

    sudo add-apt-repository ppa:damien-moore/codeblocks-stable sudo apt-get update sudo apt-get install ...

  2. deepin 15.3添加PPA源 安装php5.6

    想要在deepin 15.3上安装PHP5.6,我们需要手动添加源. 在https://launchpad.net/+search?field.text=php上可以通过搜索找到你想要的软件源, PP ...

  3. How to Install JAVA 8 (JDK/JRE 8u111) on Debian 8 & 7 via PPA

    Oracle JAVA 8 Stable release has been released on Mar,18 2014 and available to download and install. ...

  4. Ubuntu 之 Personal Package Archive (PPA)

    How do I use software from a PPA? To start installing and using software from a Personal Package Arc ...

  5. 使用PPA在Ubuntu上安装php5.4~5.6,7

    使用PPA在Ubuntu上安装php5.4~5.6,7 sudo apt-get install software-properties-common sudo add-apt-repository ...

  6. ppa安装php版本

    如果你想安装PHP的特定版本,那么这篇文章可以帮助你.这篇文章将帮助您安装PHP 5.4和PHP 5.5 PHP 5.6,通过使用PPA在Ubuntu 15.10 LTS,14.04或12.04 LT ...

  7. [转]How do I use software from a PPA

    [转]How do I use software from a PPA? https://launchpad.net/~mc3man/+archive/ubuntu/trusty-media To s ...

  8. Debian 中添加ppa

    在Debian8中默认没有"apt-add-repository"命令,所有也就没法安装ppa. 怎么破? sudo apt-get install software-proper ...

  9. 使用PPA在ubuntu上安装emacs

    使用PPA(Personal Package Archive)在ubuntu上安装emacs 1添加 PPA 到 apt repository 中:   $ sudo add-apt-reposito ...

随机推荐

  1. 用代码来理解 C#委托与事件

    C#中委托是什么?事件是委托吗? 1.委托是讲方法作为参数代入另一个方法中, 委托可以理解为指向一个函数的引用. class Program { public delegate void Delega ...

  2. noi 2728 摘花生

    题目链接: 很像上一题,加上自己本身,选最优值. http://noi.openjudge.cn/ch0206/2728/ http://paste.ubuntu.com/23402493/

  3. 内核编译选配(VMware篇)

    出现这个错误的原因是相应的驱动程序没有编译进内核,所以在内核启动时,不认识分区. 一.磁盘驱动没编译进内核 VMware5.5.3 的磁盘有两种,一种是IDE的,一种是SCSI的:VMware 你在新 ...

  4. 基于cmake编译安装MySQL-5.5

    cmake的重要特性之一是其独立于源码(out-of-source)的编译功能,即编译工作可以在另一个指定的目录中而非源码目录中进行,这可以保证源码目录不受任何一次编译的影响,因此在同一个源码树上可以 ...

  5. KVC与KVO

    KVC:键值编码(Key-Value-Coding),是一个非正式的Protocol,提供一种机制间接访问对象的属性,是路径访问的规范: KVO:键值观察 (Key-Value-Observe),是基 ...

  6. createjs 的 bitmapdata类

    今天测试一个功能,在效率上出现了问题.2D舞台绘制了大量的元素,联想到AS3的 bitmapdata.darw() 功能,遗憾是createjs官方类 中没有bitmapdata类. 好在已经有大神替 ...

  7. day5 -指针

    指针和指针变量 指针就是地址,地址就是指针 地址就是存放单元的编号 指针变量是存放地址的变量 指针和指针变量是两个不同的概念,但是要注意,通常我们叙述时会把指针变量简称为指针,实际他们含义并不一样 指 ...

  8. Extjs关于alert显示不出—异步问题

    对应extjs提示框不能正常显示,而使用js的本身提示框可以正常,但由于样式不统一,不是 好的解决方法. 解决该问题,要了解extjs异步原理. ext的提示框都是异步的,非阻塞模式的,浏览器js的提 ...

  9. mac 安装tomcat

    一.下载 首先在tomcat官网下载完整版的 tomcat.tar.gz包,Core下 注: zip用于windows操作系统,tar.gz用于unix和linux操作系统. Binary Distr ...

  10. js的常用api

    JavaScript常用API总结 原创 2016-10-02 story JavaScript 下面是我整理的一些JavaScript常用的API清单. 目录 元素查找 class操作 节点操作 属 ...