osx - Given that tar ignored my 2 sockets, how do I backup and then restore my login folder?

06
2014-04
  • Bill McCloskey

    I did a network backup of my login area in preparation for reformatting the volume in which it resides to make it bootable on my old Power Mac G5 running the very latest release of Leopard.

    Though I don't believe this symptom is a function of the actual tar invocation, here is the actual command for completeness:

       bill@r2d2-2:~
       [108] (sudo tar cf - -C /Volumes/usr1 Users) | gzip -c - | ssh whmcclos@mbp \
                 'cat > /Volumes/link2TMS/r2d2_usr1_Users.tar.gz'
       tar: Users/bill/Library/Acrobat User Data/8.0_ppc/Synchronizer/Commands: socket ignored
       tar: Users/bill/Library/Acrobat User Data/8.0_ppc/Synchronizer/Notification: socket ignored
    

    Here are the two socket files which tar is ignoring

    bill@r2d2:~/Library/Acrobat User Data/8.0_ppc/Synchronizer
    [11] ls -larhdt *
    drwx------  3 bill  staff   102B Jun  4  2010 metadata
    -rw-r--r--  1 bill  staff     0B Jan 20 13:05 adobesynchronizersu80
    srwxr-xr-x  1 bill  staff     0B Jan 20 13:05 Notification
    srwxr-xr-x  1 bill  staff     0B Jan 20 13:05 Commands
    

    Haven't worked with creating sockets in a few years, and I'll know what to do once I get a hint. As the Title says, how do I backup and then restore these files given that tar has ignored them?

  • Answers
  • grawity

    You don't.

    Unix local sockets are created as soon as a program attempts to listen on the given path for connections, and despite being a type of file they only act as pointers to in-memory structures; so they are useful only as long as the program is still running (and only within the same machine; no NFS or anything such).

    After the program exits, the socket file is no longer useful (and is normally deleted by the program itself); in fact, if the program gets restarted, it has to delete the old socket before listening on the same path – otherwise it would receive an "Address already in use" (the same as if two programs were trying to take the same TCP port).

    This is somewhat different from named pipes (aka fifos), which work in a much simpler way (one process writes, one process reads) and therefore are reusable; a named pipe can be created using the mkfifo or mknod p … commands.


  • Related Question

    How to backup and restore everything of foobar2000?
  • Dennis Cheung

    What is the best way to backup and restore all my everything in Foobar2000?

    I was once clicked on a "Reset all" button which provide somehow a stupid feature - clear all setting and playlist.

    The story tell that, remember to do backup when there is nothing goes wrong. (And I don't think they should put the button on the middle of all the configuration screen.)

    But how? Are there any script or plugins to help me to backup all settings? I cannot find a button of export or import my settings.


  • Related Answers
  • fluxtendu

    To be complete: if you're in portable mode, all is saved in the program directory.

    And for automatic saving you could use the plugin foo_jesus

  • swatkat

    Foobar2000 configuration is stored in profile directory. You can backup that directory to save the settings. Check out the Foobar2000 wiki for more details:
    Foobar2000 wiki
    Forum discussion about Foobar2000 settings backup