Sto lavorando come utente e vorrei creare un archivio tar, che una volta decompresso (per root) estrarrà i suoi file con la proprietà root (altrimenti root dovrebbe cambiare manualmente la proprietà per ogni file, dopo che i file sono stati estratti a destinazione).
Ho trovato fakeroot
che sembra fare esattamente questo. Ma non riesco a trovare la sintassi che devo usare per creare il mio archivio.
Come posso creare un archivio tar.xz, in modo che i file abbiano la proprietà di root quando vengono decompressi da root?
do something with fakeroot ...
tar cfpJ foo.tar.xz foo/
tar --owner=root --group=root cfpJ files.tar.xz files/
dà l'erroretar: You must specify one of the
-Acdtrux 'o--test-label' options Try
tar --help' oppuretar --usage' for more information.