Linux mint下安裝iNode遇到的幾個問題

2021-09-10 12:09:45 字數 1571 閱讀 5997

首先乙個問題就是安裝的時候出現的:

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

產生這個問題的原因是h3c是以企業使用者為主,程式是為red hat編寫,fedora可以完全正常執行,ubuntu下能用但是有一點點小問題。而red hat下預設網絡卡的配製檔案在/etc/sysconfig/network-scripts下,而ubuntu在/etc/network下,linux mint也是在/etc/network下面,我們只需要將你安裝的inodeclient目錄下的enablecards.ps檔案以管理員許可權開啟,你會發現得到以下的**:

1  #!/bin/sh

2 cd /etc/sysconfig/network-scripts

3for x in

eth0 eth1 eth2 eth3 eth4 eth5 eth6 eth7 4do

5if [ -e "

ifcfg-$x

"]

6then

7ifconfig

$x up 8fi

9done

一看其中的第二行自然便知道問題的所在,將其修改為:

#!/bin/sh

cd /etc/network

for x in

eth0 eth1 eth2 eth3 eth4 eth5 eth6 eth7

doif [ -e "

ifcfg-$x

"]

then

ifconfig

$x up

fidone

第二個問題是libtiff.so.3檔案找不到的問題

因為新版本的linux mint或者ubuntu他們的libtiff比較新,一般為libtiff.so.4,所以這個時候我們只需要用乙個軟鏈結將他們鏈結一下即可。

首先使用下面的命令來定位libtiff檔案所在的目錄:

1

locate libtiff

得到的返回資訊中你會看到這樣兩條:

1 /usr/lib/i386-linux-gnu/libtiff.so.4

2 /usr/lib/i386-linux-gnu/libtiff.so.4.3.6

1

sudo

ln -s /usr/lib/i386-linux-gnu/lib/libtiff.so.4 /usr/lib-linux-gnu/libtiff.so.3

注意要以管理員許可權哦!弄完以後就可以用inode鏈結網路上網了。

posted @

2013-05-03 06:55

傾杯天涯 閱讀(

...)

編輯收藏

Linux mint下安裝iNode遇到的幾個問題

首先乙個問題就是安裝的時候出現的 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 ne...

在Linux Mint13下編譯安裝mono執行時

最近一直想體驗下mono在web開發上到底進展到什麼程度,挑戰一下它對web開發的極限。因為asp.net mvc本身依賴windows平台的東西不太多,所以這些assembly移植到mono linux上來應該不是大問題。網上很多人很早也介紹了相關主題,但是他們大部分是基於這樣的模式 在visua...

Linux Mint裝機 安裝MySQL

1.自動安裝mysql包 sudo apt get install mysql serverl mysql client libmysqlclient dev安裝過程中會提示輸入root密碼。2.測試是否安裝成功 執行 mysql,如果出現如下錯誤資訊 error 2002 hy000 can t ...