Ubuntu 安装部署基本内容
基础软件
sudo apt-get update -y
sudo apt-get install -y \
vim \
net-tools \
open-vm-tool* \
openssh-server \
gcc \
g++ \
cmake \
git \
gnome-tweaks \
bleachbit \
gnome-shell-extensions
# open-vm开机挂载共享目录
vim /etc/rc.local
# /etc/rc.local键入以下内容
#!/bin/sh -e
sudo vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other
# 赋予/etc/rc.local执行权限
chmod +x /etc/rc.local
# 插件下载
# https://extensions.gnome.org
# 主题、icon等下载
# https://gnome-look.org
评论区(暂无评论)