我们有些网友的服务器是需要用来搭建桌面环境的,如果能有可以安装Windows系统的那肯定是优先安装,这样省的我们再去想办法。其他的话,我们可以用DD或者VNC的技术手段去安装WIndows或者Linux桌面系统。比如GNOME等。我们常用的会在CENTOS7或者Ubuntu18系统镜像中安装,具体的基本流程简单 记录一下。
1、CentOS7
yum update -y
yum upgrade -y
yum check-update
yum groupinstall "X Window System"
yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts
unlink /etc/systemd/system/default.target
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
startx
reboot
2、Ubuntu
apt update
apt upgrade
sudo apt-get install ubuntu-desktop
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install gnome
sudo apt-get install ubuntu-gnome-desktop
sudo apt-get install gnome-shell
sudo apt-get install gnome-tweak-tool
startx
ctrl + alt + backspace
我们可以根据已有的系统去选择安装。