博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu 之 Personal Package Archive (PPA)
阅读量:5256 次
发布时间:2019-06-14

本文共 1253 字,大约阅读时间需要 4 分钟。

How do I use software from a PPA?

To start installing and using software from a Personal Package Archive, you first need to tell Ubuntu where to find the PPA.

Important: The contents of Personal Package Archives are not checked or monitored. You install software from them at your own risk.

If you're using the most recent version of Ubuntu (or any version from Ubuntu 9.10 onwards), you can add a PPA to your system with a single line in your terminal.

Step 1: On the PPA's overview page, look for the heading that reads Adding this PPA to your system. Make a note of the PPA's location, which looks like:

ppa:gwibber-daily/ppa

Step 2: Open a terminal and enter:

sudo add-apt-repository ppa:user/ppa-name

Replace ppa:user/ppa-name with the PPA's location that you noted above.

Screen shot of a terminal with the sudo add-apt-repoistory line

Your system will now fetch the PPA's key. This enables your Ubuntu system to verify that the packages in the PPA have not been interfered with since they were built.

Screen shot of a system retrieving the PPA details

Step 3: Now, as a one-off, you should tell your system to pull down the latest list of software from each archive it knows about, including the PPA you just added:

sudo apt-get update

Now you're ready to start installing software from the PPA!

in our help wiki.

转载于:https://www.cnblogs.com/Patt/p/5797842.html

你可能感兴趣的文章
为什么用思科里面的设备第一次ping的时候总会丢一个包呢?
查看>>
java解析xml禁止校验dtd
查看>>
mybatis实践
查看>>
【GIT】git push 错误解决
查看>>
background-origin和background-origin和2D转换
查看>>
A version is required for an API group definition.
查看>>
Python count()方法
查看>>
【Java并发编程】19、DelayQueue源码分析
查看>>
求解回文序列问题
查看>>
微信公众号导出关注的用户信息
查看>>
test
查看>>
ogre3D学习基础17 --- 如何手动创建ogre程序
查看>>
activeMq 使用方法
查看>>
hdu 1425 sort
查看>>
11.JAVA-Object类之finalize(),clone(),toString()等方法覆写
查看>>
既有设计模式的lambda重构
查看>>
java学习笔记(基础篇)—面向对象编程之封装、继承、多态
查看>>
Redis实现简单的消息队列
查看>>
改变jboss部署目录(虚拟目录)
查看>>
自己通过反射写的一个属性copy类
查看>>