进入 源文件夹下载适用于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://e...
centos7, VirtualBox, VPS, 虚拟机阅读全文
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 ...
centos7, VPS阅读全文
对于现在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位系...
VPS, wamp阅读全文
前几天给博客换了一个空间,从独立服务器换成VPS(PS.穷人养不起了)。按部就班搭建web环境(php+nginx+mysql),迁移文件,迁移数据,域名重新做解析。
静态页显示正常,打开后台登陆页面。 提示: No input file specified.
测试其他php, 全提示: No input file specified.
度娘让我试了,
1.修改php.ini 中的; cgi.force_redirect = 1 。(尝试之后没解决)
2.nginx配置文件/etc/nginx/sites-available/ 中www.12264.com.c...
VPS, WordPress阅读全文