zoukankan      html  css  js  c++  java
  • Symantec Backup Exec 2010 安装报 bad ELF interpreter: No such file or directory

    在64位的Red Hat Enterprise Linux Server release 6.6上安装Symantec Backup Exec 2010时, 遇到下面错误:

     

    # ./installralus

    ./installralus: ../perl/Linux/bin/perl: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory

     

    出现这个错误是因为64位系统中安装32位应用程序(Symantec Backup Exec 2010的32位安装应用程序,如果是64位应用程序,就不会遇到这个问题),需要在64位系统中安装32位相关包。安装下面包即可解决这个问题。

     

    yum install glibc.i686

     

     

    在安装过程中,还遇到下面错误:

     

    Enter the system names separated by spaces on which to install RALUS: (MyLNX8)
     
    Checking system communication:
     
        Attempting /usr/bin/rsh with MyLNX8 ........................................................................... 
    Cannot /usr/bin/rsh to MyLNX8
    Initial system check failed.
     
    Press [Return] to continue: 

     

    出现这个错误的原因是因为配置文件/etc/hosts里面没有配置主机名, 在 /etc/sysconfig/network中主机名为MyLNX8

     

    # more /etc/hosts
     
    127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
     
    ::1         localhost localhost.localdomain localhost6 localhost6.localdom

     

    修改配置文件/etc/hosts后,这个问题解决。

     

    # more /etc/hosts
     
    127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
     
    ::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
     
    192.168.xx.xxx   MyLNX8.xxx.xxx.com    MyLNX8
  • 相关阅读:
    C# 提取方法重构
    防抖和节流
    利用Object.keys快速循环对象
    MVVM深入理解---小白速会
    异步组件使用详解
    动态组件使用详解
    Vue.$nextTick详解
    深入理解vue .sync修饰符
    vue计算属性---快速上手
    grid-layout 网格布局--快速上手
  • 原文地址:https://www.cnblogs.com/kerrycode/p/9326808.html
Copyright © 2011-2022 走看看