Ubuntu安装

本文最后更新于 2024年12月2日 晚上

准备Ubuntu

从Ubuntu官网下载镜像

安装ubuntu

虚拟机安装ubuntu

启用ssh登录root

修改root用户密码

1
sudo passwd root

切换到root用户

1
su -

修改配置文件, 找到PermitRootLogin,将后面的字符串修改为yes

1
2
vi /etc/ssh/sshd_config
PermitRootLogin yes

重启ssh服务

1
service sshd restart

Ubuntu 16.04 配置固定IP

虚拟机采用NAT模式,编辑配置文件

1
vi /etc/network/interfaces

文件内容如下,修改相应的IP地址、网关、子网掩码以及DNS

1
2
3
4
5
6
7
auto ens33
iface ens33 inet static
network 192.168.174.0
netmask 255.255.255.0
address 192.168.174.3
gateway 192.168.174.2
dns-nameservers 114.114.114.114

重启网卡,若无效果则重启系统

1
sudo /etc/init.d/networking restart

Ubuntu 18.04 配置固定IP

虚拟机采用NAT模式,编辑配置文件

1
vi /etc/netplan/50-cloud-init.yaml

文件内容如下,修改相应的IP地址、网关、子网掩码以及DNS

1
2
3
4
5
6
7
8
9
network:
ethernets:
ens32:
addresses: [192.168.174.3/24]
optional: true
gateway4: 192.168.174.2
nameservers:
addresses: [114.114.114.114, 8.8.8.8]
version: 2

重启网卡

1
netplan apply

更换阿里源

1
2
3
4
5
6
7
8
9
10
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

Ubuntu安装
https://www.bugfree.top/2021/05/28/ubuntu/Ubuntu安装/
作者
lizhenguo
发布于
2021年5月28日
更新于
2024年12月2日
许可协议