How to find large hidden file?

I had to reboot my Mac and when it came back, it said my startup disk is full (which it wasn't before - should have had like 5 Gigs left) and the OS isn't running properly (no Dock etc.). I booted off another drive and am trying to figure out what file got created to chew up the remaining space. It's got to be a core dump or syslog or something crazy like that. How do I find it, and empty that drive's trash, just in case, while booted off another drive?
thanks
Mike

This program will show all your files, hidden or not. Note this older version of the program will show everything, newer versions have some limitations: http://www.free-mac-software.com/whatsize/ .
Scratch that ... I just tried it on SL and it doesn't display
Disk Inventory X is another program, which does work in SL: http://www.derlien.com/downloads/index.html

Similar Messages

  • Newbie: How To find Core Dump files on Unix?!  URGENT!

    Hi, i would like to know on How To find Core Dump files on Unix?!
    I know they should be found in  /usr/sap/<SYSTEM-ID>/<INSTANZ>/work
    but there are no "core" files and also in tmp is nothing unusual but disk space is totally full.
    So how to find the big files which i could delete to make system running again?!
    can someone provide me with some infos?!
    br

    1. which user i should use to search and destroy?! root-user or SYSID-User?!
    Always use the user with the least permissions to do the job, don't use root if your sidadm can do it. If you want to find / delete SAP files use sidadm.
    2. I found no core files and the harddisk is still 100% full, what files might also cause this problem
    In your first post you wrote that /usr/sap/SID/INST/work dir is full, it is most likely that some trace files got to large. Check for files like dev_*, dew_w0 for example is the trace file of work process 0, dev_disp is the trace of the dispatcher and so on. You either have to increase the size of the filesystem, or find the cause for the growing file. It can be due to an increased trace level.
    3. What on database-side could cause this problems?! can i search for sth here.
    This does not look like a database issue so far.
    4. i was unable to use the given scripts (noob!), what can i do else?!
    Which one, please post what you typed and the error you got.
    Best regards, Michael

  • How to find out the file name

    Hi,
    In selection screen (parameter) user will give input TXT file from presentation server to upload to SAP. I need to capture the file name only but not the path and need to concatenate with date stamp and need to download error log in XLS file to presentation server.
    How to find out the file name from selection screen?
    I searched SCN threads but not found relavant solution.
    Thanks,
    R Kumar

    Hi
    This code gets only filename from selection screen :
    REPORT x.
    PARAMETERS p_file(100).
    DATA : gv_full_path LIKE  ibipparms-path,
           gv_full_path_string TYPE string,
           gv_filename(100),
           gv_file_ext(3).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Ask user to select file with a popup :
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = gv_full_path.
    Get filename from path :
      gv_full_path_string = gv_full_path.
      CALL FUNCTION 'CH_SPLIT_FILENAME'
        EXPORTING
          complete_filename = gv_full_path_string
        IMPORTING
          extension         = gv_file_ext
          name              = gv_filename.
      CONCATENATE gv_filename '.' gv_file_ext INTO gv_filename.
      p_file = gv_filename.
    I hope it helps.

  • How to find number of files in a folder using pl/sql

    please someone guide as to how to find number of files in a folder using pl/sql
    Regards

    The Java option works well.
    -- results table that will contain a file list result
    create global temporary table directory_list
            directory       varchar2(1000),
            filename        varchar2(1000)
    on commit preserve rows
    -- allowing public access to this temp table
    grant select, update, insert, delete on directory_list to public;
    create or replace public synonym directory_list for directory_list;
    -- creating the java proc that does the file listing
    create or replace and compile java source named "ListFiles" as
    import java.io.*;
    import java.sql.*;
    public class ListFiles
            public static void getList(String directory, String filter)
            throws SQLException
                    File path = new File( directory );
                    final String ExpressionFilter =  filter;
                    FilenameFilter fileFilter = new FilenameFilter() {
                            public boolean accept(File dir, String name) {
                                    if(name.equalsIgnoreCase(ExpressionFilter))
                                            return true;
                                    if(name.matches("." + ExpressionFilter))
                                            return true;
                                    return false;
                    String[] list = path.list(fileFilter);
                    String element;
                    for(int i = 0; i < list.length; i++)
                            element = list;
    #sql {
    insert
    into directory_list
    ( directory, filename )
    values
    ( :directory, :element )
    -- creating the PL/SQL wrapper for the java proc
    create or replace procedure ListFiles( cDirectory in varchar2, cFilter in varchar2 )
    as language java
    name 'ListFiles.getList( java.lang.String, java.lang.String )';
    -- punching a hole in the Java VM that allows access to the server's file
    -- systems from inside the Oracle JVM (these also allows executing command
    -- line and external programs)
    -- NOTE: this hole MUST be secured using proper Oracle security (e.g. AUTHID
    -- DEFINER PL/SQL code that is trusted)
    declare
    SCHEMA varchar2(30) := USER;
    begin
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.io.FilePermission',
    '<<ALL FILES>>',
    'execute, read, write, delete'
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.lang.RuntimePermission',
    'writeFileDescriptor',
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.lang.RuntimePermission',
    'readFileDescriptor',
    commit;
    end;
    To use:
    SQL> exec ListFiles('/tmp', '*.log' );
    PL/SQL procedure successfully completed.
    SQL> select * from directory_list;
    DIRECTORY FILENAME
    /tmp X11_newfonts.log
    /tmp ipv6agt.crashlog
    /tmp dtappint.log
    /tmp Core.sd-log
    /tmp core_intg.sd-log
    /tmp da.sd-log
    /tmp dhcpclient.log
    /tmp oracle8.sd-log
    /tmp cc.sd-log
    /tmp oms.log
    /tmp OmniBack.sd-log
    /tmp DPISInstall.sd-log
    12 rows selected.
    SQL>

  • How to find PG.xml file name and path associated with a FUNCTION

    Hi,
    I am having a function:IRC_VIS_HOME_PAGE with Web HTML value as below:
    OA.jsp?akRegionCode=IRC_VIS_HOME_PAGE&akRegionApplicationId=800&OAPB=IRC_BRAND
    How to find PG.xml file name and path assoicated with above funtion.
    Thanks,
    ashok

    Ashok,
    Function IRC_VIS_HOME_PAGE will have 2 parameter defined for it which are OASF and OAHP where
    OASF=<SelectedFunctionName> - this tells the Framework to select this function in the given "Home Page" menu context.
    OAHP=<HomePageMenuName> - this is used ONLY with the OASF parameter, and it is used to establish the current menu context. It should point to a "Home Page" menu.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to permanently display hidden files/folders in open/save dialog?

    I know about Apple-Shift-Period. I just wonder wether i can make this setting permanent. Also, making the Finder show hidden files is not what i'm looking for. Thanks for replying!

    bobvjsingh wrote:
    World's most advanced OS, can't do such a simple thing!!!, thanks for your answer anyways.
    The world's most advanced OS (OS X) can do this, just click the header for Name or Kind. Simple as that.
    The problem is that you have posted in the wrong forum. You did not post in the OS X forum. You posted in the Classic Mac OS forum, a forum for an OS that has been dead for 13 years. So you were given a correct answer for the forum you posted in. If you were asking about the current OS X Mountain Lion system at the bottom of your post, you can do what you requested, as described at the beginning of this post.

  • How to find the hidden objects in Webi Rich client  report 4.0 sp 04 ?

    Hi,
    How to find the hidden objects in Webi Rich client  report  at BI 4.0 sp 04 ?
    Best Regards,
    ASR

    Hi Sai,
    Go to Report Element Tab-->There you have a Tab Cell Behaviors.
    When you flip between 'With Data' and 'Structure Only' under 'Design' Tab,you can see the some cells will be hide/Un hide behavior,if hiding of cells applied.
    Select that cell and then Under 'Cell Behaviors'-->'Hide' Tab-->and choose Show Option.
    Regards,
    Venkat P

  • How to find out average files i am getting every day in a month?

    How to find out average files I am getting every day in a month?

    Do you mean average count of files received?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to find the downloaded file. its not in the "downloads".

    how to find the downloaded file?

    Open Finder, and type "Today" in the search area in the upper right of Finder's window.
    Then click "Today" under "Dates" in the resulting drop-down menu.

  • How can I hide hidden files again?

    Hi I just bought a new macbook pro with maverick 10.9.3 I believe and made my hidden files viewable to extract certain data. But now I want to hide the files again how do I go about doing that?
    thanks!

    You could try it in Terminal:
    defaults write com.apple.finder AppleShowAllFiles FALSE
    Then:
    killall Finder

  • How can i see hidden files in macBook air?

    how can i see the hidden files in macbook ,  i dont know how to unhide it and i dont know how to hide it also.

    Hey Ajithchowdary,
    I have two articles for you that may be able to help you resolve your question:
    OS X: How to include system files in Finder search results
    http://support.apple.com/kb/HT4355
    OS X Mountain Lion: Find invisible files
    http://support.apple.com/kb/HT4355
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • How to find the unused files for deletion?

    After mapping 600 xml files, how does one find the unused files for deletion from the folder? (eaiser and cheaper translations)
     

    iWeb will open any file with the extension .sites2 - it doesn't have to be named "Domain".
    See this page for how to open separate Domain files when using Lion/Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html
    The above page will also let you know how to find the library folder now that its hidden.

  • How to move large audio files to deskop from iPhone?

    How can I move large audio files from my iPhone 4S (IOS7) to my iMac (OSX 10.5.8)?
    I can not use:
    - iTunes (will not install high enough to this ol'mac to work with IOS7)
    - cloud-servers
    - email, iPhone will not mail that big files...
    - image transfer program (will not work with audio files)...
    - etc.
    Is there any cable that will work? Can I modify my iPhone? Is it possible to move back from iOS7 to iOS6?
    This is kind of a big issue for me because I make long interviews with my iPhone but now I do not know how to move the files from my iPhone to my iMac for editing and pubishing.
    All ideas are welcome (except buy a new iMac)! Thanks in advace!

    dileep2all wrote:
    i have icloud problem.   plz help
    we have mobile shops   
    i buy mobile from custmoer.   when customer went away.  i make formated.   icloud is showing.  i have all with box mobile everything
    You cannot use the iPhone unless you have the previous owners AppleID & password.
    See this -> Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    Sounds like you need to change your process when you buy used iPhones.
    See this -> What to do before selling or giving away your iPhone, iPad, or iPod touch

  • DW CS6 Mac OS (latest): how to find the cash file?

    recently I run into problem with DW, it keeps hanging.
    In this forum is mentioned to delete the cash file could help.
    Unfortunately I cannot find any cash file.
    In the mentioned path:  >Library>Aplication Support>Adobe> there is no Dreamweaver CS6 directory or any sign of Dreamweaver.
    I went through the whole list and found it only in >Extension Manager CS6>EM Store and it is empty.
    Now, what to do? Any idea how to solve the problem would be appreciated.
    Another problem is Fireworks CS6 does not open from inside DW CS6, it gives an error: check whether it is installed or there is enough memory, even if I start FW first, it gives the same error.

    Wolfgang_elf wrote:
    opening bigger files (perhaps 200kB) with a few .js and css files attached DW CS6 switches into some kind of crawl mode, it takes minutes before it responds to a mouseclick or keyboard entry and working is impossible.
    If you have very large files, it's generally a good idea to turn off the site cache to speed up Dreamweaver's response.
    Go to Site > Manage Sites.
    Select the site that contains the large files, and click Edit (the pencil-shaped icon at the bottom left).
    In the Site Setup dialog box, select Advanced Settings > Local Info.
    Deselect the Enable Cache check box.
    This setting is site-specific, so you need to change it for each site individually.
    Also, if DW is running slow, check the amount of memory in your machine. The more the better.

  • Need help finding a hidden file

    I then discovered that phpMyAdmin doesn't work.
    Towards the end of the discussion, someone wrote, "WordPress had put a .htaccess file in the root level of my hard drive.
    "So in order, if you want to delete this file, you got to activate "hidden files viewing" in the terminal by typing this
    defaults write com.apple.finder AppleShowAllFiles TRUE
    and this
    killall Finder
    "After, you go in the computer root and this should be there, now delete it and to get all this crap working again as it should had…"
    I'm confused. I typed all that into Terminal, and it doesn't display anything. In another post, someone mentioned a program called TinkerTool. I downloaded it, but I don't know what to do next. How do I navigate to the root level of my hard drive and find a file and delete a file named .htaccess?
    Thanks.

    Download and run the free application TinkerTool (not "TinkerTool System"), select the Finder tab, and check the box labeled Show hidden and system files. Then click Relaunch Finder.

Maybe you are looking for

  • Unable to format external drive as Mac OS Extended

    I just bought a WD 3TB My Book Essential external hard drive so I can free-up space on my Mac Mini. When I used Disk Utility to erase the data and reformat the drive as Mac OS Extended, I got the following error: +Disk Insertion+ +The disk you insert

  • Adobe CS6 installer not initializing

    Trying to install adobe PS CS6 and the installer fails to initialize every time. It gets a little over half way done and then errors out. It tells me to download support advisor but it is not outputting any error logs so support advisor does not see

  • XSLT Transformation service

    Does the livecycle ES workbench trial version have example process containing the XSLT Transformation service? I want to see the workflow with XSLT transformation involved. Thanks, Bing Wang

  • Files change

    every time  i change a pdf file to a word file. the content is changed.  How do i stop that from happening?

  • Exporting for internet upload and email

    Hi,I have a 4minute clip which I want to export from final cut in 2 different versions. 1. For emailing 2. For uploading to internet (myspace,you tube etc...) Can anyone advice me on the best settings i can use? Thanks Danny