Client MD Storage Manager
Bonjour,
Je rencontre quelques difficultés dans la mise en place de mon client MD Storage Manager. Pour l'instant, j'ai suivis ce blog : http://sysoptips.blogspot.fr/2010/12...d-storage.html car je n'ai trouvé aucune autre documentation.
Voici ce que j'ai fait :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| root@xxxx:~# mount /dev/cdrom /media/cdrom
mount*: périphérique bloc /dev/sr0 est protégé en écriture, sera monté en lecture seule
mount*: /dev/sr0 est déjà monté ou /media/cdrom est occupé
mount*: selon mtab, /dev/sr0 est déjà monté sur /media/cdrom0
root@xxxx:~# cp -r /media/cdrom/linux/ /tmp/
root@xxxx:~# cd /tmp/
root@xxxx:/tmp# cat installer.properties
INSTALLER_UI=silent
CHOSEN_INSTALL_FEATURE_LIST=SMclient
AUTO_START_CHOICE=0
USER_REQUESTED_RESTART=YES
REQUESTED_FO_DRIVER=mpio
root@xxxx:/tmp# cd linux/app/
root@xxxx:/tmp/linux/app# ./SMIA-LINUX-03.35.A6.58.bin -i silent -f /tmp/installer.properties
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
nawk: cmd. line:7: warning: escape sequence `\.' treated as plain `.'
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
Launching installer...
grep: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
./SMIA-LINUX-03.35.A6.58.bin: 2475: exec: /tmp/install.dir.7291/Linux/resource/jre/bin/java: not found |
Pour régler ce problème de librairies, j'ai créé un lien symbolique :
Code:
1 2 3
| root@xxxx:/tmp/linux/app# locate libc.so.6
/lib/x86_64-linux-gnu/libc.so.6
root@xxxx:/tmp/linux/app# ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib/libc.so.6 |
Puis j'ai appliqué un solution que j'avais vu sur des forums pour des installations similaires :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13
| root@xxxx:/tmp/linux/app# cp SMIA-LINUX-03.35.A6.58.bin SMIA-LINUX-03.35.A6.58.bak
root@xxxx:/tmp/linux/app# cat SMIA-LINUX-03.35.A6.58.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > SMIA-LINUX-03.35.A6.58.bin
root@xxxx:/tmp/linux/app# rm SMIA-LINUX-03.35.A6.58.bak
root@xxxx:/tmp/linux/app# ./SMIA-LINUX-03.35.A6.58.bin -i silent -f /tmp/installer.propertiesPreparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
nawk: cmd. line:7: warning: escape sequence `\.' treated as plain `.'
Launching installer...
./SMIA-LINUX-03.35.A6.58.bin: 2475: exec: /tmp/install.dir.7795/Linux/resource/jre/bin/java: not found |
Une partie de mes erreurs sont parties mais je n'arrive pas à résoudre la dernière...
Donc si vous avez des idées, je suis preneuse.
Merci d'avance pour vos réponses ;)