Any way to find out where most of the memory is being taken up?

I've got a G4 Tower with the latest 10.5 OS. I have an 80 GB drive, with 19 GB remaining.
Single clicking on Mac HD, then "apple i" shows me this.
Is there any way to find out more specifically where most of the memory is being taken up?
Say, what folders are the biggest in size, and where they are? I'd like to delete any unwanted crap if i could...
Thanks.

Photecs wrote:
I've got a G4 Tower with the latest 10.5 OS. I have an 80 GB drive, with 19 GB remaining.
Single clicking on Mac HD, then "apple i" shows me this.
Is there any way to find out more specifically where most of the memory is being taken up?
It's not memory, it's disk space which is a different thing.
you can figure out what's taking all the space using 3rd party tools like [Whatsize|http://whatsize.en.softonic.com/mac], [Omindisksweeper|http://www.omnigroup.com/applications/omnidisksweeper>, [Disk Inventory X|http://www.derlien.com> or [Grandperspective|http://sourceforge.net/projects/grandperspectiv>. there is also a terminal method described on [this page|http://homepage.mac.com/francines/articles/TigerMisc.html].
Say, what folders are the biggest in size, and where they are? I'd like to delete any unwanted crap if i could...
Thanks.

Similar Messages

  • Is there any way to find out where a standard text is used?

    Is there any way to find out where a standard text is used?
    We can see the text from SO10, but i want to find out where it is used.

    HI
    juct check out this thread
    How to find Standard Text
    a similar query is answered here
    hope this helps
    regards
    Aakash Banga

  • Any way to find out where the tablespace being used during a timeframe

    Hi All,
    I have a very generic question:
    We have a daily report for tablespaces info in our production env. In has 30.97% free space in a tablespace on 6/27/2009. On 6/28/2009 it reported only has 1.53% free. I would like to know which segments all the space went during this time period. I looked in the dba_extents but could not see any time related info which tells me when the extents be allocated. Can anybody share this info with me?
    Thanks a lot for your help in advance!
    Shirley

    What version of Oracle? What edition? Are you licensed to use AWR functionality?
    If you are on 10.1 or later, use the enterprise edition, and are licensed to use AWR (which generally requires the Diagnostics & Tuning pack), you should be able to query DBA_HIST_SEG_STAT (the SPACE_ALLOCATED_TOTAL and DELTA columns as well as the SPACEUSED_TOTAL and _DELTA columns).
    Justin
    Edited by: Justin Cave on Jun 29, 2009 12:36 PM

  • Is there any way to find out "Where am I" after a Field has been clicked?

    My question refers to the "Mouse Up" JS which are so frequently associated with a Field.
    I tried this code:
    console.println(this.rect);
    and the output was: "undefined".
    I then tried this:
    console.println(this);
    and the output was: [object Doc]
    so, I guess I am making progress, but I am too high on the object hierachy.
    What I need is the rect or the name, or some way to determine which of the many fields with identical code has been clicked.
    That kind of generalization (same code in many fields) sure saves a lot of time and coding.
    TIA,
    -Ramon

    As noted you can use the 'event' object's 'rect' property to get the quads, corner' points of the field that you clicked on. You can also access other event properites in the same way like 'event.target.name', 'event.targetName', or 'event.type' for example. Using the 'join()' method can provide a clearer listing of the quads for for the event, console.println(event.target.rect.join(", "));'

  • Any way to find out which apps I use the most?

    Sometimes there are apps that I don't realize I use a lot. Is there any way to find out which apps I use the most, so I can put those on my first home screen?

    I'd keep and eye on your multitask bar. This tells me what apps I use and often forget I've been in that day.

  • Is there any way to find out what brush is applied to a path?

    I'm trying to write a script: select some paths, run the script, then each path that has a brush applied to it is changed to use a random brush whose name is sufficiently similar to its current brush. The application is pretty obvious - draw a bunch of lines in, say, 'ragged marker 1', then give it some extra liveliness by having five or six 'ragged marker' brushes that get randomly chosen.
    The problem I'm running against is that as far as I can tell, Illustrator only lets Javascript set what brush an object is using with brush.applyTo (artItem), but I can't seem to find any way to find out what path a brush is currently using via JS.
    Am I just not looking in the right place of the Javascript reference, or is this really a thing that only has a setter, with no corresponding getter?

    Just like you said earlier
    3.  Re: Is there any way to find out what brush is applied to a path?
           imagecollection     Apr 7, 2015 6:01 PM  (in response to Silly-V)   
    The skill of scripting in Illustrator is to (due to necessity) find the most difficult way to achieve the simplest of tasks...
    so to retort I say this;
    “I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail.”
      ― Abraham Maslow, Toward a Psychology of Being

  • Is there any way to find out what a specific line of data usage was for?

    There is a line on my bill for 97 MB of usage while I was bowling?  I was not using my phone.  How can I find out what it was doing for that specific charge?

    Just like you said earlier
    3.  Re: Is there any way to find out what brush is applied to a path?
           imagecollection     Apr 7, 2015 6:01 PM  (in response to Silly-V)   
    The skill of scripting in Illustrator is to (due to necessity) find the most difficult way to achieve the simplest of tasks...
    so to retort I say this;
    “I suppose it is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail.”
      ― Abraham Maslow, Toward a Psychology of Being

  • Is there any way to find out wn was a table deleted apart from using audit

    Is there any way to find out wn was a table deleted apart from using audit
    Oracle version 9.2.0.7

    SQL> SHOW USER
    USER is "SCOTT"
    SQL> CREATE TABLE test_delete AS SELECT * FROM emp;
    Table created.
    SQL> DELETE FROM test_delete;
    14 rows deleted.
    SQL> COMMIT;
    Commit complete.
    SQL> conn sys@orclsb as sysdba
    Enter password: ******
    Connected.
    SQL> ALTER SESSION SET nls_date_format='DD-MON-RRRR HH24:MI:SS';
    Session altered.
    SQL> BEGIN
      2     DBMS_LOGMNR.START_LOGMNR (
      3           starttime => '02-FEB-2011 17:51:00',
      4           endtime   => '02-FEB-2011 17:54:00',
      5           options   => dbms_logmnr.DICT_FROM_ONLINE_CATALOG+
      6                        dbms_logmnr.continuous_mine +
      7                        dbms_logmnr.no_sql_delimiter +
      8                        dbms_logmnr.print_pretty_sql
      9                                  );
    10  END;
    11  /
    PL/SQL procedure successfully completed.
    SQL> set line 10000
    SQL> SELECT scn ,timestamp
      2         ,commit_timestamp, username
      3  FROM v$logmnr_contents
      4  WHERE
      5   username = 'SCOTT'
      6  AND  TABLE_NAME='TEST_DELETE';
           SCN TIMESTAMP            COMMIT_TIMESTAMP     USERNAME
       2309736 02-FEB-2011 17:53:20                      SCOTT
       2309739 02-FEB-2011 17:53:20                      SCOTT
       2309769 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
           SCN TIMESTAMP            COMMIT_TIMESTAMP     USERNAME
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
    17 rows selected.
    SQL>

  • Is there a way to find out where iMessages are being sent from? I've received messages from an unknown email that are offensive and considered to be harassment.

    Is there a way to find out where iMessages are coming from? I've contacted security personnel at my school and I'm brig harassed. I just want it to stop.

    '''Here is an update to my former response.'''
    Here is a safe way to look at an email which you think is suspicious:
    * right click on the message and select 'Save As'
    * the file name will be the email subject followed by an extension of .eml
    * store it in a folder you can find easily, such as your Documents
    * using your file explorer, right click on the file name and open it with Notepad or a similar text editor (NOT Thunderbird!)
    * even though the format is not easy to read, you should be able to see who sent it to you, and also read the message text.
    Since you are looking at the message in a text editor, there is no chance a link can activate something bad. I have used this method many times, and have found several spoofs of email names of my friends.

  • HT5244 Is there any way to find out after(!) running die Update, if i have been infected?

    Is there any way to find out after(!) running die Update, if i have been infected?

    Run any one of these tools: http://reviews.cnet.com/8301-13727_7-57413811-263/flashback-malware-removal-tool -roundup/
    Or you can check manually: http://reviews.cnet.com/8301-13727_7-57410096-263/how-to-remove-the-flashback-ma lware-from-os-x/

  • Is there any way to find out the serial number to an old ipod that i cannot find?

    theres a recall on the od ipod nanos the 1st generation ones and i purchased one and im not sure when and currently i am unaware of the whereabouts of the ipod. is there any way to find out the serial number without actually finding the ipod to confirm when i purchased it? thank you any help will be appreciated.

    iPod: How to find the serial number

  • Is there any way to find out who is accessing my find my iphone account ?

    Is there any way to find out who is accessing my find my iphone account ?

    No.  Go to id.apple.com, log in with your Apple ID & password, and immediately change your Apple ID password and security questions.
    Also, change the password to your associated emails counts as well.

  • Does anyone know if there's any way to find out what files in my Library

         Does anyone know if there's any way to find out what files in my Library I can delete? I just cleaned off my HD onto a media drive as a back up so all my movies documents and photos are gone but my Library seems to be a huge space hog eating sixty gigs of space and I do have alot of apps but they don't take up a third of that space... Any ideas how I can figure out what is wasting all this space? I had Spring Cleaning once but found it to be rather confusing as to what was essential to the OS and what not...
    Thanks,
    Matt

    Get free OmniDisk Sweeper. I can't imagine how you could have sixty GB in that folder. My entire ~Library isn't even 1GB. Are you sure you're not talking about your entire Home folder?
    Can you post a screenshot of the contents of that folder.
    Check again. Are you sure you moved all the Movies etc. out? Could have left duplicates of everything behind when you did this.
    Message was edited by: WZZZ

  • Is there any way to find out a Tcode used by user in a particular interval.

    Hi
    Is there any way to find out a Tcode used by user between 10/8/2009 to 31/8/2009, in production?
    Satish.

    Yes i have been trying SE16N only. But i am unable to pull data based on dates (Aug/8 to Aug 21)... its showing list of users who have accessed the tcodes directly for entire month....
    Se16n ->Export mode->month->08/2009
      --->     Transacction profile -->Standard
    I want to find out only users who have used a particular tcode during those dates.....in august..
    Satish

  • Any way to find out which program has created a job using 'JOB_OPEN'?

    Hi,
    I have some jobs created by some program. The job is incomplete, i.e., the programs which created the job just used 'JOB_OPEN' and it doesn't have any steps.
    Is there any way to find out which program created that incomplete job?
    Thanks in advance.
    Regards,
    Arun Mohan

    Not sure but try this FM
    BP_JOB_SELECT -Returns a table with job(s) details .
    кu03B1ятu03B9к
    Edited by: kartik tarla on Dec 30, 2008 6:50 PM

Maybe you are looking for

  • Messages can't be deleted from visual voice mail

    Hello, When I delete a message on the visual voice mail (in my combox from Sunrise Switzerland) this message don't disappear, or it's deleted and come back in seconds and sometimes with the blue point marking it as non read!!! Some times the phone "f

  • Unable to change Value  From M to S in p2011 for Orgini field

    dear freinds,              I have uploaded data using the F<M HR_INFOTYPE_OPERATION for infotype 2011 . However i am not able change the value for Origin(defaulted as M) ......as this field is greyed out . As such when i am trying to pass another val

  • No sound, but chip detected

    Right. My laptop's sound chip is an Intel 82801DB-ICH4, which is the exact chip used as an example in the ALSA article in the Archwiki, but following the instructions yields no result for my sound. Any ideas? The snd-pcsp module was not found and the

  • Retained earnings account

    Hi, Can we maintain retained earnings accounts as open item management account? our client has changed the status to Open item management account recently, due to this reason he is unable to do year ending carryforward through F.16. They are getting 

  • Value Funciont SD_PARTNER_UPDATE

    I need use function <b>SD_PARTNER_UPDATE</b> to update partner in delivery header(VL02N) .Someone has never used this function? How Can I value to change partner "SP"? Thanks in advance. Massimiliano