Tyson Key

Results 31 comments of Tyson Key
trafficstars

Not sure if this is a regression, but if I try to use the new Restic executable, to do a VSS snapshot, it now bails out, with the following: ```...

Thanks for the info. I guess that the only ways of retrieving this metadata, from up the VFS layer, are either explicitly requesting each xattr (I assume this is how...

It looks like IBM i pax archives with extended attributes get a similar treatment: ``` root@localhost:/sdcard# borg import-tar --list --info -r BX2 test2 test2.tar /usr/lib/python3/dist-packages/requests/__init__.py:87: RequestsDependencyWarning: urllib3 (1.26.5) or chardet...

Looks like the bad formatting is from trying to paste out of Termux. In the meantime, I ended up redoing it, with "script", and another repository: ``` Script started on...

FWIW, I found https://github.com/illumos/illumos-gate/blob/master/usr/src/cmd/tar/tar.c, which documents some of the Solaris extensions

I ended up installing a random build of Solaris 11, and it looks like there's a bunch of different ways of generating a TARBall, with extended attributes, with both "tar",...

FWIW, there are some system-generated extended attributes ("SUNWattr_ro", and "SUNWattr_rw"), that files get, by default - but, I don't know if they're added to archives, by pax/tar, yet.

Doing some tests, with tar, you can store extended attributes, both with, and without extended headers: (An archive is seemingly always USTAR format, by default). It also seems that you...

Seems that XUSTAR, in pax is the same format, as used by tar's "extended header" mode. Anyway, for each combination of format, and use of extended attributes, I've managed to...

And, if I try to import all of the archives into a new repository, with this script: ``` borg -r BT2 import-tar 1 TARTest/ExtendedHeader-ExtendedAttributes.tar borg -r BT2 import-tar 2 TARTest/USTAR-ExtendedAttributes2.tar...