okeyear 发表于 2016-6-4 07:11:53

Scientific Linux安装Lnmp 1.3的方法

执行一键安装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 即可。
页: [1]
查看完整版本: Scientific Linux安装Lnmp 1.3的方法