|
I have 2 outlook archives (.pst files) that I wish to merge together. How do I do that?
Started by Jon Erickson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I agree with the answer.
Recommend creating a new PST, and importing both archives into the new one.
|
|
If I compile and link an executable with the -export-dynamic flag, it doesn't apply to symbols stored in archives that are linked. The flag only on exports symbols for objects that are linked that aren't in archives. Can someone explain why this would...
Started by jdizzle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A '.a' file is just a compendium of '.o' files .
Because archives don't import or export anything.
|
|
If you have a collection of mailing list archives from Mailman (example here ) is there a good way to make them searchable from a web-based interface?
Started by Dana Robinson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I've used htdig for this task with several different mailing... .
Google do search quite well, and it's completly headache free .
You can even make a google custom search that will search just your website .
Make it public, and then just let google index them .
|
Ask your Facebook Friends
|
How would I be able to compress subdirectories into separate archives?
Example:
directory subdir1 subdir2
Should create subdir1(.tar).gz and subdir2(.tar).gz
Started by EarthMind on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
(In this case *, or all items in your current... .
Maxdepth 0 makes it not recurse any lower than the arguments given .
How about this: find * -maxdepth 0 -type d -exec tar czvf {}.tar.gz {} \; \;
Explanation: You run a find on all items in the current directory .
|
|
I'm using Perl's Archive::Tar module. It preserves the file permissions but doesn't preserve the sticky bit. At the other end where I extract the archive, all the sticky bits are gone. I think UNIX/LINUX operating system stores these sticky bits somewhere...
Started by ram on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
From a brief glance, it appears that
$Archive::Tar::CHMOD = 1;
should do....
Not sure, but on the official tar command, you need to pass -p to make this happen
You might want to take a look at the Archive::Tar documentation for the details.
|
|
Tar|gzip is wonderful, except files can get too big, and transferring them over network gets complicated. DOS era archivers were routinely used to create multipart archives, one per floppy, but gzip doesn't seem to have such option (because of Unix streaming...
Started by taw on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
People's archives who haven't yet been converted :-)
7zip has insane-level compression (although.
|
|
How to serve users a dynamically generated ZIP archive in Django?
I'm making a site, where users can choose any combination of available books and download them as ZIP archive. I'm worried that generating such archives for each request would slow my server...
Started by zuber on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Even better idea....
Performance files have changed.
But beware, creating zip archives on each request is bad idea and this may kill your server (not counting timeouts if the archives are large).
Header, but this should not be really required.
|
|
I am working my way through customizing the Worpress default theme. I came up against an issue of formatting archive links.
The default theme uses wp_get_archives function defined in general-template.php . The output of the function is customisable, but...
Started by Igor Zevaka on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
archives/comment-page-1/#comment-3350.
|
|
How can I create 7-Zip archives from my C# console application? I need to be able to extract the archives using the regular, widely available 7-Zip program.
Here are my results with the examples provided as answers to this question "Shelling out" to 7...
Started by Terrapin on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Creates 7-zip archives....
Is another solution.
|
|
I noticed that Apple started using zip archives to replace document packages (folders appearing as a single file in Finder) in the iWork applications. I'm considering doing the same as I keep getting support emails related to my document packages getting...
Started by Markus Müller on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look.
There's no convenient, built-in Cocoa mechanism for creating zip archives with code.
|