IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Debian Discussion :

Client MD Storage Manager


Sujet :

Debian

  1. #1
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2012
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 31
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2012
    Messages : 26
    Points : 22
    Points
    22
    Par défaut 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 : Sélectionner tout - Visualiser dans une fenêtre à part
    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 : Sélectionner tout - Visualiser dans une fenêtre à part
    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 : Sélectionner tout - Visualiser dans une fenêtre à part
    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

  2. #2
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2012
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 31
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2012
    Messages : 26
    Points : 22
    Points
    22
    Par défaut
    Bonjour,

    J'ai finalement trouvé la réponse à mon problème. Le client MD Storage Manager est codé en 32 bits alors que ma machine est en 64 bits. Il m'a donc fallu adapter mon système comme ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    root@xxxx:~# dpkg --add-architecture i386
    root@xxxx:~# aptitude update
    root@xxxx:~# aptitude install libstdc++5:i386
    root@xxxx:~# aptitude install ia32-libs-i386
    J'espère que ça en aidera quelques-uns

  3. #3
    Membre à l'essai
    Femme Profil pro
    Étudiant
    Inscrit en
    Mai 2012
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 31
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mai 2012
    Messages : 26
    Points : 22
    Points
    22
    Par défaut
    Le tutoriel d'installation complète se trouve ici : earlgrey.over-blog.com

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 1
    Dernier message: 20/11/2011, 18h15
  2. [10g]Console storage manager ou console entreprise manager
    Par falco- dans le forum Installation
    Réponses: 3
    Dernier message: 16/10/2009, 09h03
  3. Réponses: 1
    Dernier message: 02/10/2007, 10h38
  4. Client Oracle Entreprise Manager
    Par james_usus dans le forum Entreprise Manager
    Réponses: 0
    Dernier message: 07/09/2007, 16h39
  5. table space et DEFAULT STORAGE/EXTENT MANAGEMENT
    Par e77em dans le forum Oracle
    Réponses: 8
    Dernier message: 25/10/2005, 15h47

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo