RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. savefile
    Log in to post
    • All categories
    • S

      Battery Saves Not Functioning For Any Console

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support savefile
      7
      0 Votes
      7 Posts
      509 Views
      mituM

      @sigma47 Just modify the title and add [solved] to it.

    • H

      Changing Drastic save location?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support savefile drastic
      7
      0 Votes
      7 Posts
      5k Views
      ClydeC

      @hellothere I guess that the usb drive is formatted with a file system that doesn't support Linux file ownership, e.g. FAT32, exFAT, NTFS or the like. Hence the errors when mvtries to transfer the files' ownership to the new location, and maybe also the nonresponsive controls, as the ownership might be important for some of the files or directories in /opt.

      You can check the file system with this command:

      df -T | grep usb2

      (df -T lists all mounted file systems, and grepfilters its output to just the lines that contain usb2.)

    • S

      Transferring DraStic save files to desmume2015

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support drastic desmume savefile savegame
      1
      0 Votes
      1 Posts
      331 Views
      No one has replied
    • S

      Convert .gme to .srm

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support gme srm savefile tekken3
      11
      0 Votes
      11 Posts
      8k Views
      J

      I've just had the same problem, and looking for a solution that runs on Linux, led me to looking in the Memcardrex code, I've come up with the following:

      dd if=<file.gme> bs=1 skip=3904 count=131072 of=<file.srm>

      It turns out the GME files are really just the same as SRM files with a 3904 byte header in front, the above commands strips that header and leaves a raw memorycard file.