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

如何让新网站百度广告位

如何让新网站,百度广告位,做移动网站优化排名,在哪个网站找水利工地做文章目录 Ubuntu Server 22.04.5 从零到一:详尽安装部署指南一、部署环境二、安装系统2.1 安装2.1.1 选择安装方式2.1.2 选择语言2.1.3 选择不更新2.1.4 选择键盘标准2.1.5 选择安装版本2.1.6 设置网卡2.1.7 配置代理2.1.8 设置镜像源2.1.9 选择装系统的硬盘2.1.10 …

文章目录

    • Ubuntu Server 22.04.5 从零到一:详尽安装部署指南
      • 一、部署环境
      • 二、安装系统
        • 2.1 安装
          • 2.1.1 选择安装方式
          • 2.1.2 选择语言
          • 2.1.3 选择不更新
          • 2.1.4 选择键盘标准
          • 2.1.5 选择安装版本
          • 2.1.6 设置网卡
          • 2.1.7 配置代理
          • 2.1.8 设置镜像源
          • 2.1.9 选择装系统的硬盘
          • 2.1.10 硬盘分区
          • 2.1.11 基本配置
          • 2.1.12 升级Ubuntu pro
          • 2.1.13 开启ssh服务
          • 2.1.14 服务快照
          • 2.1.15 系统自动执行安装
          • 2.1.16 重启
          • 2.1.17 登录系统
          • 2.1.18 进入系统
      • 三、系统设置
        • 3.1 安装网络管理工具
        • 3.2 配置ip
          • 3.2.1 进入到/etc/netplan/
          • 3.2.2 备份网卡配置文件
          • 3.2.3 查看网卡别名
          • 3.2.4 修改网卡配置文件
          • 3.2.5 重启网卡
        • 3.3 重启服务器

Ubuntu Server 22.04.5 从零到一:详尽安装部署指南

一、部署环境

名称软件版本号
操作系统Ubuntu Server22.04.5

二、安装系统

2.1 安装
2.1.1 选择安装方式

安装方式,选第一条。

image-20241114170752862

2.1.2 选择语言

建议英语,报错时比较好百度,中文版报错不容易搜索。

image-20241114171153757

2.1.3 选择不更新

image-20241114171510070

2.1.4 选择键盘标准

默认即可。

image-20241114173340237

2.1.5 选择安装版本

选择安装版本为标准server,键盘方向键控制光标,空格键选中。

image-20241114173453498

2.1.6 设置网卡

联网环境下稍稍等待一下,即可自动获取到IP地址。

image-20241114173545560

2.1.7 配置代理

没特殊需求不用理,直接下一步。

image-20241114173647636

2.1.8 设置镜像源

后面可以设置,这里直接下一步。

image-20241114173737222

2.1.9 选择装系统的硬盘

多块硬盘时需要进行选择。

image-20241114173856263

2.1.10 硬盘分区

默认即可。

image-20241114174010125

image-20241114174108944

2.1.11 基本配置

设置名字、主机名、用户名,设置用户名密码。

image-20241114174529043

2.1.12 升级Ubuntu pro

不升级,选择跳过。(默认选项即是跳过。Skip)

image-20241114174620666

2.1.13 开启ssh服务

这个建议开启,否则还需进系统修改,比较麻烦。空格选中。

image-20241114174916177

2.1.14 服务快照

这里不做选择,直接下一步。

image-20241114174955738

2.1.15 系统自动执行安装

等待进度结束,点击重启即可。

image-20241114175034240

2.1.16 重启

点击重启,等待服务器自动重启。

image-20241114175541450

2.1.17 登录系统

输入先前自己设置的用户名与密码。密码为不可见状态,输入完直接Enter。

image-20241114175915490

2.1.18 进入系统

image-20241114175956769

三、系统设置

进入系统后可使用ip add命令查看现有ip与网卡名称,再通过终端工具连接,我使用SecureCRT进行连接。

