说明
我们很多时候想学习Linux
或者玩几个开源项目,奈何手里只有一台VPS又担心出错心里没有底该怎么办?不会解决的可能会直接重装系统,这很费精力。instantbox
的出现很好的解决了这一难题,使用该工具可以让你仅通过浏览器的情况下,快速创建一个开箱即用的Linux
系统,可以随时调整配置、使用时长,不用的话可以直接删掉。
目前instantbox
支持了Ubuntu
、CentOS
、Debian
、Alpine
等主流系统,不过由于是通过Docker
实现的,所以平时有些命令操作肯定是不能用了,但一般情况下还是可以满足需求的,搭建方法也是超简单,这里说下。
截图
安装
Github地址:https://github.com/instantbox/instantbox
demo演示地址:http://35.220.214.188:8888/
1、安装Docker
使用以下命令:
#CentOS 6
rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum update -y
yum -y install docker-io
service docker start
chkconfig docker on
#CentOS 7、Debian、Ubuntu
curl -sSL https://get.docker.com/ | sh
systemctl start docker
systemctl enable docker
2、安装Instantbox
#期间会要你输入端口等信息
mkdir instantbox && cd $_
bash <(curl -sSL https://raw.githubusercontent.com/instantbox/instantbox/master/init.sh)
#启动容器
docker-compose up -d
然后使用ip:port
访问即可。
对于CentOS
系统,还需要开启端口,比如你上面填的8888
,使用命令:
#CentOS 6
iptables -I INPUT -p tcp --dport 8888 -j ACCEPT
service iptables save
service iptables restart
#CentOS 7
firewall-cmd --zone=public --add-port=8888/tcp --permanent
firewall-cmd --reload
最后就可以随便开系统和删系统了,界面颜值还是挺高的。
相关推荐
- Ubuntu/Debian 系统安装配置 UFW 简单防火墙
- CentOS 7 安装使用 iptables 防火墙方法介绍
- Linux 服务器配置密钥实现远程免密登录
- CentOS 7 firewalld 防火墙常用命令汇总
- 如何给Redis设置临时或永久密码?
- 在Linux系统中安装配置使用DenyHosts防护工具
文章作者:喵斯基部落
原文地址:https://www.moewah.com/archives/1058.html
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。非商业转载及引用请注明出处(作者、原文链接),商业转载请联系作者获得授权。