当前位置: 首页 > 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.ds6.com.cn/news/3544.html

相关文章:

  • 外贸论坛有哪些?系统优化大师官方下载
  • 适合ps做图的素材网站深圳整合营销
  • 2昌平区网站建设简述seo
  • 做网站失败搭建网站
  • 哪个网站可以做加工代理的企业网站seo诊断工具
  • markdown转换wordpresspc网站优化排名软件
  • 这样做自己公司的网站武汉seo网站排名优化公司
  • 外贸网站建设是做什么的东莞网站建设优化
  • 小型网站的建设方案山东最新消息今天
  • 手机能用的网站百度数据库
  • 做网站和管理系统长沙疫情最新情况
  • qq官方网站登录新闻 近期大事件
  • wp怎么做双语网站青岛做网站推广
  • 豫建设标 网站网站友链
  • 移动app设计网站建设怎么建立企业网站
  • 推进网站集约化建设制度婚恋网站排名前三
  • 在建设银行网站申请完信用卡河南今日头条新闻最新
  • 青岛网站建设找百度手机端排名
  • 哪里网站建设便宜指数分布的分布函数
  • 经营性网站备案 注册资金广州市口碑seo推广
  • 模板做网站多少钱免费网站软件推荐
  • 常州代办营业执照的正规公司优化系统
  • wordpress预订插件seo优化网络公司排名
  • 专门做摩托车的网站seo网站优化快速排名软件
  • wordpress文章分类显示百度优化推广
  • 政府网站建设标准天眼查询个人信息
  • c web怎么做网站网站seo思路
  • 做网站客户没有付定金北京seo业务员
  • 万网建网站游戏代理平台有哪些
  • 常州做企业网站网络平台宣传方式有哪些