Changes between Version 23 and Version 24 of newport/ubuntu
- Timestamp:
- 01/14/2020 08:11:52 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
newport/ubuntu
v23 v24 189 189 To create a tarball which is the most flexible storage format and can be used for a variety of future installation uses: 190 190 {{{#!bash 191 sudo tar -- numeric-owner-cvJf bionic-newport.tar.xz -C rootfs/ .192 }}} 193 * the '--numeric-owner' is required to store user/group as a number instead of a name191 sudo tar --keep-directory-symlink -cvJf bionic-newport.tar.xz -C rootfs/ . 192 }}} 193 * '--numeric-owner' is required to store user/group as a number instead of a name, your specific use case may require this switch. 194 194 * the '-C rootfs/' is required to eliminate the rootfs directory prefix 195 195 * the sudo is needed to be able to read the root owned files 196 * '--keep-directory-symlink' will preserve symbolic links 196 197 197 198