ubuntu删除ppa源
cd /etc/apt/sources.list.d
都在这里了
drwxr-xr-x 2 root root 4096 5月 22 23:41 ./
drwxr-xr-x 6 root root 4096 5月 20 20:59 ../
-rw-r--r-- 1 root root 216 5月 22 23:41 daniruiz-ubuntu-flat-remix-bionic.list
-rw-r--r-- 1 root root 216 5月 22 23:41 daniruiz-ubuntu-flat-remix-bionic.list.save
-rw-r--r-- 1 root root 154 5月 22 23:41 dyatlov-igor-ubuntu-sierra-theme-bionic.list
-rw-r--r-- 1 root root 154 5月 22 23:41 dyatlov-igor-ubuntu-sierra-theme-bionic.list.save
-rw-r--r-- 1 root root 189 5月 22 23:41 google-chrome.list
-rw-r--r-- 1 root root 189 5月 22 23:41 google-chrome.list.save
-rw-r--r-- 1 root root 192 5月 22 23:41 shutter-ubuntu-ppa-bionic.list
-rw-r--r-- 1 root root 126 5月 22 23:41 shutter-ubuntu-ppa-bionic.list.save
-rw-r--r-- 1 root root 65 5月 22 23:41 sogoupinyin.list
-rw-r--r-- 1 root root 65 5月 22 23:41 sogoupinyin.list.save
-rw-r--r-- 1 root root 128 5月 22 23:41 system76-ubuntu-pop-bionic.list
-rw-r--r-- 1 root root 128 5月 22 23:41 system76-ubuntu-pop-bionic.list.save
-rw-r--r-- 1 root root 193 5月 22 23:41 vscode.list
-rw-r--r-- 1 root root 193 5月 22 23:41 vscode.list.save
jiqing@jiqing-pad:/etc/apt/sources.list.d$ sudo rm shutter-ubuntu-ppa-bionic.list
jiqing@jiqing-pad:/etc/apt/sources.list.d$ sudo rm shutter-ubuntu-ppa-bionic.list.save
ubuntu删除ppa源的更多相关文章
- Ubuntu添加与删除PPA源
目录 PPA,英文全称为 Personal Package Archives,即个人软件包档案.是 Ubuntu Launchpad 网站提供的一项源服务,允许个人用户上传软件源代码,通过 Launc ...
- Ubuntu添加PPA源
转自Ubuntu添加PPA源 什么是PPA PPA,表示Personal Package Archives,也就是个人软件包集 很多软件包由于各种原因吧,不能进入官方的Ubuntu软件仓库.为了方便U ...
- Ubuntu 16 PPA源管理(查询、添加、修改、删除)
查询 在Ubuntu中,每个PPA源是单独存放在/etc/apt/sources.list.d/文件夹中的,进入到该文件夹,使用ls命令查询即可列出当前系统添加的PPA源. 添加 sudo add-a ...
- Ubuntu: repository/PPA 源
在Ubuntu中,每个PPA源是单独存放在/etc/apt/sources.list.d/文件夹中的,进入到该文件夹,使用ls命令查询即可列出当前系统添加的PPA源. 添加 sudo add-apt- ...
- ubuntu使用ppa源安装最新版本的git
国内也有ubuntu镜像源.但是里面的git都是1.9版本.最新的已经是2.3了 1 首先使用将ppa源加入Ubuntu,交大家 sudo add-apt-repository ppa:pdoes/p ...
- Ubuntu中PPA源是什么
以下内容转自https://imcn.me/ppa: PPA是Personal Package Archives首字母简写.翻译为中文意思是:个人软件包文档 只有Ubuntu用户可以用,而所有的PPA ...
- wireshark的ubuntu更新ppa源
默认的ppa源安装的是1.8.3的,这个源直接更新到1.11.0 $ sudo add-apt-repository ppa:dreibh/ppa $ sudo apt-get update $ su ...
- ubuntu/linuxmint如何添加和删除PPA源
[添加] 1.sudo add-apt-repository ppa:user/ppa-name 2.sudo apt-get update (然后再安装软件sudo apt-get install ...
- ubuntu 通过ppa源安装mysql5.6
添加mysql5.6的源 sudo add-apt-repository -y ppa:ondrej/mysql-5.6 更新源 sudo apt-get update 安装mysql5.6 sudo ...
随机推荐
- python操作剪贴板错误提示:pywintypes.error: (1418, 'GetClipboardData',线程没有打开的剪贴板)
问题现象:通过打断点,一步步调试可以正常复制和粘贴剪贴板数据.但是直接运行会报错pywintypes.error: (1418, 'GetClipboardData',线程没有打开的剪贴板) 问题原因 ...
- POJ-2387Til the Cows Come Home,最短路坑题,dijkstra+队列优化
Til the Cows Come Home Time Limit: 1000MS Memory Limit: 65536K http://poj.org/problem?id=238 ...
- 【数学】codeforces C. Maximal GCD
http://codeforces.com/contest/803/problem/C [题意] 给定两个数n,k(1 ≤ n, k ≤ 10^10) 要你输出k个数,满足以下条件: ①这k个数之和等 ...
- C#特性入门《详解》
原文发布时间为:2008-11-22 -- 来源于本人的百度文章 [由搬家工具导入] <转>http://www.bccn.net/Article/net/cs/jszl/200709/6 ...
- C++,C程序设计入门——《高质量程序设计第4章》
1. 连接规范 1. extern “C” 2. 一部分采用C的连接规范 #ifdef __cplusplus extern "C" { #endif #ifdef __cplus ...
- python学习之- 内置函数
内置方法:1:abs():取绝对值2:all():当可迭代对象里所有均为真时结果为真. all([1,2,3])3:any():当可迭代对象里任意一个数据为真结果即为真.any([0,1,2])4:a ...
- Codeforces 618C(计算几何)
C. Constellation time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...
- Wooden Sticks---hdu1051(最长上升子序列)
http://acm.hdu.edu.cn/showproblem.php?pid=1051 Problem Description There is a pile of n wooden stick ...
- [Bzoj1297][Scoi2009 ]迷路 (矩阵乘法 + 拆点)
1297: [SCOI2009]迷路 Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 1385 Solved: 993[Submit][Status] ...
- JVM(零):走入JVM
JVM(零):走入JVM 本系列主要讲述JVM相关知识,作为本系列的第一篇文章,本文从Java为什么是一个跨平台的语音开始介绍,逐步引入Java虚拟机的概念,并给出一个JVM相关知识图谱,可以让读者从 ...