67 lines
1.3 KiB
Plaintext
67 lines
1.3 KiB
Plaintext
# 大的VMWARE主机
|
||
https://10.10.14.93/
|
||
root
|
||
DsideaL4r5t6y7u!@#
|
||
|
||
# 官方操作系统包下载
|
||
https://noiresources.ccf.org.cn/ubuntu-noi-v2.0.iso
|
||
|
||
# 安装并配置ip
|
||
IP: 10.10.14.236
|
||
掩码: 255.255.255.0
|
||
DNS1:219.149.194.55
|
||
DNS2:219.149.194.66
|
||
|
||
# 安装Vmware Tools
|
||
tar zxvf VMwareTools-10.3.23-17030940.tar.gz
|
||
sudo ./vmware-tools-distrib/vmware-install.pl
|
||
|
||
输完命令回车就好
|
||
|
||
提示需要 yes/no 的敲 yes 命令回车
|
||
|
||
# 使用SecureCrt 远程连接到Unbutu,不要使用Vmware中的WEB页面操作,太麻烦了!
|
||
service ssh start
|
||
sudo systemctl enable ssh
|
||
sudo systemctl status ssh
|
||
|
||
IP: 10.10.14.236
|
||
PORT:22
|
||
用户名:shl
|
||
密码: shl112358
|
||
|
||
|
||
|
||
# 更新系统
|
||
sudo cp /etc/apt/sources.list /etc/apt/sources.list.old
|
||
|
||
#安装 Gnome
|
||
sudo apt update
|
||
sudo apt install ubuntu-desktop
|
||
|
||
#安装 Xfce
|
||
sudo apt update
|
||
sudo apt install xubuntu-desktop
|
||
|
||
# 安装远程桌面
|
||
|
||
sudo apt install xrdp
|
||
sudo systemctl enable xrdp
|
||
sudo adduser xrdp ssl-cert
|
||
sudo systemctl restart xrdp
|
||
|
||
sudo systemctl status xrdp
|
||
|
||
# windows远程连接
|
||
sudo apt install net-tools
|
||
ifconfig
|
||
|
||
10.10.14.236
|
||
|
||
然后使用Windows自带的远程桌面软件连接服务器IP地址或者域名就行了。
|
||
mstsc 10.10.14.236
|
||
用户名:shl
|
||
密码: shl112358
|
||
|
||
|