本文主要是介绍Liunx搭建小霸王游戏,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
前提准备
centos7虚拟机(需联网)
远程连接工具finalshell / xshell
游戏源码:
链接:https://pan.baidu.com/s/1Y4p2NICZNHzlKW_SkTuUVA?pwd=mptl
提取码:mptl
#1.搭建准备
#永久关闭seliunx
sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config
#关闭防火墙
systemctl stop firewalld
#禁止开机自启动
systemctl disable firewalld #2.安装nginx
#更新源
yum -y install yum-plugin-priorities
#配置nginx官方源命令cat >/etc/yum.repos.d/nginx.repo<<'EOF'
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
priority=1
EOF#安装新版Nginx
yum install nginx -y
#进入到站点目录
cd /usr/share/nginx/
#使用远程工具将游戏源码上传到该目录,或者使用上传下载的命令
#安装上传下载工具
yum install lrzsz -yrz回车即可上传弹窗#解压游戏的代码
unzip -o html*.zip#启动nginxeb服务
systemctl start nginx
systemctl enable nginx#获取Linux服务器的ip地址
ifconfig在浏览器中输入ip地址回车即可进入,小霸王游戏机!
这篇关于Liunx搭建小霸王游戏的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!