Recalbox Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • recalbox.com
    • Gitlab repository
    • Documentation
    • Discord
    1. Home
    2. Aïe
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 14
    • Best 0
    • Controversial 0
    • Groups 0

    Aïe

    @Aïe

    0
    Reputation
    349
    Profile views
    14
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Aïe Unfollow Follow

    Latest posts made by Aïe

    • RE: Mode non pris en charge

      @Substring Aucun jeux de la ps1 ne fonctionnent, amstrad, commodore, megadrive,etc ...
      Apparemment tous les jeux en 640*480 se lancent sans problème mais pas le reste

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring Re, nous avons enfin réussi, recalbox manager était désactivé sur le pi 3 (novice...) donc après moulte tentative voici le lien: https://file.ac/57ppk2emjq4/

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring oui on avait vérifié, on a essayé de plusieurs façons, le mac et le pi en wifi, en ethernet, toujours pareil not found
      Il a aussi un autre mac et même résultat

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @OyyoDams @Substring Bonjour, toujours pareil pour l'accès au site "not found"

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring mdrrr, j'ai vu avec lui et il est sur mac. Lorsqu'il lance http://recalbox/help avec son pi en réseau, il n'a qu'une page" not found "
      Y a t-il un autre lien pour Mac ?

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring
      Bon j'ai enfin trouvé 🙂
      https://file.ac/ZaWkhL88HAQ/

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring

      /recalbox/scripts/recalbox-support.sh

      lspci: /sys/bus/pci/devices: No such file or directory
      /recalbox/scripts/recalbox-support.sh: line 53: aplay: command not found
      /recalbox/scripts/recalbox-support.sh: line 54: glxinfo: command not found
      /recalbox/scripts/recalbox-support.sh: line 55: xrandr: command not found
      BusyBox v1.25.1 (2017-12-02 10:08:22 UTC) multi-call binary.

      Usage: rm [-irf] FILE...

      Remove (unlink) FILEs

          -i      Always prompt before removing
          -f      Never prompt
          -R,-r   Recurse
      

      evtest: No such file or directory
      device node not found
      /recalbox/share/saves/recalbox-support-20180103185430.tar.gz

      Voilà

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring désolé substring mais je ne comprends pas la manip à faire
      Mon pi 3 est en réseau et j'ai accès à un Windows ou Ubuntu

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring lol Désolé
      Je n ai pas accès au lien

      You don't have permission to access /help on this server.

      posted in Recalbox Général
      Aïe
      Aïe
    • RE: Mode non pris en charge

      @Substring

      Voici le fichier

      • #!/bin/sh

      GTMP="/tmp"
      DHOME="/recalbox/share/system"

      to be callable by any external tool

      if test $# -eq 1
      then
      REPORTNAME=$(basename "$1" | sed -e s+'^([^.])..$'+'\1'+)
      OUTPUTFILE=$1
      else
      REPORTNAME="recalbox-support-"$(date +%Y%m%d%H%M%S)
      OUTPUTFILE="/recalbox/share/saves/${REPORTNAME}.tar.gz"
      fi

      TMPDIR="${GTMP}/${REPORTNAME}"

      f_cp() {
      test -e "$1" && cp "$1" "$2"
      }

      d_cp() {
      test -d "$1" && cp -pr "$1" "$2"
      }

      if mkdir "${TMPDIR}" && mkdir "${TMPDIR}/"{system,joysticks,lirc,kodi}
      then
      if ! cd "${TMPDIR}"
      then
      echo "Change directory failed" >&2
      exit 1
      fi
      else
      echo "Reporting directory creation failed" >&2
      exit 1
      fi

      SYSTEM

      DSYSTEM="${TMPDIR}/system"
      dmesg > "${DSYSTEM}/dmesg.txt"
      lsmod > "${DSYSTEM}/lsmod.txt"
      ps > "${DSYSTEM}/ps.txt"
      df -h > "${DSYSTEM}/df.txt"
      netstat -tuan > "${DSYSTEM}/netstat.txt"
      lsusb -v > "${DSYSTEM}/lsusb.txt" 2>/dev/null
      tvservice -m CEA > "${DSYSTEM}/tvservice-CEA.txt"
      tvservice -m DMT > "${DSYSTEM}/tvservice-DMT.txt"
      ifconfig -a > "${DSYSTEM}/ifconfig.txt"
      lspci > "${DSYSTEM}/lspci.txt"
      amixer > "${DSYSTEM}/amixer.txt"
      aplay -l > "${DSYSTEM}/aplay-l.txt"
      DISPLAY=:0.0 glxinfo > "${DSYSTEM}/glxinfo.txt"
      DISPLAY=:0.0 xrandr > "${DSYSTEM}/xrandr.txt"
      connmanctl technologies > "${DSYSTEM}/connman-technologies.txt"
      connmanctl services > "${DSYSTEM}/connman-services.txt"
      f_cp /recalbox/recalbox.version "${DSYSTEM}"
      f_cp /recalbox/recalbox.arch "${DSYSTEM}"
      f_cp /boot/config.txt "${DSYSTEM}"
      f_cp /recalbox/share/system/recalbox.conf "${DSYSTEM}"
      d_cp /recalbox/share/system/logs "${DSYSTEM}"
      f_cp /var/log/messages "${DSYSTEM}"
      f_cp /recalbox/share/system/.emulationstation/es_settings.cfg "${DSYSTEM}"
      f_cp /recalbox/share/system/.emulationstation/es_log.txt "${DSYSTEM}"
      f_cp /recalbox/share/system/.emulationstation/es_input.cfg "${DSYSTEM}"
      f_cp /boot/recalbox-boot.conf "${DSYSTEM}"
      f_cp /var/log/Xorg.0.log "${DSYSTEM}"

      Update logs

      d_cp /recalbox/share/system/upgrade "${DSYSTEM}"
      find "${DSYSTEM}/upgrade" -type f ! -name "upgrade" | xargs rm

      Emulators configs

      d_cp /recalbox/share/system/configs "${TMPDIR}/configs"

      joysticks

      DJOYS="${TMPDIR}/joysticks"
      find /dev/input > "${DJOYS}/inputs.txt"
      for J in /dev/input/event*
      do
      N=$(basename ${J})
      evtest --info "${J}" > "${DJOYS}/evtest.${N}.txt"
      udevadm info -q all -n "${J}" > "${DJOYS}/udevadm.${N}.txt"
      done
      sdl2-jstest -l > "${DJOYS}/sdl2-jstest.txt"

      lirc

      DLIRC="${TMPDIR}/lirc"
      f_cp "${DHOME}/.config/lirc/lircd.conf" "${DLIRC}"

      kodi

      DKODI="${TMPDIR}/kodi"
      f_cp "${DHOME}/.kodi/userdata/Lircmap.xml" "${DKODI}"
      f_cp "${DHOME}/.kodi/userdata/keymaps/recalbox.xml" "${DKODI}"
      d_cp "${DHOME}/.kodi/userdata/remotes" "${DKODI}"
      f_cp "${DHOME}/.kodi/temp/kodi.log" "${DKODI}"

      if ! (cd "${GTMP}" && tar cf - "${REPORTNAME}" | gzip -c > "${OUTPUTFILE}")
      then
      echo "Reporting zip creation failed" >&2
      exit 1
      fi

      rm -rf "${TMPDIR}"
      echo "${OUTPUTFILE}"
      exit 0

      • élément de liste
      posted in Recalbox Général
      Aïe
      Aïe