How to prevent Finder automatically uncompressing gzipped downloads?

Hi all,
When I download a gzipped file (e.g. tar.gz), Finder automatically gunzips it. I find this annoying. Any way to switch this behaviour off?

Hi, H-S T.
You've not stated how you are downloading the files. If I presume you mean via your Web browser, and that browser is Safari, then in in the Safari > Preferences > General tab, deselect (uncheck) Open "safe" files after downloading.
WIth Safari, this is an all-or-nothing proposition: deselect this option and no files downloaded with your browser will open automatically.
Other browsers, such as OmniWeb., permit you to select specific applications related to types of files that you wish to consider "safe."
If what I've outlined above does not describe your situation, please provide more details, i.e. how you are downloading the files, what browser you are using, etc.
Good luck!
Dr. Smoke
Author: Troubleshooting Mac® OS X

Similar Messages

  • I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    I share an itunes account with 3 users. How can I find out which person downloaded a certain app?

    Agile,
    Any of the above will work, depending how you would like to set it up.
    Given that kids tend to eventually grow up and be independent, the best long term answer for most people is to let her have her own account and her own library as soon as she can handle it.  Keep in mind that content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, so separating later is a challenge.
    If you want to sync multiple devices to the same library, that will work.  Or if you want separate libraries (as I would recommend), they can be either on separate computers or on separate Windows user accounts on the same PC.
    For the name change:  Connect the device.  When the name appears in the left sidebar of iTunes, highlight it and change it.

  • HT201272 I have accidentally deleted an Audiobook from my iPad. It was purchased from iTunes (not Audible - though it is an Audible product). It does not appear in the list of previous purchases. How do I 'find' it to re-download it?

    I have accidentally deleted an Audiobook purchased from iTunes. (Purchased from iTunes, not Audible, but it is an Audible product). It does not appear anywhere on a lost of previously purchased items.  How can I 'find' it and re-download it? Thanks!

    Sorry, but audiobooks cannot be downloaded more than once without charge, so if you don't have a viable backup, you may be out of luck. You can, however, contact the iTunes Store, explain the situation, and see if they can make an exception for you.
    http://www.apple.com/support/itunes/contact/
    Regards.

  • How do I disable automatic TV shows download from Apple TV to my iTunes library on my PC?

    How do I disable automatic TV shows download from Apple TV to my iTunes library on my PC? This is really annoying as I am not able to sync my main music and photo library after my appleTV dowloads 84 GB of TV shows, which my PC is unable to accomodate anyway. Any advise?

    I have a very similar problem in that purchases I make on the ATV are shuttled off to my computer even before I have a chance to watch them. Nothing remains on the AppleTV except (strangely) a show I bought from iTunes months before I ever got the ATV. In order to watch anything, I have to either leave my computer turned off between the time I order and watch it; or I have to have my computer on in order to stream the show back to the ATV. I like the idea of syncing with the computer as a backup solution, but the ATV should be designed to prefer to keep unwatched material on its hard drive until some threshold storage level has been reached, and then it should move off older shows to make room for newer ones.

  • How do you find your iPhone without downloading iCloud or having the find my iphone app???

    How do you find your iPhone without downloading the find my iphone app, or having your iCloud app/ ID setup????

    I HAVE THE SAME **** ?????'S & THE SAY SPEND $800.00 TO BUY ANOTHER IPHONE???? *** WHY CANT WE GET ANOTHER IPHONE FROM SPRINT AFTER A 2YEAR CONTRACT U STILL HAVE TO PAY PER AGREEMENT WHICH MEANS A MONTHLY BILL OF $100 4 2 YRS $2400 DOLLARS ($100X24MONTHS=$2400) + WHAT U PAID 4 THE IPHONE $150 SIGN UP 4 THE CONTRACT?

  • How do i find a .mp4 file downloaded from email to my iphone

    How do i find a .mp4 file downloaded from my gmail email to my iphone. Unable to locate the file or maybe not sure how to go about it?

    You don't, as ringtones are a one time purchase and as such can't be redownloaded.
    If you still have them on your iTunes library, you may sinc them from there.
    If you have a backup that contains them, you may restore your phone from that backup.
    Or you can go to expresslane.apple.com and try for a re-issue. Which they do only occasionally and depending on the circumstances.

  • How to prevent JFileChooser automatically changing to parent directory?

    When you show only directories, and click on the dir icons to navigate, and then dont select anything and click OK, it automatically 'cd's to the parent folder.
    My application is using the JFileChooser to let the user navigate through folders and certain details of 'foo' files in that folder are displayed in another panel.
    So we dont want the chooser automatically changing dir to parent when OK is clicked. How to prevent this behavior?
    I considered extending the chooser and looked at the Swing source code but it is hard to tell where the change dir is happening.
    thanks,
    Anil
    To demonstrate this, I took the standard JFileChooserDemo from the Sun tutorial and modified it adding these lines
              // NEW line 45 in constructor
              fc.addPropertyChangeListener((PropertyChangeListener) this);
              fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
          * NEW -
          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void propertyChange(PropertyChangeEvent e) {
              String prop = e.getPropertyName();
              if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) {
                   System.out.println("DIRECTORY_CHANGED_PROPERTY");
                   File file = (File) e.getNewValue();
                   System.out.println("DIRECTORY:" + file.getPath());
         }

    Here is the demo:
    package filechooser;
    import java.awt.BorderLayout;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.File;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    * FileChooserDemo.java uses these files:
    *   images/Open16.gif
    *   images/Save16.gif
    public class FileChooserDemo extends JPanel implements ActionListener,
              PropertyChangeListener {
         static private final String newline = "\n";
         JButton openButton, saveButton;
         JTextArea log;
         JFileChooser fc;
         public FileChooserDemo() {
              super(new BorderLayout());
              // Create the log first, because the action listeners
              // need to refer to it.
              log = new JTextArea(5, 20);
              log.setMargin(new Insets(5, 5, 5, 5));
              log.setEditable(false);
              JScrollPane logScrollPane = new JScrollPane(log);
              // Create a file chooser
              fc = new JFileChooser();
              // NEW
              fc.addPropertyChangeListener((PropertyChangeListener) this);
              fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
              // Create the open button. We use the image from the JLF
              // Graphics Repository (but we extracted it from the jar).
              openButton = new JButton("Open a File...",
                        createImageIcon("images/Open16.gif"));
              openButton.addActionListener(this);
              // Create the save button. We use the image from the JLF
              // Graphics Repository (but we extracted it from the jar).
              saveButton = new JButton("Save a File...",
                        createImageIcon("images/Save16.gif"));
              saveButton.addActionListener(this);
              // For layout purposes, put the buttons in a separate panel
              JPanel buttonPanel = new JPanel(); // use FlowLayout
              buttonPanel.add(openButton);
              buttonPanel.add(saveButton);
              // Add the buttons and the log to this panel.
              add(buttonPanel, BorderLayout.PAGE_START);
              add(logScrollPane, BorderLayout.CENTER);
          * NEW -
          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void propertyChange(PropertyChangeEvent e) {
              String prop = e.getPropertyName();
              // If the directory changed, don't show an image.
              if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) {
                   System.out.println("DIRECTORY_CHANGED_PROPERTY");
                   File file = (File) e.getNewValue();
                   System.out.println("DIRECTORY:" + file.getPath());
         public void actionPerformed(ActionEvent e) {
              // Handle open button action.
              if (e.getSource() == openButton) {
                   int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        // This is where a real application would open the file.
                        log.append("Opening: " + file.getName() + "." + newline);
                   } else {
                        log.append("Open command cancelled by user." + newline);
                   log.setCaretPosition(log.getDocument().getLength());
                   // Handle save button action.
              } else if (e.getSource() == saveButton) {
                   int returnVal = fc.showSaveDialog(FileChooserDemo.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        // This is where a real application would save the file.
                        log.append("Saving: " + file.getName() + "." + newline);
                   } else {
                        log.append("Save command cancelled by user." + newline);
                   log.setCaretPosition(log.getDocument().getLength());
         /** Returns an ImageIcon, or null if the path was invalid. */
         protected static ImageIcon createImageIcon(String path) {
              java.net.URL imgURL = FileChooserDemo.class.getResource(path);
              if (imgURL != null) {
                   return new ImageIcon(imgURL);
              } else {
                   System.err.println("Couldn't find file: " + path);
                   return null;
          * Create the GUI and show it. For thread safety, this method should be
          * invoked from the event dispatch thread.
         private static void createAndShowGUI() {
              // Create and set up the window.
              JFrame frame = new JFrame("FileChooserDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // Add content to the window.
              frame.add(new FileChooserDemo());
              // Display the window.
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args) {
              // Schedule a job for the event dispatch thread:
              // creating and showing this application's GUI.
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        // Turn off metal's use of bold fonts
                        UIManager.put("swing.boldMetal", Boolean.FALSE);
                        createAndShowGUI();
    }

  • How to prevent an automatic refresh of a dashboard

    Hi,
    Currently OBIEE automatically refreshes all reports of a dashboard once it's selected. This often causes a heavy load on our databases. The question is: how can I prevent an automatic refresh? I only want the dashboard to be refreshed once I click on the "Go" button of the dashboard prompt!
    TIA,
    Erik
    Edited by: Erik on 25-Mar-2011 12:09

    Hi Eric,
    In the dashboard, better create a landing page. In this landing page just add the dashboard object (link or image).
    Once this is configured, user have an option to navigate to the report through link.
    Even we can configure the common prompts/ global prompts at the front (Landing page) with the note to the user on navigation.
    By this way, you can have the control of dashboard refresh.
    Thanks,
    Karthikeyan V

  • How to make Finder automatically go to the foremost open window?

    I hope I'm explaining this clearly.
    Suddenly, when I click on the Finder from the Dock, it does not go to the last open window. I have to go to the Windows menu and select it, or click and wait on the Finder icon in the dock for it to open. I usually have a lot of apps open so when I go to Finder it's to do some file management - and the extra step of having to bring the last open window to the forefront is annoying me!
    Does anyone know how to make the Finder automatically come to the forefront (with the windows) from click in the Dock? I swear my mac always did that before but now it's stopped!

    can anyone help me here?

  • How to prevent Finder from asking permission to use Trash?

    All:  How can I prevent Finder from asking permission to use Trash?  This wasn't a problem until two weeks ago.  Now it is.
    Thanks

    Do not empty the Trash in the shell. That's both dangerous and unnecessary.
    1. Triple-click the line below to select it:
    ~/.Trash
    2. Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu.* An Info dialog should open.
    3. The dialog should show "You can read and write" in the Sharing & Permissions section. If that's not what it shows, click the padlock icon in the lower right corner of the window and enter your password when prompted. Use the plus- and minus-sign buttons to give yourself Read & Write access and "everyone" No Access. Delete any other entries in the access list.
    4. In the General section, uncheck the box marked Locked if it's checked.
    5. From the action menu (gear icon) at the bottom of the dialog, select Apply to enclosed items and confirm.
    6. Close the Info window and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.

  • Sequence file Version number. How to prevent the automatic resetting build version number whilst auto-incrementing revision number?

    Hi,
    I've got my environment set this way that each save of the sequence file increase the revision part of version number. However, during that increase the build counter is reset to 0. How to prevent it?
    TS 4.2

    Mimi,
    It is pretty common practice in software revisioning to reset a minor number to 0 when a major moves up 1.  There are many different schemes out there.  If you google or bing software versioning schemes you'll see what I'm talking about.
    So looking at it from left to right:  Major.Minor.Revision.Build = 0.0.0.1 
    if you change the Revision it would be expected that anything to the right (in this case Build) would reset to 0.  0.0.1.0!
    Let's say your version is 8.34.56.23.  It would make sense that if you were to change the Major number (which means a Major release) to 9 then your version would go to: 9.0.0.0. 
    A version number is just a unique way to tell someone which specific software you are using so it really doesn't matter that it resets to 0.  Although it makes sense because if you kept your build number sequential and didn't reset it then it would get outrageously larger which would be more annoying than anything. 
    Again this is common accepted practice in industry.
    Good Luck,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • How to prevent computer from sleeping when downloading Lion from the recovery partition?

    Hello,
    I just got a new MacBook Pro that came with Lion. I'm reinstalling from the recovery partition and I'm on the downloading additional components stage. It has 3 hours to go and the computer keeps going to sleep. How can I prevent this? I don't want to have to babysit the computer for 3 more hours.
    Thanks.

    Looking for an answer to this question now.  Did you find one?  I'm about an hour into a 6+ hour reinstall of Mountain Lion from the Recovery partition on my MacBook Pro.  So I can't change the sleep corners or caffenate it or do much of anything but wait.   I want to go to bed and let it install overnight, but I assume it will go to sleep, and that will kill the download.  It there any way to prevent it from sleeping now? 
    Even trying to think of something I can put on the trackpad to trick it into thinking I'm touching it.
    Maybe ill put it under my dog, and her movements will keep it awake?  Thinking outside the box here.
    Any ideas would be appreciated.

  • How do I stop automatic Setup.exe downloads?

    I regularly visit an online video site for films and t.v series.  Recently Setup.exe files have been downloading automatically from the site when I open pages for some series.  Is there a way to prevent this without disabling the normal function of something else?
    Many thanks for input (-:

    The update alerts are fake, and are intended to dupe you into installing malware or disclosing private information so that your identity can be stolen.
    You might get the alerts when visiting a website that has been hacked. Don't visit the site again. If applicable, notify the site administrator of the problem, but don't send email to an unknown party.
    If you get the alerts when visiting well-known websites such as Google, YouTube, or Facebook, then they're the result of an attack on your router that has caused you to get false results from looking up the addresses of Internet servers. Requests sent to those sites are redirected to a server controlled by the attacker.
    The router's documentation should tell you how to reset it to the factory default state. Usually there's a pinhole switch somewhere in the back. It may be labeled "RESET." Insert the end of a straightened paper clip or a similar tool and press the button inside for perhaps 15 seconds, or as long as the instructions specify.
    Then go through the initial setup procedure. I can't be specific, because it's different for every model. The key points are these:
    1. Don't allow the router to be administered from the WAN (Internet) port, if it has that option. Most do.
    2. Set a strong password to protect the router's settings: at least ten random upper- and lower-case letters and digits.  Don't use the default password or any other that could be guessed. Any password that you can remember is weak.
    3. If the router is wireless, or if you have a wireless access point on the network, use "WPA 2 Personal" security and set a different strong password to protect the network. If the router or access point doesn't support WPA 2, it's obsolete and must be replaced.
    During the time the router was compromised, you were redirected to bogus websites. If you ever connected to a secure site and got a warning from your browser that the identity of the server could not be verified, and you dismissed that warning in order to log in, assume that your credentials for the site have been stolen and that the attacker has control of the account. This warning also applies to all websites on which you saw the fake update alerts.
    If you downloaded and installed what you thought was a software update, ask for instructions.

  • HT201272 How to delete an automatic tv series download

    I purchased, downloaded and viewed a tv series.  Now I want to delete it, but it keeps coming up in my automatic download.  I've deleted it as much as I can, so how do I stop the re-download each time I access iTunes?

    It could be possible that iTunes is showing your iTunes in the Cloud purchases in your library. To get rid of (you can only hide them, not permanently remove them) purchases in iTunes in the Cloud, follow the instructions in the support document below. Hopefully it fixes this issue for you.
    http://support.apple.com/kb/HT4919

  • How do I find the date of download?

    I am trying to find the date that an app was downloaded.  I have all the apps my kids (teenagers so parental controls are not the avenue I am looking for) download automatically download to my devices so I can keep track of what they are doing and I want to see the date one of the apps was downloaded.  I'd also love to be able to see which device downloaded which app.  Any chance of that?

    If I log into my account via the Store > View Account menu option on my computer's iTunes and then click on the 'See All >' link to the right of the Purchase History line, I then get a screen with my most recent purchase at the top of the screen, and below that a list of older purchases including their order date, order number, items in the order and the total price
    e.g.
    Clicking on the little arrow to the left of the line will expand it. Do you not get that screen ?
    Viewing purchase history : http://support.apple.com/kb/HT2727

Maybe you are looking for

  • Problem with XSQLRequest.process

    Problem with XSQLRequest.process: I'm trying to run XSQL files using XSQLRequest.process. I'm working on the chapter 3 examples in Muench's book and got FAQXML.xsql running okay but have had problems with: FAQhtml.xsql BTW I am calling them from a di

  • Configuration steps of UWL

    Hi, I need to configure uwl. Please define steps for configuration. I already checked all help.sap.com links but i could no able to understand that thing. Regards, Gurprit Bhatia Message was edited by:         GURPRIT BHATIA

  • How do I sync folder app contents between multiple ipads?

    I currently have a bank of 30 ipads and I would like to create some folders on the home page and put various apps into them, for example, 'School Apps' 'Personal Apps'. Do I need to go through every individual I-Pad and create these folders? Each tim

  • Since I update to the new Firefox, I am having problems reading my e-mail. When I click on the e-mail sometimes I can't get it to open.

    I am not sure what else I can add. I am no longer able to open all my e-mails. I keep having to go out sometimes and then try clicking on the e-mail again for it to open. It is getting to be a bit frustrating. I did not have that problem before.

  • Creative Suite Units problem

    i recently upgraded to yosemite, and now my Indesign documents all open in picas, EVEN THOUGH I have reset to inches in Preferences and restarted, etc. etc....how can I get my preferences to 'stick'?