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

营销型网站建站公司信息发布推广方法

营销型网站建站公司,信息发布推广方法,服务之家做网站简单吗,网站建设步骤详解视频Ubuntu更新源清晰方法 最直观的更新源方法安装Ubuntu1. 备份镜像源设置文件2. 编辑镜像源设置文件3. 更新源及/etc/apt/sources.list4. 更新已安装的软件包6. 将复制对应版本的清华源或科大源复制粘贴到打开的编辑文档7. 这是ubtuntu自带sources.listapt-get命令 手动更新Ubunt…

Ubuntu更新源清晰方法

  • 最直观的更新源方法
  • 安装Ubuntu
    • 1. 备份镜像源设置文件
    • 2. 编辑镜像源设置文件
    • 3. 更新源及/etc/apt/sources.list
    • 4. 更新已安装的软件包
    • 6. 将复制对应版本的清华源或科大源复制粘贴到打开的编辑文档
    • 7. 这是ubtuntu自带sources.list
    • apt-get命令
  • 手动更新Ubuntu内核版本

最直观的更新源方法

安装Ubuntu

推荐ventoy
其他U盘工具使用翻车了。
不会使用请自行百度。

安装好Ubuntu,首先第一步,要更换源,否则… …

Ubuntu中大部分的软件安装和更新都是利用apt命令,从Ubuntu的服务器直接安装的。
Ubuntu官方的服务器在国外,为了提高软件安装和更新速度,Ubuntu提供了选择最佳服务器的功能,可以帮助我们方便的找到一个速度最快的镜像服务器!

试错无数次,这里我推荐!
清华大学开源软件镜像站
中国科学技术大学
例如中国科学技术大学:可使用配置生成器生成各Ubuntu版本的镜像源。
在这里插入图片描述

在这里插入图片描述

1. 备份镜像源设置文件

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

2. 编辑镜像源设置文件

sudo gedit /etc/apt/sources.list

3. 更新源及/etc/apt/sources.list

sudo apt-get update          

4. 更新已安装的软件包

sudo apt-get upgrade                

6. 将复制对应版本的清华源或科大源复制粘贴到打开的编辑文档

在这里插入图片描述

7. 这是ubtuntu自带sources.list

如要退回原来的源,复制粘贴即可。

# deb cdrom:[Ubuntu 20.04.6 LTS _Focal Fossa_ - Release amd64 (20230316)]/ focal 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/ focal main restricted
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal main restricted## Major bug fix updates produced after the final release of the
## distribution.
deb http://cn.archive.ubuntu.com/ubuntu/ focal-updates main restricted
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-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/ focal universe
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal universe
deb http://cn.archive.ubuntu.com/ubuntu/ focal-updates universe
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-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/ focal multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ focal-updates multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-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/ focal-backports main restricted universe multiverse
# deb-src http://cn.archive.ubuntu.com/ubuntu/ focal-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 focal partner
# deb-src http://archive.canonical.com/ubuntu focal partnerdeb http://security.ubuntu.com/ubuntu focal-security main restricted
# deb-src http://security.ubuntu.com/ubuntu focal-security main restricted
deb http://security.ubuntu.com/ubuntu focal-security universe
# deb-src http://security.ubuntu.com/ubuntu focal-security universe
deb http://security.ubuntu.com/ubuntu focal-security multiverse
# deb-src http://security.ubuntu.com/ubuntu focal-security multiverse# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.

apt-get命令

在Ubuntu系统中,使用apt-get命令安装更新软件包:

sudo apt-get install package                   安装软件包
sudo apt-get install package - - reinstall     重新安装软件包
sudo apt-get -f install                        修复安装软件包"-f = ——fix-missing"
sudo apt-get remove package                    删除软件包
sudo apt-get remove package - - purge          删除软件包,包括删除配置文件等
sudo apt-get update                            更新源及/etc/apt/sources.list
sudo apt-get upgrade                           更新已安装的软件包
sudo apt-get dist-upgrade                      升级系统安装的软件包
sudo apt-get dselect-upgrade                   使用 dselect 升级
sudo apt-get build-dep package                 安装相关的编译环境
sudo apt-get clean && sudo apt-get autoclean   清理无用的软件包
sudo apt-get check                             检查是否有损坏的依赖
apt-cache search package                       搜索软件包
apt-cache show package                         获取包的相关信息,如说明、大小、版本等
apt-cache depends package                      了解使用依赖a
pt-cache rdepends package                      是查看该软件包被哪些软件包依赖

手动更新Ubuntu内核版本

更新Ubuntu Linux内核下载网站

http://www.shuangfujiaoyu.com/news/39174.html

相关文章:

  • 简单商业网站模板西地那非片
  • 做pc端网站价位成人短期培训学校
  • wordpress主题 博客百度seo优化工具
  • 网站建立风格市场调研报告3000字范文
  • 荥阳网站制作百度一下网页入口
  • 手机营销网站模板8个公开大数据网站
  • 给网站写文章怎么做快速排名提升
  • 上海网站备案公司济南网站建设老威
  • 乐清做网站培训焦作关键词优化排名
  • 做俄罗斯网站网站关键词搜索排名优化
  • 网站正在建设中 源码下载新东方托福班价目表
  • 营销型网站建设网站建设资讯百度竞价个人开户
  • 重庆新闻论坛新闻评论临沂seo网站管理
  • 南平做网站今天国际新闻最新消息
  • 怎么看域名在哪里注册的网站优化排名推广
  • wordpress图片翻页网站内容优化关键词布局
  • 独立ip虚拟主机seo的流程是怎么样的
  • 网站服务器名是什么济南网络推广公司
  • 系统网站怎么做响应式网站建设
  • 黄山网站开发河北网站seo地址
  • 深圳网站设计服务器
  • 做网站图片太大好吗下载百度导航最新版本
  • 安平县做百度网站电话淘宝指数网站
  • 怎么在自己做的网站上发视频教程seo优化网站优化排名
  • 便宜的做网站公司长沙网站关键词排名
  • 做得比较好的公司网站网址域名ip查询
  • 如何做英文网站的外链seo在哪学
  • 给出一个网站怎么做渗透测试申请一个网站
  • 百度搜索引擎收录入口谈谈你对seo概念的理解
  • 好看到让人久久不忘的电影seo和竞价排名的区别