存档

2017年3月 的存档

锐速常用命令

2017年3月13日 评论已被关闭

service serverSpeeder start
:启动锐速,加载加速模块;使用/serverspeeder/etc/config 文件中的配置作为模块加载时的初始化参数;

service serverSpeeder stop
:停止锐速,卸载加速模块;停止锐速前请确认没有其它进程在访问/proc/net/appex/目录,例如确认控制台当前目录是否是/proc/net/appex/;

service serverSpeeder reload
: 在 不 停 止 锐 速 运 行 的 情 况 下 实 时 修 改 锐 速 参 数 配 置 , 修 改/serverspeeder/etc/config 文件的配置后运行此命令,此时加速模块不退出,参数被实时修改;

service serverSpeeder restart
:重启锐速;

service serverSpeeder status
:查看当前锐速的实时运行状态;授权状态到期时间,版本号,系统序列号,加速连接数,加速速率,配置信息等;

service serverSpeeder stats
:实时显示每个加速引擎的连接数、流量,以及所有引擎的总的连接数和流量;其中连接数统计包括网络连接数(sessions),tcp 连接数(tcp sessions),已加速的 tcp 连接数(accelerated sessions)以及活动的 tcp 连接数(active tcp sessions);流量统计包括流入(in)流量统计和流出(out)流量统计,单位均为 kbit/s;一般情况下,所有引擎的总连接数及流量即为服务器的互联网连接数及流量;

service serverSpeeder renewLic
:当有新的 License 文件可用时,联网更新 License 文件并重启锐速;

service serverSpeeder update
:当有新的锐速版本可用时,联网更新锐速并重启锐速

分类: 电脑百科 标签: ,

centos7安装VirtualBox5.1

2017年3月11日 评论已被关闭

进入 源文件夹下载适用于CentOS/RHEL引导源

# cd /etc/yum.repos.d/
# wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo

安装EPEL?,EPEL是yum的一个软件源,里面包含了许多基本源里没有的软件,因为是centos7所以选择第一句

CentOS/RHEL 7, 64 Bit (x86_64):
# rpm -Uvh http://epel.mirror.net.in/epel/7/x86_64/e/epel-release-7-9.noarch.rpm

CentOS/RHEL 6, 64 Bit (x86_64):
# rpm -Uvh http://epel.mirror.net.in/epel/6/x86_64/epel-release-6-8.noarch.rpm

安装VirtualBox5.1相关依赖包

# yum install gcc make patch dkms qt libgomp
# yum install kernel-headers kernel-devel fontforge binutils glibc-headers glibc-devel

特别注意VirtualBox安装需要有准确对应得liunx内核版本,否则出差

yum ?install ?VirtualBox-5.1

安装后测执行?VirtualBox 命令,提示报错

VirtualBox
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (3.10.0-514.6.1.el7.x86_64) or it failed to
load. Please recompile the kernel module and install it by

sudo /sbin/vboxconfig

You will not be able to start VMs until this problem is fixed.
Qt FATAL: QXcbConnection: Could not connect to display
Aborted (core dumped)
sudo /sbin/vboxconfig
vboxdrv.sh: Stopping VirtualBox services.
vboxdrv.sh: Building VirtualBox kernel modules.
This system is not currently set up to build kernel modules (system extensions).
Running the following commands should set the system up correctly:

yum install kernel-devel-3.10.0-514.6.1.el7.x86_64
(The last command may fail if your system is not fully updated.)
yum install kernel-devel
vboxdrv.sh: failed: Look at /var/log/vbox-install.log to find out what went wrong.
This system is not currently set up to build kernel modules (system extensions).
Running the following commands should set the system up correctly:

yum install kernel-devel-3.10.0-514.6.1.el7.x86_64
(The last command may fail if your system is not fully updated.)
yum install kernel-devel

There were problems setting up VirtualBox. To re-start the set-up process, run
/sbin/vboxconfig
as root.

提示内核版本不对于,按提示执行

yum install kernel-devel-3.10.0-514.6.1.el7.x86_64

yum install kernel-devel

安装所需内核版本,重装内核可用下面语句

service vboxdrv setup

后后测执行?VirtualBox 命令,出现允许正常标准

分类: 电脑百科 标签:

centos7安装GNOME桌面环境

2017年3月11日 评论已被关闭

?centos7安装GNOME桌面环境命令:
?yum?groupinstall?”GNOME?Desktop”?”Graphical?Administration?Tools”
由原进入文字界面切换成开机默认桌面界面命令:
ln?-sf?/lib/systemd/system/runlevel5.target?/etc/systemd/system/default.target
设置后需 reboot 重启检验。

由桌面界面配置默认进入文字界面,只需一行:

systemctl?set-default?multi-user.target

后如果要切回图形界面,相应地:

systemctl?set-default?graphical.target

命令输入后同样要reboot 生效
分类: 电脑百科 标签:

安装wampserver时提示丢失vcruntime140.dll、MSVCR110.dll

2017年3月11日 评论已被关闭

对于现在Windows 平台搭建网站平台的人少不了wamp套件,今天安装wampserver时先提示缺少vcruntime140.dll,后提示丢失MSVCR110.dll

提示丢失vcruntime140.dll的解决方法是安装VC++2015库,这个vcruntime140.dll是VC++2015库的一个文件。
vc++ 2015运行库64位下载地址:http://dl.pconline.com.cn/download/864971.html

提示丢失MSVCR110.dll的解决方法是安装vcredist_x86.exe,重新安装WAMPSERVER 2之后,问题解决了

对于64位系统,则需要下载wampserver 64位版,并且安装vcredist_x64.exe

64位下载地址:http://www.onlinedown.net/soft/118187.htm

vcredist_x64.exe?和vcredist_x86.exe下载地址:http://www.microsoft.com/zh-cn/download/details.aspx?id=30679

分类: 电脑百科 标签: