国外地址yum源下载慢,下到一半就断了,就这个原因就修改它为国内yum源地址 国内yum源: 阿里centos7 yum源:http://mirrors.aliyun.com/repo/Centos-7.repo 网易centos7 yum源:http://mirrors.163.com/.help/CentOS7-Base-163.repo 中科大centos7 yum源:https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos…
判断地址 不在  框架里  (项目  地址栏一般 都是 首页地址 ) function url(){ var page=getpage(); if(window==top&&(page!='Index.jsp')){ top.location.href='Index.jsp'; }} function getpage(){ var surl=location.href; var sue=surl.spilt("/"); var ss=sue[sue.length-1];…
换成国内最快的阿里云源 第一步:备份原来的源文件 cd /etc/apt/ 然后会显示下面的源文件sources.list 输入命令 sudo cp sources.list sources.list.bak 就是将sources.list备份到sources.list.bak 第二步:替换源 阿里云源的文件 deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse deb http://mi…
阿里安装软件镜像源 阿里云Linux安装镜像源地址:http://mirrors.aliyun.com/ 第一步:备份你的原镜像文件,以免出错后可以恢复. mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 第二步:下载新的CentOS-Base.repo 到/etc/yum.repos.d/ wget -O /etc/yum.repos.d/CentOS-Base.repo http://m…
CentOS7- 配置阿里镜像源 1. 安装wgetyum install -y wget 2. 用wget下载repo文件 输入命令wget http://mirrors.aliyun.com/repo/Centos-7.repo 3. 进入centos的yum文件夹 输入命令cd /etc/yum.repos.d/ 4. 备份系统原来的repo文件mv CentOs-Base.repo CentOs-Base.repo.bak即是重命名 CentOs-Base.repo -> CentOs-…
参考博客: https://blog.csdn.net/kxwinxp/article/details/78578492 https://blog.csdn.net/inslow/article/details/54177191 需要在root账号下操作 可能新的系统需要开启网络配置,操作如下 ip address #查看网络连接设备 #可以看到两个设备: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue 2: enp1s0: <…
前言 在VM虚拟机搭建Ubuntu系统学习或者测试时,常常要使用apt安装测试,但是由于系统自带的下载源在国外服务器上,下载速度慢的无法忍受.所以我们需要切换为国内镜像源,能显著加快安装包下载速度. 步骤 $ cd /etc/apt/ $ cp sources.list sources.list.bak ## 备份系统自带的source列表 ## 选择合适的镜像源,如阿里云的镜像 http://mirrors.aliyun.com/ubuntu $ sed -i 's/^\(deb\|deb-s…
yum install apr-util apr-util-devel apr apr-devel pcre pcre-devel zlib zlib-devel openssl openssl-devel gcc cmake gcc-c++ -y 阿里镜像源和常用资源下载 https://mirrors.aliyun.com/centos/7.6.1810/isos/x86_64/ http://msdn.itellyou.cn/ http://www.5sharing.com/ http:/…
#sbt下载慢的问题 默认情况下,sbt使用mvn2仓库下载依赖,如下载scalatest时,idea的sbtshell 显示如下url https://repo1.maven.org/maven2/org/scalatest/scalatest_2.10/3.0.1/scalatest_2.10-3.0.1.jar  此源速度很慢,用浏览器可以直接打开并测试速度,发现呵呵.   两种覆盖默认mvn2仓库解决方案,使用阿里云镜像 1.项目覆盖 resolvers += "central"…
sudo nano /etc/apt/source.list 替换为如下文本 # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted…