|
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.
|
|
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.
|
Ask your Facebook Friends
|
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 .
|
|
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.
|
|
Does anybody keep these archives?
I find the #clojure threads tremendously helpful[1], Rich Hickey pushing the envelope on what STM and java interop can do. I'd like to keep tabs on other FP languages/environments. My search-fu may not be the greatest...
Started by Gene T on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm actively against anyone making logs of #erlang public (im a chanop there) .
If you want it done, the IRC channel is the place to bring it up, though .
A year or so ago keeping logs of #scala was discussed and the powers-that-be decided against it .
|
|
This is similar to a previous question , but the answers there don't satisfy my needs and my question is slightly different:
I currently use gzip compression for some very large files which contain sorted data. When the files are not compressed, binary...
Started by John Zwinck on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Based on a given offset within the....
I'm not sure if this would be practical in your exact situation, but couldn't you just gzip each large file into smaller files, say 10 MB each? You would end up with a bunch of files: file0.gz, file1.gz, file2.gz, etc .
|