现在位置: 首页 >
RakSmart教程 > 文章
目前,我们购买的RAKsmart VPS主机产品是有面板的,采用的是我们熟悉的SolusVM管理面板。但是与一般的主机商稍微不同的是,不需要直接登录SolusVM管理,而在RAKsmart账户后台可以看到直接的入口,以及常规的应用软件,这个比一般的商家需要登录SolusVM管理方便很多。前几天有网友提到不会使用SolusVM面板,购买的RAKsmart VPS主机无法重新安装系统,在这篇文章中,我们简单的看看RAKsmart 系统的使用。
1、重新安装系统
我们在...
RAKsmart SolusVM, RakSmart VPS, RAKsmart面板阅读全文
Raksmart 商家是华人创办的,且目标主要市场还是在中国。我们如果遇到问题可以直接在后台工单询问解决方案。基本上我们有的问题,会在几分钟内得到快速响应回答,这个一点比一般的海外主机商24小时、48小时的响应机制优秀不少。比如我们在使用服务器过程中,希望重新安装系统,服务器出现故障,都是可以找他们解决的。
我们可以看到,当前我提交工单提问,得到立即响应,然后帮我重新安装系统解决。
Raksmart中文客服阅读全文
代码如下:
1 #!/bin/bash
2 i=0;
3 str=""
4 arr=("|" "/" "-" "\\")
5 while [ $i -le 100 ]
6 do
7 let index=i%4
8 let indexcolor=i%8
9 let color=30+indexcolor
10 printf "\e[0;$color;1m[%-100s][%d%%]%c\r" "$str" "$i" "${arr[$index]}"
11 sleep 0.1
12 let i++
13 str+='='
14 done
15 printf "\n"
没错代码就这么简单 其实前面的都差不多就是下面的输出时颜色控制线面我们就介绍一下颜色控制的原理
终端的字符颜...
shell脚本, 多彩进度条阅读全文
在本文中,笔者将解释如何在Ubuntu 17.04上创建lnmp一键安装包。
注意:在本文中,您将需要sudo或root访问命令。如果您已经升级到根用户,您可以省略sudo命令。
步骤1:安装Apache
首先,更新包管理器。
sudo apt-get update -y #using the -y option will automatically accept the conditions of the source update
sudo apt-get install apache2 -y #install apache
sudo systemctl start apache2.service #start apache
或者...
Apache, MySQL, PHP, Ubuntu 17.04阅读全文