- 积分
- 2
- 威望
-
- 金钱
-
- 注册时间
- 2016-6-4
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
执行一键安装lnmp1.3过程中,提示错误“Unable to get Linux distribution name, or do NOT support the current distribution.”
明显是不支持此发行版;但Scientific Linux 和CentOS,RHEL都完美兼容的啊。
于是找脚本怎么判断的系统版本,终于在 ./include/init.sh 中找到了
```shell
Get_Dist_Name()
{
if grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then
DISTRO='CentOS'
PM='yum'
```
于是编辑 vim /etc/redhat-release
在行首加上CentOS
如下
> CentOS Scientific Linux release 6.6 (Carbon)
再次安装lnmp,没问题了;
建议:
作者加上关于Scientific Linux的判断,结果为CentOS 即可。 |
|