Skip to main content
deleted 10 characters in body
Source Link
Petr Skocik
  • 29.6k
  • 18
  • 90
  • 154

What I was missing was --group rootgroup=root in addition to --owner rootowner=root.

tar -c --{owner root --,group root data}=root

(possibly with an optional --numeric-owner) fully anonymizes the archive.

What I was missing was --group root in addition to --owner root.

tar -c --owner root --group root data

(possibly with an optional --numeric-owner) fully anonymizes the archive.

What I was missing was --group=root in addition to --owner=root.

tar -c --{owner,group}=root

(possibly with an optional --numeric-owner) fully anonymizes the archive.

Source Link
Petr Skocik
  • 29.6k
  • 18
  • 90
  • 154

What I was missing was --group root in addition to --owner root.

tar -c --owner root --group root data

(possibly with an optional --numeric-owner) fully anonymizes the archive.