前面写的教程需要一步步去查看执行的结果,看到很多回复的朋友说碰到很多问题,这次教程是通过Shell脚本直接一次到位,不需要那么多繁琐的操作 工具:putty(登录后台运行脚本)、WinScp(上传文件) 脚本文件:
文件名:oneKeyInstall.sh
#!/bin/bash
apt-get update
apt-get upgrade
apt-get install ubuntu-desktop
ping 127.0.0.1 -c 5
mv 50-ubuntu.conf /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
mv 1.profile /root/.profile
ping 127.0.0.1 -c 5
reboot
配置文件-1:1.profile
# ~/.profile: executed by Bourne-compatible login shells.
if [ >gt;quot;$BASH>gt;quot; ]; then
>gt;nbsp;if [ -f ~/.bashrc ]; then
>gt;nbsp;>gt;nbsp;. ~/.bashrc
>gt;nbsp;fi
fi
tty -s >gt;gt;>gt;gt; mesg n || true
配置文件-2:50-ubuntu.conf
[Seat:*]
user-session=ubuntu
greeter-show-manual-login=true
allow-guest=false
注意:如果是将这些代码直接写到文件(在win7),一定要保存为unix-ANSI格式,否则win7默认是gbk,复制到linux系统会执行可能会由于编码问题而失败(可以直接下载我的资源文件) 操作步骤:
1、通过WinSCP文件传输工具将这三个文件放在服务器的同一个文件夹下
2、putty登录后台执行脚本 bash oneKeyInstall.sh
3、执行结束后在阿里云终端登录(可以用root登录)
是不是很简单呢?小伙伴快去试试吧