I have just installed Free Arc utility for compression from : http://www.freearc.org/Download.aspx
and it works smoothly but in command Line mode.
Commands:
a add files to archive
c add comment to archive
ch modify archive (recompress, encrypt and so on)
create create new archive
cw write archive comment to file
d delete files from archive
e
I'd like to change the command I'm actualy using to put files in a tar archive in order to achieve this:
1) Remove directories tree from the archive (actually the .tar.gz file mantains the tree of the files.
I have to handle files that come as uncompressed text files or in various archive types (.gz, .zip, .tar.gz, bz2...). I want to process their content piped to another command. Is there a tool that detects whether a file is compressed and prints it content uncompressed? The best I could find is a combination of zcat (some archive types) and cat (non-compressed files).
How would you go about backing up just some files and subdirectories of a given directory to a compressed archive so that the tree structure could then easily be recreated from that archive.
Basically, rsync, with a little bit of scripting around (to select the files and folders I need) does the job, except I don't want to just copy.
Let's assume I have a program X that uses files with the extension .xez. How can I make X the default application for all files with the extension .xez?
My first idea was xdg-mime default X.desktop application/.xez. Yet this does not work.
Files with the extension .xez are still associated with Gnome Archive Manager since files with .xez represent a sort of .zip archive.
Hi all,
I have upgraded recently to Ubuntu 12.10 with Cinnamon 1.6.3.
When I want to use Archive Manager (file-roller 3.6.0) with Nautilus 3.4.2 I cannot add files to an existing zip archive.
(1) When I try to add a file using Archive Manager's menu: Add File nothing happens
(2) When I drag&drop a pdf file to an existing zip archive I get "You can't add an archive to itself"
(3) W
File Archive is your personal File Manager with simple UI and affable featuresÂ….
Creating and storing the files within the smartphone is longer a tedious process. File Archive will let you find, create and store up files and folders within seconds.
If you are looking for a potent file manager that can copy, move, rename, create files and folders, including multi-selection, ZIP etc.
Hi there, I am very new to unix and having trouble with a fairly simple statement:
Code:
cd /user
ls -t -c1 | sed -ne '11,$p' | mv xargs archive/
What I want the code to do is sort all files in a directory by timestamp, select all of the files after the 10th file, and then move those files to an /archive folder.
When I execute this statement it throws a "file not found" err
I have the followin directory structure:
base/
files/
archives/
scripts/
I want a script to run from scripts/, compress files that match results.*.log in files/ into a gzipped tar archive in archives/.
I'm trying the following command:
tar czfC ../archives/archive.tar.gz ../files results.*.log
But I get
tar: results.*.log: Cannot stat: No such file or directory
tar: Exiting with f