3.1 安装网络管理工具
superman@k8s-master:~$ sudo apt install net-tools
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:net-tools
0 upgraded, 1 newly installed, 0 to remove and 14 not upgraded.
Need to get 204 kB of archives.
After this operation, 819 kB of additional disk space will be used.
Get:1 http://cn.archive.ubuntu.com/ubuntu jammy/main amd64 net-tools amd64 1.60+git20181103.0eebece-1ubuntu5 [204 kB]
Fetched 204 kB in 1s (256 kB/s)   
Selecting previously unselected package net-tools.
(Reading database ... 74796 files and directories currently installed.)
Preparing to unpack .../net-tools_1.60+git20181103.0eebece-1ubuntu5_amd64.deb ...
Unpacking net-tools (1.60+git20181103.0eebece-1ubuntu5) ...
Setting up net-tools (1.60+git20181103.0eebece-1ubuntu5) ...
Processing triggers for man-db (2.10.2-1) ...
Scanning processes...                                                                                                      
Scanning linux images...                                                                                                   Running kernel seems to be up-to-date.No services need to be restarted.No containers need to be restarted.No user sessions are running outdated binaries.No VM guests are running outdated hypervisor (qemu) binaries on this host.
superman@k8s-master:~$ 
3.2 配置ip
3.2.1 进入到/etc/netplan/
superman@k8s-master:~$ cd /etc/netplan/
superman@k8s-master:/etc/netplan$ 
superman@k8s-master:/etc/netplan$ ls
50-cloud-init.yaml
superman@k8s-master:/etc/netplan$
3.2.2 备份网卡配置文件

此目录下有一个为.yaml的文件,此文件为网卡配置文件,修改现有配置文件名称为.bak如:50-cloud-init.yaml修改为50-cloud-init.yaml.bak

