Hard drive storage issue - "Other" and not showing correct data usage

I'm currently using a MacBook Pro (Retina 15" Mid 14') which I purchased less than a month ago.
Based on my "about this mac" storage summary, I'm using over 190GB, yet I can only account 67GB of usage. I've restarted and reindexed my spotlight search twice (once via terminal, next through system preferences).
Where is all my disc space? What am I missing?

You might run OmniDiskSweeper and Grand Perspective in Root.  This mat find the discrepancy.
These are the commands that you will have to enter for each in Terminal
sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
Naturally you will run one at a time, not simultaneously.
Look at this as a guide:
http://www.macobserver.com/tmo/article/how_to_recover_missing_hard_drive_space
Note that when you enter your password, it will not be displayed.
Before you start any thing, MAKE CERTAIN THAT YOUR DATA IS BACKED UP!
Ciao.

Similar Messages

  • Discoverer Viewer not showing correct data when scheduled

    Hi All,
    I have a bit of an ongoing issue and cannot find an answer through Oracle.
    We have an issue that when a cross-tab workbook is run manually in Desktop this returns correct data, when scheduled in desktop it returns correct data in desktop, but when opening the scheduled workbook in viewer, incorrect and irrelevant data is returned
    Here is a little information on the field that is not returning correct data;
    The field is based on a calculation, the calculation (lets call BOB) contains PL/SQL function concatenated with an NVL calculation, this other calculation is a DECODE. I have been playing with changing the content of the BOB calculation, by removing the PL/SQL function and the DECODE calc from BOB and scheduling the report, the data is returned in viewer, in fact i've attempted one without the other and this still does not return the correct data.
    This version of discoverer that is not returning data is V 10.1.2.50.05. I've tested this on a later environment with Discoverer V 10.1.55.26 and the data is returning correctly through the sceduled report in viewer.
    My questions;
    1. Has anyone ever come across something similar to this in version 10.1.2.50.05
    2. Is there any detail available regarding what upgrading to 10.1.55.26 offers?
    3. Know any workaround for using PL/SQL calculations in a scheduled workbook? I am aware that not aggregable items will not be returned in v11 when scheduling workbooks.
    Many thanks in advance for any help.
    Simon

    Bumping this thread
    Thanks
    Si

  • LastDataRefresh(ROLLUPTIME)-does not show correct date for multiprovider

    Hi,
    The Last data refresh (Rolluptime) shows incorrect date for multiprovider and we use lot of multiproviders.
    Removing the last data refresh from the "Information" button of the Bex Web Analyzer which is using the "Information field web item",  shows an empty space and a colon ":" and an empty box.
    Please let me know if there is any other way to remove the last data fresh without showing the empty space.
    We are on SPS 7 and FEP 7. Is this problem still exist in SPS 8/FEP 8?
    Thankyou,
    -Sini
    Message was edited by: Sini Kumar

    Depends on your definition of correct. Your initial question was that this time does not display. This time should display. For a multprovider, it uses this formula
    first(last(<All InfoProviders under Multi - ROLLUPTIME>))
    It uses the earliest rollup time from the last rolluptime of all the base providers.

  • Export to PDF from Infoview does not show correct data - CRS 2008

    I have a problem where users attempt to export a report from the Infoview interface to a PDF.  The report shows correctly in Infoview while in Crystal Reports format, but when the use exports the data, the data changes and shows different values.  To troubleshoot, I have tried this on different clients - without a change in the result.  I have also pulled the latest instance of the report from this history on the Central Management Console.  Interestingly enough, the same thing happens when I export to a PDF from there as well.  Any insight or help would be greatly appreciated.  Thanks!

    Hello,
    I can't tell you offhand on what the issue is here, as various factors come into play.
    Here are a few troubleshooting steps you can try:
    - Try opening the report in Crystal Report designer and export to pdf from there. Does this work?
    - Instead of viewing the report and export; schedule a report to PDF and check the results.
    - there is currently a know issue in regards of certain formulas and using font type "arial Unicode MS" that gives incorrect export to pdf. Maybe alter the font used.. or see if you take out any questionable formulas and try again to export.
    Regards,
    Duncan

  • Table Refresh not showing correct data

    Hi ,
    Jdeveloper version 11.1.2.2.0
    I am facing issue regarding data refresh on table whenever value changes in LOV. Here goes the usecase :
    Please not I m not using ViewLink ( as some constraint in my project.. this is a sample to replicate )
    LOV to select department. - AutoSubmit ( true) . Value change listener code :
    +// Add event code here...+
    +setExpressionValue("#{bindings.DepartmentsEOView1.inputValue}",+
    +valueChangeEvent.getNewValue());+
    +OperationBinding operationBinding =+
    +findOperation("setBindVarForEmployeeVO");+
    +operationBinding.execute();+
    AMImpl method which takes the deptId and executes the Employee. ( This method is the default activity of the taskflow and called whenever the value selected in Department LOV changes)
    +public Integer setBindVarForEmployeeVO(){+
    +Integer deptIdVar = new Integer(-1);+
    +DepartmentsEOViewImpl deptVO = this.getDepartmentsEOView1();+
    +if(!deptVO.isExecuted()){+
    +deptVO.executeQuery();+
    +}+
    +if(deptVO.getCurrentRowIndex()==-1){+
    +deptIdVar = (Integer)deptVO.first().getAttribute("DepartmentId");+
    +}else{+
    +deptIdVar = (Integer)deptVO.getCurrentRow().getAttribute("DepartmentId");+
    +}+
    +this.getEmployeesEOView1().setDepartmentIdVar(deptIdVar);+
    +this.getEmployeesEOView1().executeQuery();+
    +System.out.println("Salary of emp "+ this.getEmployeesEOView1().first().getAttribute("Salary"));+
    +return deptIdVar;+
    +}+
    Editable Table displaying Employees for selected department ( I have a viewCriteria in-memory applied on my VO when exposed in AM ) . Partial Trigger points to LOV .
    I did following on page and not getting expected results :
    1. For Department 340, I changed the salary of the first employee shown from 25000 to 15000.
    2. Selected another department 10 in department LOV.
    3. Reselect the department 340, and ... what I see is salary is 15000. Even though we are re-executing the VO.
    How do i know it is refresh issue :
    In my am method I am printing the salary of the first employee for a department. ... it is getting printed 25000.
    Am i missing something ..
    Sample application ... http://dl.dropbox.com/u/70986236/Question%20Posted%20on%20OTN/TestViewCriteriaMode.zip
    Thanks,
    Rajdeep
    Edited by: Rajdeep on Aug 7, 2012 5:51 PM
    Edited by: Rajdeep on Aug 8, 2012 2:18 AM

    thats wht i am saying.. if you are using an inputText then the refreshed values will not be shown immediately.. it needs an externa laprtial refresh.. ok do one thing. change the salary value in the UI to outputText and see if the value is refreshing or not. if it refreshes then the issue is with the inputText refresh.. otherwise we have to investigate further.. by the way the app that you gave.. was giving some bc4j error.. for which i need time to investigate.. will look into it later..

  • Skype via 3G not showing on data usage?

    I live in the US and received a skype call from a buddy in Greece. We're both using our iPhones. I'm on 3G...he is on wi-fi. We had a 5min call, but when I check AT&T data usage, I don't see any data usage that reflects my skype call using 3G. How is that?

    From the call receivers point of view, a Skype call to a mobile or landline appears to be just another phone call, and is subject to any local charges you may have to pay to receive calls (you'll probably pay to receive calls if you were outside your home country). A Skype call doesn't require the person called to have Skype installed, or to have a data connection, as the routing of the call is done via the Internet, but ultimately the call is connected the same way as any other call - through the telecoms network.
    If you call someone, you'll need the WiFi connection or 3G to make the call, in which case it'll show up as data usage if 3G is used.
    You'll probably find that your Greek friend will pay a small charge per minute to Skype (perhaps a few cents of a Euro per minute) to make the call, but it is very cheap, even to international mobiles. Skype in turn may pay a fraction of this charge to AT&T to connect the call for you, and to your iPhone it'll probably look like it's a local call rather than an international one.
    Check out the Skype pages for more info on how this works.
    http://www.skype.com/intl/en/features/allfeatures/call-phones-and-mobiles/

  • Discoverer Report opened from Portal does not show correct data

    Hi,
    When I try to open a Discoverer report from a portal that I created, it shows stale data but when I click on "Analyze", it shows all the data correctly.
    Does anyone know what the reason could be for this?
    Thank you,
    Santoshi

    I assume you used the Discoverer Portlet Provider. A discoverer portlet is never live data. When you define the portlet you specify how often to 'refresh' the data. If you skipped this step, then you just get the data as-of when you created the portlet.
    Generally you specify the refresh time to be sometime after your usual database load completes.

  • Hard drive storage issue

    I just installed the firmware update to my intel flat panel. All seemed well. But later that day, I was imformed that I had exceeded my memory and would need to delete files, etc. I have 160 gig drive. when looking at system profiler, it shows I have 85 gigs left. I also have basecamp, and have 15 gigs for the windows sector. However, when I look at Finder, under my documents, it shows only 12 KB available (after I deleted some old files). When I look at finder under applications, it shows the 85 gigs available.
    This initially came up after downloading some music from iTunes.
    Any help would be appreciated. I am the only user of this computer, so there are no other user profiles.

    I think I have an issue with Filevault. I have tried to remove it a number of times and have been unsuccessful. I get an error message. I have removed most of my files from my home folder, which now only allows me to have about 25 gigs of space, and is filevault protected.
    Is there a way to remove filevault somehow that I may be missing. The error message that I get just says there was an error in removing filevault, and your files will remain encrypted.
    I am hoping that by removing filevault I will solve the larger problem of my home folder shrinking.
    Thanks for your help.
    imac flat panel   Mac OS X (10.4.6)  

  • Can I switch Hard Drive Mappings for ITUNES and NOT Re-sync Apple TV?

    I am running out of space on my PC with Itunes. Is there a way that I can add more hard disk space on the PC without having to RE-SYNC everything to the Apple TV, once it knows that I changed drives?
    What I would like to do is to add an external drive (1 Terrabyte), and move all the movies, pictures, songs, to the new drive WITHOUT having to re-synce everything to the APPLE TV.
    Appreciate any suggestions?

    This should work, but I can't guarantee you won't need to resync:
    http://support.apple.com/kb/HT1364

  • Ipod Showing as hard disk but files corrupt and not showing in itunes

    my ipod has been acting funny recently but skiping multiple songs and none of the album arts showing up. i plugged it into my laptop just not and it said i need to restore my ipod. i restored it but that did nothing to my ipod. all of the songs were on there still and nothing had been taken off. i tried the same on my other computer but this has not even showed my ipod up in itunes. it is being shown in disk mode even though i didn't select the disk mode option. i tried to click on the files on the ipod but they were being shown as corrupt. i have tried all troubleshooting but no help. please help me. thankyou

    Try to restore your iPod from iTunes.
    If this does not fix the problem, try the free trial version of CopyTrans Doctor http://www.copytrans.net/doctor.php

  • Why doesn't the additional 500mb data I bought the other day not show up under usage on the app?

    I needed more data temporarily. The rep on the phone said she added it and deducted $5 from my balance. But when I check my usage on the app, it still says 2 GB. I called the phone number but can't figure out how to get through to a human.

        seblife,
    Making sure your plan is correct is definitely a priority for us and we will help with getting this taken care of. Do you have prepaid service or post pay?
    CandiceH_VZW
    Follow us on Twitter at @VZWSupport

  • Siebel BIP report not show correct data when current view=my programs view

    Dear All,
    I have report that contain field approval,
    which is when i login as 'SASKIA' as example then i want to print report budget request,
    this report contain field approval like :
    Employee Login
    HOKIONO     
    BAMBANG
    PONGKY
    SASKIA
    but when i print the report it just show:
    Employee Login
    SASKIA
    and it happened only if i print report in 'MY Programs' view,
    the report show ok in 'All Programs' view.
    and when checked in siebel tools, IO Program Container(that used in report), the link already set to all.
    Please help me on this.
    Best regards
    Cecilia

    try adding a user property to your integration object:
    User Property Name: "ViewMode"
    User Property Value: "All"
    see if it has any effect - for me it solved some issues with data not being displayed!
    Benny

  • Usage Tracking not showing correct data.

    We have configured usage tracking in our project.while creating a report with(Subject Area,Query,Request ) it shows the dashboard filter query of all subject area in a particular subject area.
    Eg : If Subjuct area SA1 has a dashboard prompt query "@@@@' ,and Subjuct area SA2 has dashboard prompt query "$$$$$' ,both the querys are shown in Subjuct area SA3 in the usage tracking reports.

    Hello,
    We implemented usage tracking too
    Make sure you are not running into the following BUG pre-10.1.3.4.1:
    BUG 7233756 - USAGE TRACKING DOESN'T CAPTURE AD-HOC REPORTS CORRECTLY
    We found this issue and verified it was resolved in 10.1.3.4.1.this problem is still there, and we are getting value of random subject are populated for drill down queries. is there any bug for this too?

  • Links in Reports Not Showing Correct Data

    Good Afternoon!
    I've recently found that the links in some reports are not working as they should.  Below is an example from a report I just tried:
    Example
    I ran the report "Count of all instances of specific software registered with Add or Remove Programs" and selected a specific Collection I had created.  The report ran as it should and displayed a list of all software titles and versions for all of
    the collection's workstations combined.
    One application has 5 different versions installed amongst the collection and I need a list of them.  Each of the 5 versions was listed and each had a link.  When clicking on the link, though,
    it showed a list of "all systems" workstations which had the application / version - not just the number of or machines from the collection the report was run on.  Long story short, the report displayed about
    11 machines, but clicking on the link showed a list of about 40.
    I don't know if this is by design, but it's really difficult to work with.  I am having to make individual queries for the data which takes much longer.  Is there a resolution to this?
    Thank You!
    Ben K.

    Yes, I know this is an old post, I’m trying to clean them up, Did you figure this out, if so how?
    Yes this is be design however you can modify the "Computers with specific software registered in Add Remove Programs" report and have it filter on both the SW title and collection.
    http://www.enhansoft.com/

  • Report License 01A not showing correct data

    I have recently installed SCCM 2007 and have a good number of machines with agents installed.
    When I run the above report, I get no Office 2003 numbers (though, I know it is installed on most of the machines). I instead get Office 2007 listed. Is it possible that SCCM is reading a key that is for 2007 but we have 2003 installed instead?
    Also, in the same report, I am getting 30+ Windows 2008 servers, when we do not have any installed at that location
    Any thoughts?

    Yes, I know this is an old post, I’m trying to clean them up.
    There are a number of Post SP2 AI fixes, I would suggest installed them and seeing if that fixes the problem, if not then you need to contact CSS directly for support as they are the only one that can fix this problem.
    http://www.enhansoft.com/

Maybe you are looking for

  • Report file name as parameter

    There's probably a simple answer to this but I can't figure it out... I have made a jsp-page to view my report using CR4E's Create Viewer JSP wizard. Instead of hard-coded report file name, I'm taking the name from URL parameter like this myviewer.js

  • Using a different appleID for facetime on iPad

    I have a macbook pro and an iphone, both set up with my appleID. I recently bought two iPads for my children for school purposes. Both iPads have my appleID on them for apps and such. (I already purchased apps for my iphone and they're too young for

  • Insertion of user name failing in 10g--very very urgent

    Hi I have this insert statement: INSERT INTO tHistory(Client_ID,Table_Ref,Table_ID,Entry_Type,Subject,User_Name ,Parent_ID,content) VALUES( 'D5555555','tClient','D555555','edit','Edit By '||user,user,0,'test'); all fields are non nullable. However wh

  • How many types pricing procedure in MM

    pls guide? means with taking tax included,excises, customs? accruvals and account key difference ? to this give same G/L acccount no's maintain in account determination?

  • IMovie 09 freezes each time I open the project I'm working on. Help?

    iMovie 09 freezes each time I open the project I'm working on. It has worked perfectly fine the past week, but now it won't load different aspects of the screen. For example, when I role over the screen the video will play in the small play back scre