Ubuntu-apt-get出错】的更多相关文章

apt-get是一条linux命令,适用于deb包管理式的操作系统,主要用于自动从互联网的软件仓库中搜索.安装.升级.卸载软件或操作系统. apt-get update 在修改/etc/apt/sources.list或/etc/apt/preferences之後运行该命令.此外您需要定期运行这一命令以确保您的软件包列表是最新的. Ubuntu APT常用命令参数具体介绍Ubuntu APT命令参数,让大家了解Ubuntu APT命令参数使用,希望对大家有用.Ubuntu 是一个完全以 Linu…
whitedream@ubuntu:~$ sudo apt-get update Reading package lists... Done E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable) E: Unable to lock directory /var/lib/apt/lists/ whitedream@ubuntu:~$ ps -e |grep apt 98…
安装过程出错 首先出现问题sudo apt-get updateReading package lists… Error!E: Encountered a section with no Package: headerE: Problem with MergeList /var/lib/apt/lists/cn.archive.ubuntu.com_ubuntu_dists_natty_main_i18n_Translation-enE: The package lists or status…
 APT(the Advanced Packaging Tool)是Ubuntu 软件包管理系统的高级界面,Ubuntu 是基于Debian的,APT由几个名字以“apt-”打头的程序组成.apt-get.apt-cache 和apt-cdrom是处理软件包的命令行工具.Linux命令—apt,也是其它用户前台程序的後端,如dselect 和aptitude. 作为操作的一部分, APT使用一个文件列出可获得软件包的镜像站点地址,这个文件就是/etc/apt/sources.list. APT是…
