aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-archiver/NOTES
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-12 14:33:38 -0500
committerKen Moore <ken@ixsystems.com>2016-11-12 14:33:38 -0500
commit877625d070f47cddfb8283351f373879deeda98b (patch)
tree1208a276b944f2502f96ac59d0da6dec305d9c14 /src-qt5/desktop-utils/lumina-archiver/NOTES
parentSpeed up the initial loading of the desktop at start, and delay the auto-star... (diff)
downloadlumina-877625d070f47cddfb8283351f373879deeda98b.tar.gz
lumina-877625d070f47cddfb8283351f373879deeda98b.tar.bz2
lumina-877625d070f47cddfb8283351f373879deeda98b.zip
New Desktop Utility: lumina-archiver
This is a pure Qt5 front-end to the "tar" utility for creating, viewing, and editing archives of various formats. ChangeLog=YES
Diffstat (limited to 'src-qt5/desktop-utils/lumina-archiver/NOTES')
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/NOTES11
1 files changed, 11 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/NOTES b/src-qt5/desktop-utils/lumina-archiver/NOTES
new file mode 100644
index 00000000..20de4ac4
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-archiver/NOTES
@@ -0,0 +1,11 @@
+Notes about "tar" on FreeBSD:
+
+1) Use "-a" when creating archive with "-c" to automatically determine compression type from the file extension
+2) Valid file extensions:
+Read-Write: *.zip, *.tar.gz, *.tar.xz, *.tar.bz, *.tar.bz2, *.tar, *.zip, *.tgz, *.txz, *.tbz, *.tbz2, *.cpio, *.pax, *.ar, *.shar, *.7z
+Read-Only: *.iso, *.xar, *.jar, *.rpm
+
+To Extract: use "-x"
+To List: use "-t" with "-v" for detailed info (space-delimited: [perms, ?, user, group, size, month, day, time, filename])
+To pass a file on the command line use "-f <file>"
+If no compression flag (z, j, J, etc...) are given when reading/extracting, then it will automatically determine the type to use.
bgstack15