当前位置: 首页 > wzjs >正文

昆明网站建设公司推荐网站建设分析从哪几个方面

昆明网站建设公司推荐,网站建设分析从哪几个方面,免费可以看到实景的地图软件,南宁求介绍seo软件文章目录 Ubuntu查看系统版本Ubuntu更新系统不能更新Ubuntu查看APT更新源配置cn.archive.ubuntu.com已经自动跳转到清华镜像站Ubuntu变更镜像源地址备份原文件批量在VIM中变更 Ubuntu国内镜像站推荐推荐阅读 今天想要在Ubuntu环境下搭建一个测试环境,进入Ubuntu系统…

文章目录

    • Ubuntu查看系统版本
    • Ubuntu更新系统不能更新
    • Ubuntu查看APT更新源配置
    • cn.archive.ubuntu.com已经自动跳转到清华镜像站
    • Ubuntu变更镜像源地址
      • 备份原文件
      • 批量在VIM中变更
    • Ubuntu国内镜像站推荐
    • 推荐阅读

今天想要在Ubuntu环境下搭建一个测试环境,进入Ubuntu系统后,先看了下系统版本

Ubuntu查看系统版本

lsb_release -a

Ubuntu更新系统不能更新

sudo apt-get update 

在执行后,发现报错如下,发现一个很奇怪的现象,我明明记得源配置的是cn.archive.ubuntu.com,但是发现,系统更新时,自动去找了清华大学的Ubuntu源。why?难道是我源配置的是清华的吗?

Err:5 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu bionic InRelease                             503  Service Unavailable [IP: 185.125.190.52 80]
Err:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu bionic InRelease                                 503  Service Unavailable [IP: 101.6.15.130 80]
Err:2 http://mirrors.tuna.tsinghua.edu.cn/ubuntu bionic-updates InRelease503  Service Unavailable [IP: 101.6.15.130 80]
Err:3 http://mirrors.tuna.tsinghua.edu.cn/ubuntu bionic-backports InRelease503  Service Unavailable [IP: 101.6.15.130 80]
Err:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu bionic-security InRelease503  Service Unavailable [IP: 101.6.15.130 80]
Reading package lists... Done

Ubuntu查看APT更新源配置

sudo vim /etc/apt/sources.list

通过VIM编辑器查看,源地址没错,为什么更新的时候去找了清华源呢?

 See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://cn.archive.ubuntu.com/ubuntu bionic main restricted
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic main restricted## Major bug fix updates produced after the final release of the
## distribution.
deb http://cn.archive.ubuntu.com/ubuntu bionic-updates main restricted
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-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 bionic universe
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic universe
deb http://cn.archive.ubuntu.com/ubuntu bionic-updates universe
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-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 bionic multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic multiverse
deb http://cn.archive.ubuntu.com/ubuntu bionic-updates multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-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 bionic-backports main restricted universe multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-backports main restricted universe 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 bionic partner
# deb-src http://archive.canonical.com/ubuntu bionic partnerdeb http://cn.archive.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-security main restricted
deb http://cn.archive.ubuntu.com/ubuntu bionic-security universe
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-security universe
deb http://cn.archive.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu bionic-security multiverse

cn.archive.ubuntu.com已经自动跳转到清华镜像站

带着很多问号,在浏览器打开http://cn.archive.ubuntu.com,发现网站已经自动跳转到清华镜像站了。
在这里插入图片描述
以为网站需要https打开,发现该网站无法打开。
在这里插入图片描述
有知道原因的小伙伴吗?希望大家不吝分享。

Ubuntu变更镜像源地址

虽然访问http://cn.archiv.ubuntu.com会自动跳转到清华源,但是我们还是做一个镜像源地址变更。
使用如下命令将镜像文件中的cn.archive.ubuntu.com批量更换为清华源。

备份原文件

变更前记得备份原始的/ etc / apt / sources.list文件

$sudo cp / etc / apt / sources.list / etc / apt / sources.list.bak

批量在VIM中变更

在vim编辑器批量变更字符串,方法如下,按下esc后,输入:

:%s/cn\.archive\.ubuntu\.com/mirrors\.tuna\.tsinghua\.edu\.cn/g

在这里插入图片描述
第一次替换时,少打了一个“.”报错提示:E486: Pattern not found。这个报错时指没有找到特定的字符,重新检查错误后,发现"."在正则表达式中通常是特殊字符,所以需要使用\ 来转义它,以确保准确匹配点号。所以,www.csdn.net 转换后,应该时www.csdn.net。这也算是一个语法上的注意事项。

Ubuntu国内镜像站推荐

除了官方的cn.archive.ubuntu.com外,国内还有多个Ubuntu的稳定镜像站:

  • 清华大学开源软件镜像站
 https://mirrors.tuna.tsinghua.edu.cn/ubuntu/
  • 阿里巴巴开源镜像站
 https://mirrors.aliyun.com/ubuntu/
  • Ubuntu官方镜像站
http://archive.ubuntu.com/ubuntu/

当然还有一些其他的,以上三个是我个人觉得比较好用的。上文希望对大家有所帮助。

推荐阅读

  • Ubuntu快速搭建内网NTP Server
  • 易记笔记-Ubuntu 下【netstat】指令全解
  • Ubuntu 20.04安装SQL Server
  • 易记笔记-Ubuntu升级软件包及注意事项
  • 易记笔记-Ubuntu系统时间更改
  • 易记笔记-Ubuntu 下【netstat】指令全解
  • ubuntu安装DHCP 服务和排错教程
  • Ubuntu 多路径服务报错处理方法
  • Ubuntu Samba高危安全漏洞修复
  • Windows 11安装Ubuntu 实战教程
http://www.dtcms.com/wzjs/588703.html

相关文章:

  • php网站开发实例教程 传智播客电白区建设局网站
  • 公司网站建设及维护管理总结无锡网站建设制作方案
  • 公众号链接网站都是怎么做的建设银行的投诉网站
  • 合适的网站建设的公司怎么找如何自己做软件网站
  • 如何做一个购物网站网站建设规划与管理 试卷
  • 怎么制作网站源码wordpress调用优酷视频播放器
  • 徐州做汽车销售的公司网站域名备案审核需要多久
  • 建设优惠券网站seo的方式有哪些
  • 新乡网站开发的公司广西建设职业技术学院教育网站
  • 南山区住房与建设局官方网站网站设计软件培训怎么样
  • 株洲网站制作公司在哪里长沙调查公司
  • flash网站的制作免费优化网站建设
  • 购物网站模块例子做效果图的素材网站
  • 购物网站开发的意义建网站 英文
  • 建设厅网站怎么查询安全员c考试成绩做网站用的小图标
  • 公司网站建设哪家正规杭州有哪些网站建设
  • 嘉峪关建设局公告网站做单位网站
  • vs 2017c 怎么建设网站网站建设规划怎么写
  • 网站正在维护模板佛山seo网站优化
  • 学生网页网站制作软件大全.我爱你 域名网站
  • 怎么做网站美工网站建设的销售术语
  • 电子商务做网站实训体会flash 网站建设
  • 吴忠网站建设多少钱专门做蛋糕的网站
  • 做网站用什么编程语言好建设工程合同管理多少分及格
  • 课程网站建设wordpress重新安装主题
  • 摄影协会网站源码温州网站建设前十公司
  • 网站使用arial字体下载网站不收录的技术原因
  • 只做外贸的公司网站本溪做网站 淘宝店
  • 一个网站怎么做app网站建设制作过程
  • 余姚网站建设哪家好视频会议系统直播聊天网站开发