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
  • 相关阅读:
    区分/不区分大小写的比较,查找字符串在另一字符串中的位置,字符串开头是否包括另一字符串 hasPrefix
    获取文件名以及后缀
    监听Documents文件夹内文件发生改变
    根据路径获取文件大小
    获取视频第一帧的方法
    判断图片格式
    iTunes文件共享
    iOS 10 隐私权限设置
    uCos 学习:0-有关概念
    ALSA 有关文档
  • 原文地址:https://www.cnblogs.com/kerrycode/p/9326808.html
Copyright © 2011-2022 走看看