一.apt apt-cache search # ------(package 搜索包) apt-cache show #------(package 获取包的相关信息,如说明.大小.版本等) sudo apt-get install # ------(package 安装包) sudo apt-get install # -----(package - - reinstall 重新安装包) sudo apt-get -f install # -----(强制安装?#"-f = --fix-mi…
http://www.tecmint.com/useful-basic-commands-of-apt-get-and-apt-cache-for-package-management/ apt-cache 该命令用于在apt的软件包缓存中搜索软件.简单来说,就是用于搜索软件包,收集软件包信息并用于搜索哪些可以在Ubuntu或Debian上安装的软件. 列出当前所有可用的软件包apt-cache pkgnames 查找软件包并列出该软件包的相关信息apt-cache search vsftpd…
在Ubuntu 12.10中安装vim时出现了如下提示: www.linuxidc.com @linuxidc:/etc/apt$ sudo apt-get install vim正在读取软件包列表... 完成正在分析软件包的依赖关系树 正在读取状态信息... 完成 有一些软件包无法被安装.如果您用的是 unstable 发行版,这也许是因为系统无法达到您要求的状态造成的.该版本中可能会有一些您需要的软件包尚未被创建或是它们已被从新到(Incoming)目录移出.下列信息可能会对解决问题有所帮助…
When I do command sudo apt update, always get belowing errors: Err:1 http://archive.ubuntu.com/ubuntu bionic InRelease Could not connect to archive.ubuntu.com:80 (91.189.91.23). - connect (111: Connection refused) Could not connect to archive.ubuntu.…
常见的问题是apt使用代理. 不过今天遇到的情况是,桌面进不去,只能tty:在tty界面下,发现1080端口上开着代理,/etc/environment和~/.bashrc中都确保注释掉了http_proxy和https_proxy,重启电脑后还是提示: Ign:1 http://mirrors.aliyun.com/ubuntu xenial/main i386 aptitude-common all 0.7.4-2ubuntu2 Err:2 http://mirrors.aliyun.com…
. . . . . 由于一台 Ubuntu 主机无法直接连接外网,但同内网的另一台 Windows 主机可以连接外网,于是在 Win 主机上搭建了代理服务,使 Ubuntu 主机通过代理更新系统. 记录配置 apt 代理的方式备忘,供其它网友参考. $> sudo vim /etc/apt/apt.conf 编辑 /etc/apt/apt.conf 文件,输入代理的配置,格式如下: Acquire::http::Proxy "http://ProxyIP:port"; 例如搭建了…
在ubuntu上面安装软件一般都使用 apt安装 在ubuntu下面有一个源列表,源列表里面都是一些网站信息,每条网址就是一个源,这个地址指向的数据标识着这台服务器上有哪些软件可以用 编辑源命令: sudo gedit /etc/apt/sources.list 在这个文件里加入或者注释(加#)掉一些源后,保存.这时候,我们的源列表里指向的软件就会增加或减少一部分.接一下要做的就是: sudo apt-get update 这个命令,会访问源列表里的每个网址,并读取软件列表,然后保存在本地电脑.…
1. 方法一:直接在 /etc/apt/sources.list 添加第三方库. $ sudo vi /etc/apt/sources.list 在其中添加: deb http://archive.scrapy.org/ubuntu precise main 2. 方法二:对于第三方库,最好不要使用 /etc/apt/sources.list,使用 /etc/apt/sources.list.d/. 要添加第三方库,首先要获取该仓库的公共密钥,你可以在 Ubuntu 的密钥服务器获取: $ su…
Advanced Packaging Tool,一般简称为apt,是Debian GNU/Linux distribution及其变体版本中与核心库一道处理软件的安装和卸载. Ubuntu是Debian的变异发行版,因此在Debian和Ubuntu中都可以使用apt命令.使用apt-get命令一般需要root权限. apt-get update: 运行该命令需要修改/etc/apt/sources.list或者/etc/apt/preferences.一般定期运行该命令来保持软件列表是最新的.…
今天在Ubuntu下调试代码,明明是正确的,却仍然报错,查了错误信息才知道:Ubuntu中默认不是bash,而是为了加快开机速度,使用了dash. dash中需要严格的语法,而且与bash语法不同.例如,bash中定义函数是使用function关键字的(function foo() {}),但在dash中没有该关键字,直接使用foo(){}定义.我的错误就是这样因为有了function而没有通过. 注意:在sh文件首行定义的“#!/bin/bash”,指的是在(文件具有x权限的前提下),shel…
卸载vsftpd出错 $ sudo apt remove vsftpd Reading package lists... Done Building dependency tree Reading state information... Done The following packages will be REMOVED: vsftpd 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 1 not fully ins…
前言:看见Ubuntu新出了18.04版本感觉不错,装一个玩玩,虽然有很多教程可以参考,但我也给出一个不是很一样的方案吧,尽量解释的详细一点. 为了下载更方便,速度更快,我们往往在使用Linux系列系统时修改apt源为国内的源,一般选择有阿里云,豆瓣之类的,下面简单说下如何更改为阿里云源. 1.复制源文件备份,以防万一 我们要修改的文件是sources.list,它在目录/etc/apt/下,sources.list是包管理工具apt所用的记录软件包仓库位置的配置文件,同样类型的还有位于 同目录…
在/etc/apt/sources.list靠前的地方加入即可. 说明:http://mirrors.163.com/.help/ubuntu.html #15.10 wily, 15.04 vivid, 14.10 utopic, 14.04 trusty, 12.04 precise, 10.04 lucid deb http://mirrors.163.com/ubuntu/ wily main restricted universe multiverse deb http://mirro…
apt 命令是一个功能强大的命令行工具,它不仅可以更新软件包列表索引.执行安装新软件包.升级现有软件包,还能够升级整个 Ubuntu 系统(apt 是 Debian 系操作系统的包管理工具).与更专业的 APT(Advanced Packaging Tool) 工具 apt-get 和 apt-cache 相比,apt 具有一些更适合交互式场景的选项,它更倾向于成为面向最终用户的工具(而不仅仅是系统管理员).换句话说,apt 比 apt-get 用起来更简单,用户体验更好.本文介绍 apt 命令…
修改配置文件/etc/apt/sources.list 内容替换为 阿里镜像源 deb http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ viv…
1.打开/etc/apt/sources.list 将内容替换为以下内容(注意把sources.list文件备份一下) deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse deb http://mirrors.…
Ubuntu操作系统运行apt update命令时会卡在Connecting to security.ubuntu.com,搭了梯子也无法解决 尝试了网络上的方法,如: https://blog.csdn.net/v6543210/article/details/81562266 https://ubuntuqa.com/article/1400.html 但这些方法是解决由于访问security.ubuntu.com ipv6地址造成的无法访问的问题,所以对于我的问题并不管用. 后来通过网站…
安装mysql-python包出错 Downloading MySQL-python-.zip (108kB) % |████████████████████████████████| 112kB 155kB/s Complete output from command python setup.py egg_info: : mysql_config: not found Traceback (most recent call last): File , in <module> File ,…
1. ./autogen.sh: libtoolize: not found sudo apt-get install aptitude sudo aptitude install libtool 2..xz格式 sudo apt-get install xz-utils 3.解压xz包 xz -d ***.tar.xz tar -xvf  ***.tar 4.`PKG_CHECK_MODULES(THIS, glib-2.0 >= 2.0, gthread-2.0 >= 2.0, gmodu…
deb http://archive.ubuntu.com/ubuntu/ vivid main restricted universe multiversedeb http://archive.ubuntu.com/ubuntu/ vivid-security main restricted universe multiversedeb http://archive.ubuntu.com/ubuntu/ vivid-updates main restricted universe multiv…
早上设置一个共享目录share. 右键共享,之后系统自动安装软件samba,之后共享出错: "net usershare"返回错误 255:net usershare: cannot open usersharedirectory /var/lib/samba/usershares. Error 权限不够 You do not have permission to create a usershare. Ask youradministrator to grant you permis…
1. install sudo apt install [软件名] sudo apt-get install [软件名]Tab补全,可以使用sudo apt upgrade 升级apt, 也可以通过sudo apt update升级apt安装的软件. 2. uninstall方法一.如果你知道要删除软件的具体名称,可以使用               sudo apt-get remove --purge 软件名称  sudo apt-get autoremove --purge 软件名称 方法…
安装 curl -s https://non-gnu.uvt.nl/debian/uvt_key.gpg | sudo apt-key add - sudo add-apt-repository "deb https://non-gnu.uvt.nl/debian wheezy uvt" sudo apt update sudo apt-get -y install mpv 参考文档:https://mpv.io/installation/ 快捷键 键盘快捷键:  https://mp…
可以通过三种方法为apt-get设置http代理方法一这是一种临时的手段,如果您仅仅是暂时需要通过http代理使用apt-get,您可以使用这种方式.在使用apt-get之前,在终端中输入以下命令(根据您的实际情况替换yourproxyaddress和proxyport).export http_proxy=http://yourproxyaddress:proxyport方法二这种方法要用到/etc/apt/文件夹下的apt.conf文件.如果您希望apt-get(而不是其他应用程序)一直使用…
在安装更新时,即在运行命令行sudo apt-get update 或者运行更新管理器的时候,出现W: GPG 错误: W: GPG error: http://ppa.launchpad.net/ondrej/php/ubuntu xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 4F4EA0AAE5267A6C 可…
PyCharm一个是Python集成开发环境,它既提供收费的专业版,也提供免费的社区版本.PyCharm带有一整套可以帮助用户在使用Python语言开发时提高其效率的工具,比如调试.语法高亮.Project管理.代码跳转.自动完成.单元测试. PyCharm非常好用,而且是跨平台的. PyCharm网址:http://www.jetbrains.com/pycharm/ 添加源: $ sudo add-apt-repository ppa:mystic-mirage/pycharm 安装收费的专…