赞
踩
记录一下使用virt-manager安装ubuntu22.04虚拟机
地址:http://releases.ubuntu.com/jammy/
下载:ubuntu-22.04.2-live-server-amd64.iso
注:我当时下载的时候是22.04.1 这里就不下载这个22.04.2版本了
使用本地ISO文件
CPU数量设置为10个。内存设置为10G
勾选配置按钮
设置驱动类型为VirtIO
设置驱动类型为VirtIO
设置类型为VNC server
会自动DHCP一个IP,我这里进行了手动的配置
我给机器配置的网络信息如下
Subnet:192.168.150.0/24
Address:192.168.150.55
Gateway:192.168.150.254
Name servers:不做配置
Search domains:不做配置
使用中科大的源:https://mirrors.ustc.edu.cn/ubuntu/
我这里没有做特殊的配置
name:ubuntu
hostname:ubuntu
username:ubuntu
passwd:smartcore
1、修改root用户密码为smartcore
sudo passwd
2、修改sshd服务配置,打开root用户登陆
sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
sudo service sshd restart
1、设置DNS
cat >> /etc/systemd/resolved.conf << EOF
DNS=8.8.8.8 114.114.114.114
EOF
systemctl restart systemd-resolved.service
2、安装时间服务
sudo apt install -y chrony && sudo systemctl enable --now chrony
3、关闭防火墙
systemctl stop ufw
systemctl disable ufw
4、更新系统
apt-get update;
apt-get update -y;
几个重点内容:
1、修改驱动类型,不同的驱动类型的虚拟设备的性能差异极大
2、源使用中科大的比阿里云的要好用的多
3、为了方便的话,最好是将root的登陆打开。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。