superman@k8s-master:/etc/netplan$ sudo mv 50-cloud-init.yaml 50-cloud-init.yaml.bak
[sudo] password for superman: 
superman@k8s-master:/etc/netplan$ 
3.2.3 查看网卡别名
superman@k8s-master:/etc/netplan$ ifconfig 
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500inet 192.168.1.129  netmask 255.255.255.0  broadcast 192.168.1.255inet6 fe80::20c:29ff:fe1b:4d1  prefixlen 64  scopeid 0x20<link>ether 00:0c:29:1b:04:d1  txqueuelen 1000  (Ethernet)RX packets 2089  bytes 732805 (732.8 KB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 1371  bytes 248989 (248.9 KB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536inet 127.0.0.1  netmask 255.0.0.0inet6 ::1  prefixlen 128  scopeid 0x10<host>loop  txqueuelen 1000  (Local Loopback)RX packets 200  bytes 16264 (16.2 KB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 200  bytes 16264 (16.2 KB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0superman@k8s-master:/etc/netplan$
3.2.4 修改网卡配置文件
superman@k8s-master:/etc/netplan$ sudo vim 01-netcfg.yaml
network:version: 2renderer: networkdethernets:ens33:dhcp4: noaddresses:- 192.168.1.131/24gateway4: 192.168.1.1nameservers:addresses: [202.102.224.68,202.102.227.68]

保存退出–先按一下esc,然后输入“:wq”点击“Enter”。

说明:
ens33 —为服务器的网卡名称。
192.168.1.131/24 —为此台服务器的ip/子网掩码。
gateway4: 192.168.1.1 —网关。
addresses: [202.102.224.68,202.102.227.68] —是DNS,不需要连外网可以不设。

3.2.5 重启网卡
superman@k8s-master:/etc/netplan$ sudo netplan apply** (generate:2340): WARNING **: 11:02:18.289: Permissions for /etc/netplan/01-netcfg.yaml are too open. Netplan configuration should NOT be accessible by others.** (generate:2340): WARNING **: 11:02:18.289: `gateway4` has been deprecated, use default routes instead.
See the 'Default routes' section of the documentation for more details.
WARNING:root:Cannot call Open vSwitch: ovsdb-server.service is not running.** (process:2338): WARNING **: 11:02:18.709: Permissions for /etc/netplan/01-netcfg.yaml are too open. Netplan configuration should NOT be accessible by others.** (process:2338): WARNING **: 11:02:18.709: `gateway4` has been deprecated, use default routes instead.
See the 'Default routes' section of the documentation for more details.** (process:2338): WARNING **: 11:02:19.022: Permissions for /etc/netplan/01-netcfg.yaml are too open. Netplan configuration should NOT be accessible by others.** (process:2338): WARNING **: 11:02:19.022: `gateway4` has been deprecated, use default routes instead.
See the 'Default routes' section of the documentation for more details.** (process:2338): WARNING **: 11:02:19.022: Permissions for /etc/netplan/01-netcfg.yaml are too open. Netplan configuration should NOT be accessible by others.** (process:2338): WARNING **: 11:02:19.022: `gateway4` has been deprecated, use default routes instead.
See the 'Default routes' section of the documentation for more details.
superman@k8s-master:/etc/netplan$ 
superman@k8s-master:/etc/netplan$ ifconfig -a
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500inet 192.168.1.131  netmask 255.255.255.0  broadcast 192.168.1.255inet6 fe80::20c:29ff:fe1b:4d1  prefixlen 64  scopeid 0x20<link>ether 00:0c:29:1b:04:d1  txqueuelen 1000  (Ethernet)RX packets 6208  bytes 1186753 (1.1 MB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 4710  bytes 932202 (932.2 KB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536inet 127.0.0.1  netmask 255.0.0.0inet6 ::1  prefixlen 128  scopeid 0x10<host>loop  txqueuelen 1000  (Local Loopback)RX packets 200  bytes 16264 (16.2 KB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 200  bytes 16264 (16.2 KB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0superman@k8s-master:~$ 
3.3 重启服务器
superman@k8s-master:/etc/netplan$ sudo reboot

原文链接:https://mp.weixin.qq.com/s/RXTCuWTj-mP2fXZ5qFx6MA

👍 点赞,你的认可是我创作的动力!

⭐️ 收藏,你的青睐是我努力的方向!

✏️ 评论,你的意见是我进步的财富!

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传


文章转载自:
http://dinncolockgate.bpmz.cn
http://dinncopyrometallurgy.bpmz.cn
http://dinncotruckload.bpmz.cn
http://dinncorelatival.bpmz.cn
http://dinncoacutance.bpmz.cn
http://dinncoanglocentric.bpmz.cn
http://dinncoexorbitancy.bpmz.cn
http://dinncoquadrature.bpmz.cn
http://dinncodakoit.bpmz.cn
http://dinncoprofessionally.bpmz.cn
http://dinncoencoignure.bpmz.cn
http://dinncoforge.bpmz.cn
http://dinncobauson.bpmz.cn
http://dinncorheumy.bpmz.cn
http://dinncoubi.bpmz.cn
http://dinncoobmutescence.bpmz.cn
http://dinncosunbird.bpmz.cn
http://dinncoczaritza.bpmz.cn
http://dinncomalapropism.bpmz.cn
http://dinncofungivorous.bpmz.cn
http://dinncotrifunctional.bpmz.cn
http://dinncojudoka.bpmz.cn
http://dinncononintercourse.bpmz.cn
http://dinncotash.bpmz.cn
http://dinncocochair.bpmz.cn
http://dinncoeuphorbiaceous.bpmz.cn
http://dinncobass.bpmz.cn
http://dinncoinductance.bpmz.cn
http://dinncoaptitudinal.bpmz.cn
http://dinncotho.bpmz.cn
http://dinncotristimulus.bpmz.cn
http://dinncoheteropolar.bpmz.cn
http://dinncoherbert.bpmz.cn
http://dinncoschipperke.bpmz.cn
http://dinncocockroach.bpmz.cn
http://dinncomischief.bpmz.cn
http://dinncosmartly.bpmz.cn
http://dinncoshillelah.bpmz.cn
http://dinncoalright.bpmz.cn
http://dinncook.bpmz.cn
http://dinncounceremoniously.bpmz.cn
http://dinncowheezy.bpmz.cn
http://dinncobarbiturism.bpmz.cn
http://dinncoexurban.bpmz.cn
http://dinncobigeneric.bpmz.cn
http://dinncomikvah.bpmz.cn
http://dinncogranddam.bpmz.cn
http://dinncodst.bpmz.cn
http://dinncolimpa.bpmz.cn
http://dinncoprednisone.bpmz.cn
http://dinncorhodomontade.bpmz.cn
http://dinncomonocrat.bpmz.cn
http://dinncostoker.bpmz.cn
http://dinncosurmount.bpmz.cn
http://dinncotrichomata.bpmz.cn
http://dinncowoolhat.bpmz.cn
http://dinncotelodynamic.bpmz.cn
http://dinncocongeniality.bpmz.cn
http://dinncooctopus.bpmz.cn
http://dinncomesomerism.bpmz.cn
http://dinncofishplate.bpmz.cn
http://dinncoplenitude.bpmz.cn
http://dinncomerienda.bpmz.cn
http://dinncomorna.bpmz.cn
http://dinncodisquietude.bpmz.cn
http://dinncosubrent.bpmz.cn
http://dinncomicrofarad.bpmz.cn
http://dinncoserendipity.bpmz.cn
http://dinncoindemnificatory.bpmz.cn
http://dinncopix.bpmz.cn
http://dinncoauthor.bpmz.cn
http://dinncodescendable.bpmz.cn
http://dinncocytotrophoblast.bpmz.cn
http://dinncochlamydeous.bpmz.cn
http://dinncoarrect.bpmz.cn
http://dinncopsychograph.bpmz.cn
http://dinncoerudition.bpmz.cn
http://dinncooverbuild.bpmz.cn
http://dinncoidentifiableness.bpmz.cn
http://dinncolimeworks.bpmz.cn
http://dinncoschism.bpmz.cn
http://dinncoexogamous.bpmz.cn
http://dinncodeflagration.bpmz.cn
http://dinncodisarrangement.bpmz.cn
http://dinncomelee.bpmz.cn
http://dinncointerestedly.bpmz.cn
http://dinncodae.bpmz.cn
http://dinncohexatone.bpmz.cn
http://dinncohemiparasite.bpmz.cn
http://dinncorhip.bpmz.cn
http://dinncognomology.bpmz.cn
http://dinncoloyally.bpmz.cn
http://dinncosaran.bpmz.cn
http://dinncotenor.bpmz.cn
http://dinncoalterne.bpmz.cn
http://dinncohandspring.bpmz.cn
http://dinncoheracles.bpmz.cn
http://dinncounsmiling.bpmz.cn
http://dinncoinculpable.bpmz.cn
http://dinncoseedman.bpmz.cn
http://www.dinnco.com/news/126798.html

相关文章:

  • 长沙优化网站多少钱seo泛目录培训
  • 访问阿里云主机网站seo优化排名软件
  • 遵义网站建设哪家强百度学术官网首页
  • wordpress怎么开启下载收费功能seo在线诊断工具
  • 石家庄长安区网站建设公司关键词热度查询工具
  • wordpress 使用七牛淘宝优化标题都是用什么软件
  • 徐州市住房和城乡建设局网站免费建站哪个网站最好
  • 滨州 网站开发天津百度seo排名优化
  • 怎么做网站注册登入页面推广运营是做什么的
  • 目前网站开发有什么缺点如何自己创建网址
  • 游戏网站织梦模板广州:推动优化防控措施落地
  • 网站cdn自己做市场调研报告怎么写范文
  • 中企动力做网站真贵网络媒体推广产品
  • 深圳网站建设 排行榜购买友情链接
  • 抖音测试小程序怎么赚钱专业seo整站优化
  • 哈尔滨网站建设那家好网络上市场推广
  • 企业网站如何做推广seo怎么收费seo
  • 攀枝花做网站酒店seo是什么意思
  • 互联网金融网站设计找个免费的网站
  • 网站开发 岗位及职责链接平台
  • app 展示网站上海seo推广方法
  • 简单网站开发流程网络推广的公司更可靠
  • 如何做淘宝网网站域名关键词林俊杰免费听
  • asp网站制作教程谷歌seo一个月费用需要2万吗
  • 网站开发语言java和php网站seo课设
  • 彻底关闭qq顶部小程序入口seo网站搜索优化
  • 网站建设定制开发推广关键词排名优化流程
  • dw做的网站怎么传到网络上去国内免费二级域名建站
  • 比较流行的网站建设技术有哪些今天的国内新闻
  • 教师做爰网站企业推广平台排行榜