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

文章目录

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

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

一、部署环境

名称 软件 版本号
操作系统 Ubuntu Server 22.04.5

二、安装系统

2.1 安装
2.1.1 选择安装方式

安装方式,选第一条。

2.1.2 选择语言

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

2.1.3 选择不更新
2.1.4 选择键盘标准

默认即可。

2.1.5 选择安装版本

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

2.1.6 设置网卡

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

2.1.7 配置代理

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

2.1.8 设置镜像源

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

2.1.9 选择装系统的硬盘

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

2.1.10 硬盘分区

默认即可。

2.1.11 基本配置

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

2.1.12 升级Ubuntu pro

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

2.1.13 开启ssh服务

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

2.1.14 服务快照

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

2.1.15 系统自动执行安装

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

2.1.16 重启

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

2.1.17 登录系统

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

2.1.18 进入系统

三、系统设置

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

3.1 安装网络管理工具
bash 复制代码
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/
bash 复制代码
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

bash 复制代码
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 查看网卡别名
bash 复制代码
superman@k8s-master:/etc/netplan$ ifconfig 
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.129  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 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 0
        TX packets 1371  bytes 248989 (248.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::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 0
        TX packets 200  bytes 16264 (16.2 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

superman@k8s-master:/etc/netplan$
3.2.4 修改网卡配置文件
bash 复制代码
superman@k8s-master:/etc/netplan$ sudo vim 01-netcfg.yaml
bash 复制代码
network:
  version: 2
  renderer: networkd
  ethernets:
    ens33:
      dhcp4: no
      addresses:
        - 192.168.1.131/24
      gateway4: 192.168.1.1
      nameservers:
        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 重启网卡
bash 复制代码
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 1500
        inet 192.168.1.131  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 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 0
        TX packets 4710  bytes 932202 (932.2 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::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 0
        TX packets 200  bytes 16264 (16.2 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

superman@k8s-master:~$ 
3.3 重启服务器
bash 复制代码
superman@k8s-master:/etc/netplan$ sudo reboot

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

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

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

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

相关推荐
White_Mountain43 分钟前
在Ubuntu中配置mysql,并允许外部访问数据库
数据库·mysql·ubuntu
cominglately2 小时前
centos单机部署seata
linux·运维·centos
魏 无羡2 小时前
linux CentOS系统上卸载docker
linux·kubernetes·centos
coder_pig2 小时前
📝小记:Ubuntu 部署 Jenkins 打包 Flutter APK
flutter·ubuntu·jenkins
CircleMouse2 小时前
Centos7, 使用yum工具,出现 Could not resolve host: mirrorlist.centos.org
linux·运维·服务器·centos
木子Linux3 小时前
【Linux打怪升级记 | 问题01】安装Linux系统忘记设置时区怎么办?3个方法教你回到东八区
linux·运维·服务器·centos·云计算
mit6.8243 小时前
Ubuntu 系统下性能剖析工具: perf
linux·运维·ubuntu
鹏大师运维3 小时前
聊聊开源的虚拟化平台--PVE
linux·开源·虚拟化·虚拟机·pve·存储·nfs
watermelonoops3 小时前
Windows安装Ubuntu,Deepin三系统启动问题(XXX has invalid signature 您需要先加载内核)
linux·运维·ubuntu·deepin
滴水之功4 小时前
VMware OpenWrt怎么桥接模式联网
linux·openwrt