Several problems with iNode installation under Linuxmint

Source: Internet
Author: User
Tags linux mint
The first problem encountered when installing iNode in Linuxmint is: 1. /install. sh: 80: chkconfig: notfound2./install. sh: 80: chkconfig: notfound3StartingAuthenMngService :... the first problem encountered when installing iNode in Linux mint is: 1. /install. sh: 80: chkconfig: not found 2. /install. sh: 80: chkconfig: not found 3 Starting AuthenMngService: cd: 2: can't cd to/etc/sysconfig/network-scripts causes this problem because H3C is mainly for enterprise users and the program is written for Red Hat. Fedora can run completely normally, Ubun Tu can be used, but there is a small problem. The default Nic configuration file in Red Hat is in/etc/sysconfig/network-scripts, while in ubuntu/etc/network, linux mint is under/etc/network, we only need to install the enablecards under the iNodeClient directory. the ps file is opened as an administrator and you will find the following code: 1 #! /Bin/sh 2 cd/etc/sysconfig/network-scripts 3 for x in eth0 eth1 eth2 eth3 eth4 eth5 eth6 eth7 4 do 5 if [-e "ifcfg-$ x"] 6 then 7 ifconfig $ x up 8 fi 9 done the second line naturally knows where the problem is located, modify it :#! /Bin/sh cd/etc/network for x in eth0 eth1 eth2 eth3 eth4 eth5 eth6 eth7 do if [-e "ifcfg-$ x"] then ifconfig $ x up fi done second the problem is libtiff. the so.3 file cannot be found because the new linux mint or ubuntu version has a newer version of libtiff, which is generally libtiff. so.4, so we only need to use a soft link to link them. First, use the following command to locate the directory where the libtiff file is located: 1 locate libtiff get the returned information you will see two: 1/usr/lib/i386-linux-gnu/libtiff. so.42/usr/lib/i386-linux-gnu/libtiff. so.4.3.6 the second article is actually libtiff. so.4 soft link, so we still use libtiff here. so.4 create soft link, command: 1 sudo ln-s/usr/lib/i386-linux-gnu/lib/libtiff. so.4/usr/lib-linux-gnu/libtiff. so.3 pay attention to the administrator privilege! After completing this operation, you can use iNode to connect to the Internet.
 
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.