博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【linux】虚拟机上的一些问题(ubuntu)
阅读量:6566 次
发布时间:2019-06-24

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

1. apt 获取资源过慢问题

更换apt下载源, apt下载源在 /etc/apt/sources.list中, 先把原来的数据copy一个副本

cd /etc/aptsudo cp source.list source.list.bak

然后查看系统的codename, 比如我的是 bionic

yeyeck@ubuntu:~$ lsb_release -aNo LSB modules are available.Distributor ID:    UbuntuDescription:    Ubuntu 18.04.1 LTSRelease:    18.04Codename:    bionicyeyeck@ubuntu:~$

再把/etc/apt/sources.list里的数据全部删掉, 把以下数据中标记的bionic 全部替换为你系统的codename, 并保存

deb http://mirrors.aliyun.com/ubuntu/ bionic main multiverse restricted universedeb http://mirrors.aliyun.com/ubuntu/ bionic-backports main multiverse restricted universedeb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main multiverse restricted universedeb http://mirrors.aliyun.com/ubuntu/ bionic-security main multiverse restricted universedeb http://mirrors.aliyun.com/ubuntu/ bionic-updates main multiverse restricted universedeb-src http://mirrors.aliyun.com/ubuntu/ bionic main multiverse restricted universedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main multiverse restricted universedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main multiverse restricted universedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main multiverse restricted universedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main multiverse restricted universe

 

最后执行以下命令

sudo apt-get update

 

2. pip3 下载慢的问题

mkdir ~/.pipsudo vim ~/.pip/pip.conf

然后在文件中输入以下内容,保存即可

[global]

index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = mirrors.aliyun.com

 

转载地址:http://uocjo.baihongyu.com/

你可能感兴趣的文章
<转>巧用notepad++ 批量转换ansi 和 utf8
查看>>
Spring4-HelloWorld
查看>>
55、组播配置实验之PIM Sparse Mode静态指定RP
查看>>
Windows Server 2003防黑小秘决
查看>>
证书在 Exchange 2007 Server 中的使用
查看>>
Active Directory 对象授权还原
查看>>
OSI参考模型——网络层的主要功能
查看>>
【HM】第5课:JDBC连接MySQL数据库
查看>>
Linux-什么是二进制包,源码包,RPM包,软件仓库
查看>>
使用expect实现shell自动交互
查看>>
spark 入门及集群环境搭建
查看>>
多字段聚合
查看>>
centos7数据库mysql+mariadb
查看>>
MWC2018:阿里云发布8款云计算AI产品,中国科技已领先世界一步
查看>>
WYSE *.ini常用写法以及ConfGen工具
查看>>
实例分析mysql用户登录
查看>>
CCNP听课笔记7
查看>>
Qt4连接mysql5数据库
查看>>
shell脚本批量追踪ip路由走向
查看>>
Zabbix 3.2.6通过ODBC监控MySQL&Oracle
查看>>