Extraction tar.gz archives without leaving a .tar archive behind

Hello!
When I double-click on a .tar-gz-archive in the Finder, It extracts two things: a tar-archive and the actual content of the file. In 99% of the cases I don't want an additional tar file eating my disk space - is there any way to tell "BomArchiveHelper" (the Program that extracts archives) not to store tar archives?

Good to know... is there a Linux native format for backups that does incorporate fault tolerance much like the rar format allows for parity or recovery records?

Similar Messages

  • Move Type without leaving residual type image behind

    In InDesign, like Freehand, I can select a block of type and
    hold the cursor still for a second, then move the text and see it
    while it is moving for better placement visually. The problem is,
    in Freehand, it leaves the original image of the type also in place
    where it was before I started moving it. Is this a feature that can
    be turned on and off, or, is there a way to not leave the residual
    image behind when moving a text block?
    TIA,
    Ken

    By the way, after I complete the move, after releasing the
    cursor, the original block of type disappears, as it should because
    the type block is now moved. I just would like it to never remain
    in the first place.

  • Extracting tar.bz2 files.

    How can i extract tar.bz2 files?. zip, jar, tar can be extracted within java. But how tar.bz2?.

    Some tars have built-in knowledge of the bz2 (bunzip) compression format.
    Tar ("tape archive") is to package several files in one archive or to extract them. The archive files can be called "*.tar".

  • Extracting .tar files

    I have the com.ice.tar package from http://www.trustice.com/java/tar/ and I have the code shown below compiling just fine. However, I need to extract .tar files and this code will only extract tar.gz files. Does anyone know what I need to change to my code to get it to extract .tar files? Thanks,
    import com.ice.tar.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.zip.GZIPInputStream;
    public class untarFiles
    public static void main(String args[]) {
    try {
    untar("c:/Files/AnyFile.tar.gz",new File("c:/Files/"));
    catch(Exception e) {
    e.printStackTrace();
    System.out.println(e.getMessage());
    private static void untar(String tarFileName, File dest) throws IOException {
    //assuming the file you pass in is not a dir
    dest.mkdir();
    //create tar input stream from a .tar.gz file
    TarInputStream tin = new TarInputStream( new GZIPInputStream
    ( new FileInputStream(new File(tarFileName))));
    //get the first entry in the archive
    TarEntry tarEntry = tin.getNextEntry();
    while (tarEntry != null){//create a file with the same name as the tarEntry
    File destPath = new File(dest.toString() + File.separatorChar + tarEntry.getName());
    if(tarEntry.isDirectory()){
    destPath.mkdir();
    } else {
    FileOutputStream fout = new FileOutputStream(destPath);
    tin.copyEntryContents(fout);
    fout.close();
    tarEntry = tin.getNextEntry();
    tin.close();
    }

    hey ppl, i have the same assignment of extracting tar.Z files using java.
    I have the same trustice.com library com.ice.tar
    I've used basically the same code given in the previous post.
    It is givin me the followin exception when i try using tar.Z files :
    com.ice.tar.InvalidHeaderException: bad header in block 0 record 0, header magic is not 'ustar' or unix-style zeros, it is '-50112-51-424592-71', or (dec) -50, 112, -51, -42, 45, 92, -71
         at com.ice.tar.TarInputStream.getNextEntry(Unknown Source)
         at filterdialog.readTar(filterdialog.java:101)
         at filterdialog$1.actionPerformed(filterdialog.java:80)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

  • Extract *.tar.gz file, error tar: 0511-164 There is a media read or write b

    when try to:
    $gzip -dc /dbdump/patch/oraInventory_BK.tar.gz | tar xf /tmp/t
    tar: 0511-164 There is a media read or write block size error.
    how to unzip/ extract tar sucussfully?
    AIX box
    thanks

    Preferably Unix questions are answered by consulting man pages or an Unix forum.
    Your questions is 100 percent of topic here. Kindly stop posting Unix questions here.
    Sybrand Bakker
    Senior Oracle DBA

  • Can I cut a file from a folder & copy it to another without leaving ori

    Hi Can I cut a file form a folder and copy it into another folder without leaving the original in the 1st folder?
    I know I can copy it across. but I dont want to have to keep going back and deleting the original?
    Thanks

    Have you read Switch101?
    -mj
    [email protected]

  • How do I get routing data from the Map App (powered by TomTom) so I can display the point-to-point annotations (turn-by-turn navigation) without leaving my own application.

    I have a tableView displaying a list of contacts from a Cloud Database.  After selecting a contact, I push to a programmatically created MKMapView.  Then I display the initial region (the view) that includes the users current location (starting point) and their selected destination (end point).
    Now I want to display annotations (as described in the Location Awareness Programming Guide) that displays polylines which will represent the turn-by-turn navigation IN MY OWN APPLICATION, and not in the Map App currently used in IOS6. 
    Due to licensing and its becoming depricated in IOS 6, I do not want to get routing data from the Google Maps API.  How do I get routing data from the IOS 6 Map App (powered by TomTom) so I can display the point-to-point annotations (turn-by-turn navigation) without leaving my own application?
    I checked out Stack Overflow and other forums which basically left me with the impression that this is not possible. I also checked out the TomTom iPhone Mobile SDK User Guide from the TomTom Developer Portal and am still confused.  It must be possible to retrieve routes, since the Map App can display turn-by-turn directions.  How can I retrieve turn-by-turn data that I may display as a route within my own application?

    Thanks Michael. Apologies for the slow reply I was away for a bit (holiday blitz at work and visiting family madness etc.etc.) back now, I set both options you requested to "never " and retried the CMS software with no change. 
    I do have progress of a sort though, as a test I took a separate test PC and put a clean install of Win7 on and loaded up the CMS software (it worked perfectly) and then took the version of ole32.dll off that machine and put it onto the computer I had built
    for her (using Linux) and...
    got a new error code. Darn I was so sure I had found a clever solution this time lol.
    Anyway now when the CMS fails it gives me a similar error but the offending module is "ntdll.dll" sooo... I tried taking the "working" version of ntdll.dll from the test box and moving it over (making sure to back up the existing ones
    first so I could put them back if needed) to her new PC and the PC would not boot. 
    It seems to want the original versions of a few Dynamic Link Libraries and if I could somehow give it those while not breaking Win7 it should theoretically work seeing as it no longer errors with ole32.dll. 
    ntdll.dll however seems necessary for Win7 to boot.
    So what I am wondering now is:
    Is there some way to have both versions of the DLL file in the system32 folder (bypassing the "cannot have two files with the exact same name in the same folder" thing) or rename the original DLL's something else and somehow make the CMS look for
    the new named versions so the system has the updated DLL's it needs to boot/run and the CMS has the old ones it wants to run or is there someway to have a self contained install of the CMS, say on a USB flash drive and give it it's own E:/windows/system32/needed
    dll's  path to the files it needs? 
    Willing to try any other options or settings you may have come up with as well.
    Thanks again for your reply and my apologies for not answering sooner.

  • Extract abends after sometime without any errors in logs

    Hi Folks,
    I am implementing unidirectional simple replication for one schema (DDL & DML) without GG data pump and I am newer to GG.
    Extract abends after sometime without any errors in logs. I doubt I did not configure exttrail/rmttrail properly.
    What should be the commands to configure trails in this scenerio ?
    Any suggestions ?
    Regards
    Edited by: LazyDBA11g on Aug 22, 2012 1:00 AM

    Thanks Paddu for reply but I can not use DBLOGREADER as it is not compatible in my env
    Use the TRANLOGOPTIONS parameter with the DBLOGREADER option in the Extract parameter file if the ASM instance is one of the following versions:
    Oracle 10.2.0.5 or later 10g R2 versions
    Oracle 11.2.0.2 or later 11g R2 versionsLastly I dont have connectivity issue with ASM.
    Regards
    Edited by: LazyDBA11g on Aug 22, 2012 1:03 AM

  • How can I link an image without leaving the existing window in adobe acrobat??

    Hi everybody
    I'm new using adobe acrobat, but I saw (once) that in a manual, they linked a image.
    Just by passing the mouse over the linked word, the image appears "over" the pdf, without leaving the existing window
    Is this still possible?? and How??
    Thanks for your help

    If you need to do it very often, I've developed a web-service that allows
    you to enter a phrase (let's say "Product 1"), and have an image "pop-up"
    whenever the user hovers or clicks that phrase in your document. Contact me
    personally for more information.

  • IBooks Author: Open store links without leaving app?

    I am trying to link from within a book (created in iBooks Author) without leaving the iBooks app.
    I can add the iTunes link, but it opens the iTunes app.
    I want it to stay within the iBooks app.
    There are other ebooks, including ones created in iBooks Author, that load the mini iTunes store pop-up panel when, and stay within the book that it open. Like in the Led Zeppelin Sound and Fury ibook.
    Help would be much appreciated!
    Thanks!

    If  are sure your machine is within the conditions set by Apple, have you tried opening the Applications folder  
    A- to see if the app is actually installed and  B- clicking the  iBA app to open it?
    If the iBA app is showing in your app folder and does not open, I would suggest contact  support for either Mac or iBA or both for advice.

  • Best way to extract data from archived cube

    Hello Experts,
    Can anyone tell me best way to extract data from archived cube.
    Basically I am trying to pull all the data from archived cube and then load it into another brand new infoprovider which is in different box.
    Also I need to extract all the master data for all infoobjects.
    I have two options in my mind:
    1) Use open hub destination
    or
    2) Infoprovider>display data>select the fields and download the data.
    Is it really possible to extract data using option (2) if records are too high and then load it into another infoprovider in new system.
    Please suggest me the pros and cons for the two options.
    Thanks for your time in advance.

    Hello Reddy,
    Thanks a lot for your quick reply.
    Actually in my case I am trying to extract archived infocube data and then load it into new infoprovider which is in different system. If I have connectivity I can simply export data source from archived infocube and then reload into new infoprovider.
    But there is no connectivity between those two systems (where archived cube is and new infoprovider) and so I am left with the two options I mentioned.
    1) Use Open Hub
    or
    2) Extract data manually from infoprovider into excel.
    Can anyone let me know which of the two options is the best and also I doubt on how to use excel in extracting data as excel have limit of no.of records 65536
    Thanks
    Edited by: saptrain on Mar 12, 2010 6:13 AM

  • Insert .oam files that scale without leaving white space below them inside a web page

    Hi All,
    Does anyone have a way to get .oam files to scale inside a web page without leaving all the white space below them when they are scaled in a fluid web page design?
    I've done this in other web pages without using .oam files and inserting the whole html file and stage, but I need this to work with multiple areas inside a web page for which .oam files seem to be the only solution.
    Thanks for your time, any solutions or ideas would be greatly appreciated.
    Thanks,
    Jeff

    Hi Meenakshi,
    Thanks for your reply, the blog tutorial you're referencing however uses the HTML files and doesn't use .oam files, which is my problem, as I need to insert more than one edge element on the page.
    Alternatively if there is a way to insert two "stage" HTML edge elements into a page using the method referenced above, this would be a suitable solution also. I've tried inserting more than one HTML file / stage where they are of different stage sizes and had no luck creating a second "stage_02" etc to acheive this so far.
    Thanks again for your reply,
    Cheers,
    Jeff

  • Logging in&off  Genesys CTI without leaving IC Web

    Hi everyone,
    I need to provide the IC Web agent with the ability to log in and log off to the Genesys CTI system without leaving the SAP IC Web Application; consequently adding a new link with a Genesys work mode log on to the SAP Softphone toolbar.
    Anyone can help with the basic steps?
    Best Regards;
    Elf

    Hi Tony,
    indeed I want to add a manual option to log off and on to CTI, and want to handle the process modifying SAP IC and Soap objects. I have an old version ICI document but I appreciate greatly if you can send me any updated documentation that may be helpful ..
    my e-mail: [email protected]
    Regards
    Elif

  • When loading video or tv shows it is taking as long as 14 hours plus - if I leave the loading screen it doesn't continue to load? So you have to wait without leaving the screen for 14 hours?

    When loading video or tv shows it is taking as long as 14 hours plus - if I leave the loading screen it doesn't continue to load? So you have to wait without leaving the screen for 14 hours? Unfortunately - I've been reading that this lengthy download problem is quite common - although I thought I saw where someone had loaded videos the day before and then had them to watch later. So, my first rental - I downloaded it overnight - then we go to watch it tonight and it proceeds to start loading again...saying it will be ready in 14 hours and 21 minutes!!! Am I doing something wrong here? If anyone has advice - I would greatly appreciate it. This is the first apple product that I am disappointed with

    When loading video or tv shows it is taking as long as 14 hours plus - if I leave the loading screen it doesn't continue to load? So you have to wait without leaving the screen for 14 hours? Unfortunately - I've been reading that this lengthy download problem is quite common - although I thought I saw where someone had loaded videos the day before and then had them to watch later. So, my first rental - I downloaded it overnight - then we go to watch it tonight and it proceeds to start loading again...saying it will be ready in 14 hours and 21 minutes!!! Am I doing something wrong here? If anyone has advice - I would greatly appreciate it. This is the first apple product that I am disappointed with

  • Browse large collection of icons packs without leaving photoshop [free extension]

    BlendMeIn is a Free Photoshop Extension that lets you browse large a collection of icons packs without leaving photoshop. http://blendme.in/ (many famous Icon packs from funkthehype, visualidiot, brankic1979, pixeden, entypo, and many others)
    Thank you,
    BlendMeIn Team 

    No. You cannot be taken seriously.
    1. Photoshop is not Illustrator / Fireworks / Premiere / After effects / Dreamweaver / InDesign. Thank god Adobe. It is already bloated enough.
    2. Much worse: your improvement list is sometimes faulty.
    These are randomly selected examples:
    Anri Orlow schrieb:
    When you are duplicating and coping layers the layer panel becomes a horrible mess with dozens on layers with names like "Layer 123 copy 14" and it's very hard to sort it all out. Maybe it's better to copy layer with the same name as it's original?
    Rename your layer. See screenshot.
    Anri Orlow schrieb:
    When you try to drag n' drop a layer holding down Alt to copy it, and it's already placed on top of the layer stack you have no ability to copy it on top of original one. I think it must be fixed
    False. Press first Alt and move the layer a little bit upwards until you see the light line.
    Anri Orlow schrieb:
    Custom shapes. I understand why they are separated buy setst, but why does dialog this stupid annoying "do you really want to replace this set with another" appears every time you change the set??? And why can't we review all the sets in the same time?
    What - in your opinion - means the upmost entry in the list?
    Anri Orlow schrieb:
    Why we can add as many raster masks to the layer but can't do the same with vector masks? Why?
    Only 1 layermask + 1 vectormask maximum per layer. Try it.
    3. Some of your wishes are ok, but have in mind: different people have different wishes.
    miss marple

  • How to extract TEXT for archived Purchase Orders ?

    Hi Friends,
    Can any one tell me how to extract TEXT for archived Purchase Orders ?
    I have used READ_TEXT but that is not fetching texts for archived PO's. Whenever I am trying to fetch data from STXH against archived PO, no value is coming and resulting SY_SUBRC <> 0.
    Any demo code will be highly appreciated.
    Thanks in advance..
    Sivaji

    Hi,
    You can see that table STXH is linked to archiving object MM_EKKO (you can see it in tcode DB15).
    My suggest is that you must get the data. See the demo object BC_SBOOK in tcode AOBJ. You can see the report to reload data. The object is get the data in an internal table. So for report SBOOKR you can see this function module:
    *   get data records from the data container
    *   SBOOK
        CALL FUNCTION 'ARCHIVE_GET_TABLE'
          EXPORTING
            archive_handle        = lv_handle
            record_structure      = 'SBOOK'
            all_records_of_object = 'X'
          TABLES
            table                 = lt_sbook_tmp
          EXCEPTIONS
            end_of_object         = 0.         "not entries of this type
    *   check lt_sbook_tmp entries against selections. Delete not
    *   requested entries
        LOOP AT lt_sbook_tmp ASSIGNING <ls_sbook>
                             WHERE carrid IN s_carrid
                               AND connid IN s_connid
                               AND fldate IN s_fldate.
          APPEND <ls_sbook> TO lt_sbook.
        ENDLOOP.
        REFRESH lt_sbook_tmp.
    The idea is that you get the same data that you handle in READ_TEXT (because you don't have the data in database) and recovery the text.
    I hope this helps you
    REgards
    Eduardo

Maybe you are looking for