<![CDATA[Forum Ubuntu-fr.org / [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?id=1173951 Tue, 22 Jan 2013 21:09:55 +0000 FluxBB <![CDATA[Réponse à : [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12307631#p12307631 merci à tous !

]]>
Tue, 22 Jan 2013 21:09:55 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12307631#p12307631
<![CDATA[Réponse à : [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12296681#p12296681 Et tu peux en profiter pour ajouter les balises [ code ] [/ code ] (sans les espaces) autour de ton ton script.

]]>
Tue, 22 Jan 2013 00:55:22 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12296681#p12296681
<![CDATA[Réponse à : [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12295721#p12295721 Il faut éditer (modifier) le 1er message et tu auras accès au titre.

]]>
Mon, 21 Jan 2013 22:38:17 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12295721#p12295721
<![CDATA[Réponse à : [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12294181#p12294181 je sais pas comment noté [résolu] sur pour ce sujet...

]]>
Mon, 21 Jan 2013 21:02:31 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12294181#p12294181
<![CDATA[Réponse à : [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12294141#p12294141 Bonjour,
Merci pour votre réponse.
En effet : l'installation du script à fonctionné et Wibafu utilisant les fonctions de Wiimms Iso Tools
semble fonctionner (en tout cas : il reconnais déjà le disque wbfs en mutil-partition ce qui n'était pas le cas avec Wiithon)

DONC : ENCORE UN GRAND MERCI : PROBLEME RESOLU !+)

]]>
Mon, 21 Jan 2013 21:00:02 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12294141#p12294141
<![CDATA[Réponse à : [RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12281281#p12281281 la 1ère ligne du scripte commence comme ça :

#!/usr/bin/env bash

et ça veux dire qu'il faut l'exécuter avec "bash" et pas avec "sh".
C'est deux shell différents qui n'emploient pas la même syntaxe....
Donc tu lances :

sudo bash install.sh
]]>
Sun, 20 Jan 2013 21:58:11 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12281281#p12281281
<![CDATA[[RESOLU] problemme avec script SH]]> http://forum.ubuntu-fr.org/viewtopic.php?pid=12280501#p12280501 Bonjour,
Tout d'abord, voici ce que je souhaite faire :
   - installer wibafu (wii backup fusion) sous Ubuntu 11.04 (gestionnaire de disques WBFS)

J'ai installé le paquet wibafu (via Synaptic) mais il semble que wibafu ait besoin de :
   - Wiimms Iso Tools
pour installer Wiimms Iso Tools, j'ai téléchargé l'archive : wit-v2.10a-r4118-i386.tar.gz


Voici ce qui se passe en lancant le script SH ( via sudo sh install.sh)
   install.sh: 44: Bad substitution


VOICI LES LIGNES 1, à 44 du script :

#!/usr/bin/env bash

    #####################################################################
    ##                 __            __ _ ___________                  ##
    ##                 \ \          / /| |____   ____|                 ##
    ##                  \ \        / / | |    | |                      ##
    ##                   \ \  /\  / /  | |    | |                      ##
    ##                    \ \/  \/ /   | |    | |                      ##
    ##                     \  /\  /    | |    | |                      ##
    ##                      \/  \/     |_|    |_|                      ##
    ##                                                                 ##
    ##                        Wiimms ISO Tools                         ##
    ##                      [url]http://wit.wiimm.de/[/url]                       ##
    ##                                                                 ##
    #####################################################################
    ##                                                                 ##
    ##   This file is part of the WIT project.                         ##
    ##   Visit [url]http://wit.wiimm.de/[/url] for project details and sources.   ##
    ##                                                                 ##
    ##   Copyright (c) 2009-2012 by Dirk Clemens <wiimm@wiimm.de>      ##
    ##                                                                 ##
    #####################################################################
    ##                                                                 ##
    ##   This file installs the distribution.                          ##
    ##                                                                 ##
    #####################################################################


#------------------------------------------------------------------------------

BASE_PATH="/usr/local"
BIN_PATH="$BASE_PATH/bin"
SHARE_PATH="/usr/local/share/wit"

BIN_FILES="wit wwt wdf wfuse"
WDF_LINKS="wdf-cat wdf-dump"
SHARE_FILES="titles.txt titles-de.txt titles-es.txt titles-fr.txt titles-it.txt titles-ja.txt titles-ko.txt titles-nl.txt titles-pt.txt titles-ru.txt titles-zhcn.txt titles-zhtw.txt system-menu.txt magic.txt"

INST_FLAGS="-p"

#------------------------------------------------------------------------------

MACHINE="$(uname -m)"
MACHINE="${MACHINE//[!a-zA-Z0-9_+-]/}"


MERCI...

]]>
Sun, 20 Jan 2013 21:03:38 +0000 http://forum.ubuntu-fr.org/viewtopic.php?pid=12280501#p12280501