- 浏览: 80442 次
- 性别:
- 来自: 杭州
文章分类
- 全部博客 (95)
- Linux(CentOS) (17)
- ubuntu (16)
- linux命令 (13)
- java基础 (8)
- eclipse maven (1)
- ubuntu xen (0)
- samba (1)
- jdk (1)
- linux (1)
- jenkins (1)
- MySQL (4)
- spring (1)
- redis (2)
- zookeeper (3)
- java多线程 (3)
- 线程池 (2)
- 工具类 (1)
- 技术问答 (1)
- 算法 (1)
- eclipse JVM (1)
- hadoop配置 (2)
- hadoop配置 HDFS (0)
- ubuntu svn (1)
- hadoop (5)
- mapReduce (1)
- HDFS (2)
- hive (3)
- flume (1)
- python (6)
- centos (1)
- svn (1)
- sonar (1)
- JVM (1)
- kafka (1)
- zabbix (1)
- python paramiko (1)
- TPS (1)
- docker (4)
- ssh (2)
- Go (1)
最新评论
1、备份
2、删除/etc/apt/sources.list文件中的全部内容
增加如下内容
3、更新
报错
解决:这个非官方源是不可信任的,解决办法是导入该源的公钥
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak sudo vim /etc/apt/sources.list
2、删除/etc/apt/sources.list文件中的全部内容
增加如下内容
deb http://mirrors.163.com/ubuntu/ precise main restricted deb-src http://mirrors.163.com/ubuntu/ precise main restricted deb http://mirrors.163.com/ubuntu/ precise-updates main restricted deb-src http://mirrors.163.com/ubuntu/ precise-updates main restricted deb http://mirrors.163.com/ubuntu/ precise universe deb-src http://mirrors.163.com/ubuntu/ precise universe deb http://mirrors.163.com/ubuntu/ precise-updates universe deb-src http://mirrors.163.com/ubuntu/ precise-updates universe deb http://mirrors.163.com/ubuntu/ precise multiverse deb-src http://mirrors.163.com/ubuntu/ precise multiverse deb http://mirrors.163.com/ubuntu/ precise-updates multiverse deb-src http://mirrors.163.com/ubuntu/ precise-updates multiverse deb http://mirrors.163.com/ubuntu/ precise-backports main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ precise-backports main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ precise-security main restricted deb-src http://mirrors.163.com/ubuntu/ precise-security main restricted deb http://mirrors.163.com/ubuntu/ precise-security universe deb-src http://mirrors.163.com/ubuntu/ precise-security universe deb http://mirrors.163.com/ubuntu/ precise-security multiverse deb-src http://mirrors.163.com/ubuntu/ precise-security multiverse deb http://extras.ubuntu.com/ubuntu precise main deb-src http://extras.ubuntu.com/ubuntu precise main
3、更新
sudo apt-get update
报错
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192
解决:这个非官方源是不可信任的,解决办法是导入该源的公钥
gpg --keyserver subkeys.pgp.net --recv 16126D3A3E5C1192 gpg --export --armor 16126D3A3E5C1192 | sudo apt-key add - sudo apt-get update sudo apt-get upgrade
#deb cdrom:[Ubuntu 14.10 _Utopic Unicorn_ - Release amd64 (20141022.1)]/ utopic main restricted # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of the distribution. deb http://cn.archive.ubuntu.com/ubuntu/ utopic main restricted deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic main restricted ## Major bug fix updates produced after the final release of the ## distribution. deb http://cn.archive.ubuntu.com/ubuntu/ utopic-updates main restricted deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic-updates main restricted ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu ## team. Also, please note that software in universe WILL NOT receive any ## review or updates from the Ubuntu security team. deb http://cn.archive.ubuntu.com/ubuntu/ utopic universe deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic universe deb http://cn.archive.ubuntu.com/ubuntu/ utopic-updates universe deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic-updates universe ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu ## team, and may not be under a free licence. Please satisfy yourself as to ## your rights to use the software. Also, please note that software in ## multiverse WILL NOT receive any review or updates from the Ubuntu ## security team. deb http://cn.archive.ubuntu.com/ubuntu/ utopic multiverse deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic multiverse deb http://cn.archive.ubuntu.com/ubuntu/ utopic-updates multiverse deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic-updates multiverse ## N.B. software from this repository may not have been tested as ## extensively as that contained in the main release, although it includes ## newer versions of some applications which may provide useful features. ## Also, please note that software in backports WILL NOT receive any review ## or updates from the Ubuntu security team. deb http://cn.archive.ubuntu.com/ubuntu/ utopic-backports main restricted universe multiverse deb-src http://cn.archive.ubuntu.com/ubuntu/ utopic-backports main restricted universe multiverse deb http://security.ubuntu.com/ubuntu utopic-security main restricted deb-src http://security.ubuntu.com/ubuntu utopic-security main restricted deb http://security.ubuntu.com/ubuntu utopic-security universe deb-src http://security.ubuntu.com/ubuntu utopic-security universe deb http://security.ubuntu.com/ubuntu utopic-security multiverse deb-src http://security.ubuntu.com/ubuntu utopic-security multiverse ## Uncomment the following two lines to add software from Canonical's ## 'partner' repository. ## This software is not part of Ubuntu, but is offered by Canonical and the ## respective vendors as a service to Ubuntu users. # deb http://archive.canonical.com/ubuntu utopic partner # deb-src http://archive.canonical.com/ubuntu utopic partner ## This software is not part of Ubuntu, but is offered by third-party ## developers who want to ship their latest software. deb http://extras.ubuntu.com/ubuntu utopic main deb-src http://extras.ubuntu.com/ubuntu utopic main
发表评论
-
制作ubuntu启动盘
2015-03-23 13:59 551http://www.ubuntu.com/download/ ... -
Ubuntu新建用户
2015-03-18 14:20 406新建用户的命令是useradd,修改密码是passwd,如下: ... -
Linux文件系统
2014-11-01 21:35 4071、查看系统分区 df 【-h】 2、查看文件、目录大小 d ... -
ubuntu14.04安装jenkins
2014-08-19 16:39 8621、安装 wget -q -O - http://pkg. ... -
Ubuntu14.04server 修改时间
2014-08-18 11:31 535sudo dpkg-reconfigure tzdata ... -
ubuntu14.04开放端口
2014-08-06 19:58 2353jzk@ubuntu:$ sudo ufw enable ... -
Ubuntu14.04server 下安装samba
2014-08-06 12:34 39311、安装samba sudo apt-get instal ... -
ubuntu14.04安装apache2 svn
2014-08-02 00:04 2553下面就讲一下如何采用Apache+SVN,实现以http的方式 ... -
Ubuntu14.04 安装nginx
2014-07-31 17:16 889=============================== ... -
ubuntu14.04安装maven
2014-07-20 22:19 15731、下载maven http://maven.apache. ... -
linux文件夹权限问题
2014-07-20 16:08 6581、sudo chmod 777 /usr/local/j ... -
Ubuntu配置SSH服务
2014-07-08 20:00 5131、Ubuntu14.04缺省没有安装SSH Server,使 ... -
ubuntu安装eclipse
2014-06-24 22:12 5931、下载http://www.eclipse.org/down ... -
ubuntu14.04安装tomcat8
2014-06-23 23:24 24511、http://tomcat.apache.org/down ... -
ubuntu14.04 安装JDK8
2014-06-22 23:14 1221http://www.oracle.com/technetwo ...
相关推荐
Ubuntu 14.04 修改软件源地址 Ubuntu 14.04 是一个非常流行的操作系统,但是有时候从 Ubuntu 官方服务器下载软件更新的速度非常慢,影响了用户体验。为了解决这个问题,我们可以尝试修改软件更新源,以加速下载...
3. **Unity桌面环境**:尽管Ubuntu 18.04以后版本更换为GNOME,但在14.04中使用的Unity桌面环境有其独特的界面设计,包括侧边栏的应用启动器和全局菜单。 4. **软件管理**:Ubuntu使用apt包管理器,通过命令行或...
如果出现源问题,可以考虑更换为阿里云或网易163的镜像源。 5. **验证CUDA安装**: - 编译CUDA样本代码,如`cd /usr/local/cuda/samples/`, `sudo make all -j4`(这里的`-j4`表示使用4个CPU核心进行编译),然后...
4. **恢复备份**:如果更换源后发现系统出现问题,可以通过恢复备份的 `sources.list.bak` 文件来还原原来的状态。 更换阿里源后,不仅可以提高软件包下载速度,还可以减少因网络问题导致的更新失败。同时,阿里云...
3. **自定义优化**:根据网络状况和需求,用户可以更换不同地区的软件源,以获得更快的下载速度或特定地区语言的支持。 四、修改与优化`sources.list` 为了提升更新和下载速度,用户可以根据自己所在的地理位置...
在Ubuntu 14.04操作系统中,更换阿里云源是一项重要的优化步骤,特别是对于在中国的用户来说。阿里云源提供了快速、稳定的软件包下载服务,可以显著提高系统升级和安装新软件的速度。以下是详细的操作步骤和相关知识...
Ubuntu快速更换国内源,适用于14.04、16.04、18.04,方便下载使用。
在安装uwsgi前,可以更换pip源以加快下载速度,例如设置为豆瓣的镜像源。 **第四步:测试uwsgi** 创建一个简单的uwsgi测试应用,编写一个名为`test.py`的文件,并使用uwsgi命令运行。运行`uwsgi --...
### 详解ubuntu14.04搭建(迁移)HUSTOJ #### 一、前言 本文将详细介绍如何在Ubuntu 14.04环境下搭建(或迁移)HUSTOJ在线评测系统。HUSTOJ是一款开源的在线评测系统,广泛应用于各大高校和编程竞赛中。由于其高度...
此外,由于Ubuntu的官方软件源可能存在网络速度慢的问题,建议用户更改软件源为国内镜像源,如阿里云、搜狐、163等,这样做可以显著提高软件安装的速度。 知识点二:Vim的安装和配置 Vim是一种高级的文本编辑器,它...
- 参考教程: [更换Ubuntu软件源方法](http://www.linuxidc.com/Linux/2014-04/100476.htm) **步骤5:** 安装搜狗输入法 (可选) - 指引: [Ubuntu下安装搜狗输入法]...
由于本文档是以 Ubuntu 14.04 为基础进行描述的,但原理相同,因此适用于 Ubuntu 16.04。以下步骤将详细介绍如何在 Ubuntu 16.04 上安装 LabVIEW 2017。 1. **获取 LabVIEW 安装包**: - 在 Windows 系统下,您...
支持ubuntu14.04以上的所有版本!注意!本仓库中的脚本需要superuser权限。如果担心这份shell会利用你的电脑做一些奇奇怪怪的事情,那么请无视这个项目=。=运行方式下载init_your_ubuntu,并把它复制到你的虚拟机中...
它支持多种平台,包括Ubuntu 14.04 (Trusty)和Ubuntu 16.04 (Xenial)。在安装Kurento之前,你需要确保你的系统满足基本要求,并且正确配置了软件源。 **一、更换为阿里云源** 在安装Kurento之前,为了确保下载速度...
1.ubuntu14.04 2.docker环境 二、搭建过程 1.更换镜像源(因为默认的太慢了,国内的更快) sudo vim /etc/default/docker 输入以下参数: DOCKER_OPTS=--registry-mirror=http://hub-mirror.c.163.com //网易的,...
总结起来,当mysqli扩展在PHP7下无法升级时,首先确认当前系统环境和PHP源的兼容性,然后更换支持旧版Ubuntu的PHP源,并通过正确的方式安装所需的扩展。这不仅解决了mysqli扩展的安装问题,也为其他可能出现的扩展...
- Ubuntu14.04: http://cloud-images.ubuntu.com/trusty/current/ - Ubuntu16.04: http://cloud-images.ubuntu.com/xenial/current/ 以Ubuntu16.04为例,要将cloud镜像导入Glance,你需要登录OpenStack控制台,进入...
安装过程中可能会需要更换源为其他镜像站点,以便顺利下载和安装所需的软件包。 2. 套件安装 安装过程中需要安装Apache2、Git以及OpenJDK 7 JDK。另外需要注意的是,Ubuntu 12.04版本中SimpleID可能不能通过命令...