Ubuntu Minimal是一种精简的安装方式,它只安装最基本的系统组件,适合那些需要最小化系统占用资源或者想要自定义安装的用户。以下是Ubuntu Minimal软件安装步骤:
sudo apt update
sudo apt upgrade
sudo apt install curl wget vim
sudo nano /etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
enp0s3:
dhcp4: no
addresses: [192.168.1.100/24]
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 8.8.4.4]
sudo netplan apply
sudo apt install ubuntu-desktop
sudo apt install fcitx fcitx-sogoupinyin fcitx-config-gtk
im-config -n fcitx
apt search
命令搜索并安装所需的软件包。请注意,具体的安装步骤可能会根据 Ubuntu 版本的不同而有所变化。建议查阅最新的官方文档或教程以获取最准确的信息。