Free memory command

hello everybody
im getting a short dump of memory storage not available when double looping
loop at idatafile into wa_datafile.
   refresh i_update_bef.
      refresh i_old_bef.
      refresh i_old_after.
    date = sy-datum.
    concatenate date6(2) date4(2) date+0(4) into date2
    separated by '.' .
    concatenate '31' '12' '9999' into end_date
    separated by '.' .
    concatenate '9999' '12' '31' into end_date2.
   refresh icustomer.
    select  * from knvh into
    corresponding fields of table icustomer
    where hkunnr = wa_datafile-kunnr
    and hvkorg = wa_datafile-old_vkorg
    and hvtweg = wa_datafile-old_vtweg
    and hspart = wa_datafile-old_spart.
    loop at icustomer into wa_customer.
    clear datab.
    datab = wa_customer-datab.
    CALL FUNCTION 'BAPI_CUSTOMER_GET_CHILDREN'
         EXPORTING
              VALID_ON   = wa_customer-datab
              CUSTHITYP  = wa_customer-hityp
              NODE_LEVEL = '00'
              CUSTOMERNO = wa_datafile-kunnr
         IMPORTING
              RETURN     = return
         TABLES
              SALES_AREA = isales
              NODE_LIST  = inode.
    loop at inode into wa_node.
      if  wa_node-parent_customer is initial.
        wa_update-parent_customer = wa_node-customer.
        wa_update-parent_sales_org = wa_datafile-new_vkorg.
        wa_update-parent_distr_chan = wa_datafile-new_vtweg.
        wa_update-parent_division = wa_datafile-new_spart.
        wa_update-custhityp = wa_node-custhityp.
        wa_update-valid_to = end_date2.
        wa_update-valid_from = wa_customer-datab.
        append wa_update to i_update_after.
        wa_update-parent_customer = wa_node-customer.
        wa_update-parent_sales_org = wa_datafile-old_vkorg.
        wa_update-parent_distr_chan = wa_datafile-old_vtweg.
        wa_update-parent_division = wa_datafile-old_spart.
        wa_update-custhityp = wa_node-custhityp.
        wa_update-valid_to = wa_node-valid_to.
        wa_update-customer = space.
         wa_update-salesorg = wa_datafile-old_vkorg.
       wa_update-distr_chan = wa_datafile-old_vtweg.
       wa_update-division = wa_datafile-old_spart.
       wa_update-custhityp = wa_node-custhityp.
       wa_update-valid_from = wa_node-valid_from.
      append wa_update to i_old_bef.
      else.
        clear date3.
        concatenate   date0(4) date4(2) date+6(2) into date3.
        wa_update-parent_customer = wa_node-parent_customer.
        wa_update-parent_sales_org = wa_datafile-old_vkorg.
        wa_update-parent_distr_chan = wa_datafile-old_vtweg.
        wa_update-parent_division = wa_datafile-old_spart.
        wa_update-custhityp = wa_node-custhityp.
        wa_update-valid_to = wa_node-valid_to.
        wa_update-customer = wa_node-customer.
         wa_update-salesorg = wa_datafile-old_vkorg.
       wa_update-distr_chan = wa_datafile-old_vtweg.
       wa_update-division = wa_datafile-old_spart.
       wa_update-custhityp = wa_node-custhityp.
       wa_update-valid_from = wa_node-valid_from.
      append wa_update to i_old_bef.
*check if customer exist in new sales area
*if it exits check in table knvh
*if it does not exist, insert
        select single *
        into wa_knvv
        from knvv
        where kunnr = wa_node-customer
        and vkorg = wa_datafile-new_vkorg
        and vtweg = wa_datafile-new_vtweg
        and spart = wa_datafile-new_spart.
        if sy-subrc ne 0.
*if customer doesnt exist in new sales area, create it in new_sales area
          select single
          ktokd into ktokd
          from kna1
          where kunnr = wa_node-customer.
          if ktokd = c_h_acc_group.
           perform copy_sales_area_hierarchy
                       using wa_node-customer wa_datafile-new_vkorg
                           wa_datafile-new_vtweg wa_datafile-new_spart
                           wa_datafile-old_vkorg wa_datafile-old_vtweg
                           wa_datafile-old_spart.
          else.
           perform copy_sales_area
                           using wa_node-customer wa_datafile-new_vkorg
                           wa_datafile-new_vtweg wa_datafile-new_spart
                           wa_datafile-old_vkorg wa_datafile-old_vtweg
                           wa_datafile-old_spart.
          endif.
         endif.
          select single *
          into wa_knvh
          from knvh
          where hityp = wa_node-custhityp
          and hkunnr = wa_node-parent_customer
          and hvkorg = wa_datafile-new_vkorg
          and hvtweg = wa_datafile-new_vtweg
          and hspart = wa_datafile-new_spart
          and datab = wa_node-valid_from.
          if sy-subrc ne 0.
            wa_update-parent_customer = wa_node-parent_customer.
            wa_update-parent_sales_org = wa_datafile-new_vkorg.
            wa_update-parent_distr_chan = wa_datafile-new_vtweg.
            wa_update-parent_division = wa_datafile-new_spart.
            wa_update-custhityp = wa_node-custhityp.
            wa_update-valid_to = end_date2.
            wa_update-customer = wa_node-customer.
            wa_update-salesorg = wa_datafile-new_vkorg.
            wa_update-distr_chan = wa_datafile-new_vtweg.
            wa_update-division = wa_datafile-new_spart.
            wa_update-custhityp = wa_node-custhityp.
  wa_update-valid_to = wa_node-valid_to.
            wa_update-valid_from = wa_customer-datab.
            append wa_update to i_update_after.
            else.
              concatenate 'customer' wa_node-customer
         'does not exist in sales area'
         wa_datafile-new_vkorg wa_datafile-new_vtweg
         wa_datafile-new_spart into wa_error-message_v1.
         append wa_error to return4.
           endif.
      endif. "if  wa_node-parent_customer is initial.
    endloop.
   endloop.
can i use a free memory ?
will this affect the contents of the internal table?
should i use this command at the end of ecah loop?

Hi ,
I don't think Free Memory will help you in preventing the run-time dump. But i guess strucuturing your program in a better way will certainly will.
Remove the following statement from within the loop.
<b>select * from knvh into
corresponding fields of table icustomer
where hkunnr = wa_datafile-kunnr
and hvkorg = wa_datafile-old_vkorg
and hvtweg = wa_datafile-old_vtweg
and hspart = wa_datafile-old_spart.</b>
You can select all data from KNVH table based on the entries in your internal table idatafile using for all entries instead of using a loop-endloop construct.
This would help you to reduce the no: of loops from 3 to 2.
Get the field kunnr into the structure of internal table icustomer so that you can select using the above statment & use it in your loop.
Regards,
Chetan.
PS:Reward points if this helps.

Similar Messages

  • Free Memory in User Exit

    Hi,
    We are having an issue that while doing invoicing using TCode MIRO, the invoice number gets generated and can be seen in Purchase Order History but the invoice document is not found in the system.
    According to SAP Note 743744, this could be because of the command Free Memory used in SD user exits (user exits called in program SAPMV45A, can be seen using TCode SE80). In our case we have used the free memory command in a customised function module called in  USEREXIT_DELETE_DOCUMENT (Include MV45AFZZ).
    1) Is it neccesary to use free memory to clear the ABAP memory. Can we use some other command like CLEAR instead of free memory?
    2) Suppose if we do  not use FREE MEMORY, and then assign some value to the memory (it already had some value originally), what will happen?
    Any other suggestions would also be welcome.
    Thanks in advance.
    Mick

    Clear it will clear the variable value and header line of internal table.But not the memory value.
    For that we need to use the Free Memory ID 'XXX'.
    While Processing the transaction again the previous value may come. Thats the reason why we are free the memory.
    Regards,
    madan.

  • Optimize free memory

    I tried a demo of a program called Leopard Cache Cleaner and one of the options it has is to "Optimize Free Memory." When running this command, the used memory on my system can go down from 900+MB used down to around 300MB. Can this operation be done with the Terminal? Usually programs like this and OnyX are just wrappers for several command-line utilities.
    Btw, I know that this optimize free memory command may or may not provide any real benefit with the way that OS X handles memory. I am still interested to know what the command is though. Thanks!

    Alan Ivey wrote:
    Btw, I know that this optimize free memory command may or may not provide any real benefit with the way that OS X handles memory. I am still interested to know what the command is though. Thanks!
    I do not know if such a command exists but sync may free some memory.
    You can also write a C program that just allocates your Mac memory. By exiting it, your memory will be freed.
    Mihalis.

  • Concept of free –m command in Linux

    I wanted to know the concept of free –m command as there are different rows of Mem, -/+ buffers/cache & Swap in the output. As an example, it is showing 195 as free Mem in my server but 13850 in the free section of the -/+ buffers/cache. The output needs in depth knowledge of the different parameters of the command.
    I hope, my question is clear.
    Please revert with the reply to my query.
    Regards

    This is my understanding. used and free column in line 2 can be used to find out total used and free memory for applications
    [oracle@test ~]$ free
    total used free shared buffers cached
    Mem: 264122724 253692112 10430612 0 2074864 178696468
    -/+ buffers/cache: 72920780 191201944
    Swap: 8388600 0 8388600
    select 264122724/1024/1024 "Total RAM" FROM DUAL; (264122724 ---from line 1 Mem)
    Total RAM
    251.887058
    select (253692112-(2074864+178696468)) "used for applications" from dual; (used from line 1 - (buffers + cached) from line 1)
    used for applications
    --------------------- (matches with used from line 2)
    72920780
    select 10430612+2074864+178696468 "total free for applications" from dual;
    total free for applications
    191201944 (matches with free from line 2)
    Edited by: vlethakula on Jan 17, 2013 7:18 AM

  • High cache usage of free memory

    I dont know if this is normal but my fresh archlinux x86_64 install with Xfce uses round 300Mb of 4Gb ram space after boot but then after i start and close some programs i get to 3 Gb used of 3.87 Gb free memory when all applycation are closed. Now i understand that kernel caches some data in memory but i cant clear it all with commands:
    sync
    echo 1 > /proc/sys/vm/drop_caches
    echo 2 > /proc/sys/vm/drop_caches
    echo 3 > /proc/sys/vm/drop_caches
    After i do that system reports 540 Mb used compared to 300Mb from boot. Is there a way to limit the ammount of cache usage so i dont end up having all free memory used by cache?
    Last edited by Anril (2009-12-29 13:19:52)

    Ram that is unused is wasted ram, the linux kernel manages it very well so no worries there.
    If you have swap usage it's because most probably you have things stored in the ram that are not being used often but cannot be discarded too so things being used more often take precedence.
    If you think you have enough ram for all your needs then why not disable swap? I've read that there might be a speed penalty for running without swap but I've been running my system without swap (arch64 4G ram) and I've never had any bad surprises.
    There are a few things that might prompt swap usage (don't quote me on that though, it just seems to me to be the case), if you copy many files from one place to the other the kernel will use all the ram available to try to cache them, if you copy many GB then all the ram will get filled (and maybe other things will get evicted to swap).
    It's not a bug, free ram is there to be used, things that have been used/needed recently get to stay in the ram, other things can go to the swap, if you can cache a file that has been recently used and need to use it again shortly after then it's much faster if it is in the ram instead of having to read it again from the hard disk. The logic behind it is good, it's just that some corner cases may make behave badly.

  • In OSX Activity Monitor, what's the difference between 'free' memory and 'inactive' memory

    In OS X Activity Monitor, what's the difference between 'free' memory and 'inactive' memory. My daughters 2Gb MacBook Pro is very slow, it probably needs more memory but there is almost 1Gb of 'inactive' memory but no 'free' memory when an application is opened.
    Thanks

    Free RAM is the one that has not been used by any application since you started up your Mac, and inactive RAM is the one that was used by an application and it is not in use anymore.
    1 GB of inactive RAM is a lot, and it may be the cause of the slowness. There are a lot of apps that allows you to turn inactive into free RAM. I use FreeMemory, but have a look at the Mac App Store.
    If you are a developer, you can do that with a command you can type into Terminal:
    sudo purge

  • How to get the size of free memory in unix?

    I have one oracle database running in unix, and I want to tune the memory used.
    additional, I want to create another database in this server.
    I don't know how many memory left in it.
    Could you tell which unix commands can be used to find out the size of free memory?
    Thanks

    %vmstat 3
    procs memory page disk faults cpu
    r b w swap free re mf pi po fr de sr s0 -- -- -- in sy cs us sy id
    0 0 0 3025816 994456 4 19 6 0 0 0 0 8 0 0 0 459 253 139 1 1 99
    0 0 0 2864688 777408 0 2 0 0 0 0 0 3 0 0 0 428 134 175 0 1 99
    0 0 0 2864688 777408 0 0 0 0 0 0 0 7 0 0 0 448 112 166 0 0 100
    one interesting observation about vmstat I found out is (mostly on Solaris)
    the first line of information always off chart, so I usually do a few interval to get constant result.
    if you use linux
    just
    cat /proc/meminfo

  • Macbook pro runs slowly even with tons of free memory??

    Hi,
    I've seriously tried to follow everyone's advice on how to keep your Macbook running efficiently, even so I have serious problems with it. For one thing, Microsoft Office programs run more slowly on my Macbook Pro than they would on a PC from 1995. If I open Word or Excel, it takes at least 6 minutes to load, and then functions ok (most of the time) but if I try to save a file, graphics wig out and typing the name of the file, it's like each letter is processed 3 seconds at a time after taking a whole minute to understand what I'm even typing in the first place. I use Google Chrome (no, safari doesn't run any faster) and I sometimes have issues with that. Finder also! It takes so long to click around my folders because my computer responds so slowly. It also sometimes wigs out when I try to jump between desktop screens. And actually even the mouse cursor decides not to respond for a few seconds.
    I have 411 GB (out of 500) of free memory. I don't run multiple apps at once--usually I will run Chrome and Word, and then if I absolutely must, also Excel or Powerpoint, but I really try to use at most 3 at a time, and then I still have these severe problems. Sometimes I only have Word open and I still have these problems. My desktop is not cluttered; I clean it out regularly so I have like 5 files on there, pretty much all screenshots. My downloads folder does not have a billion files in it; it has accumulated some but I do make an effort to clean it regularly so there really isn't much. I don't have tons of music or movies or pictures or anything on my computer, and I also clean out my deleted files in the trash regularly.
    That being said, I'm not an expert on computer maintenance (because I always seem to have these issues), so maybe there are other things I haven't tried that people could recommend? I'm pretty sure that my RAM or CPU (I don't know the difference because I don't know much about computers) are being overexhausted, because sometimes I can actually hear the fan going off because my Mac is trying hard to process stuff (this happened 5 minutes ago when I had nothing but Chrome opened but I restarted and now it's quiet again). But I don't know how to check RAM or CPU usage on my Mac? And since I don't run that many apps anyway I don't know how to resolve this problem.
    Is there anything else I can try? Some other folders I should clean out? If so, can you please explain where to find these folders on OS X Yosemite? Because I used to be a  person, but I bought this Macbook Pro a year ago and I still have trouble navigating. Or if you think I should take this into the apple store and have it looked at, please let me know.
    Thanks in advance. \

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • How to get free memory size of a card with javax.smartcardio

    Hi,
    How can I find how much memory of a card is free with javax.smartcardio?
    Please your advice.
    Thank in advance.

    gizmo wrote:
    I wanted to read the free memory size with a card reader and javax.smartcardio.
    Is it possible to send a APDU Command to select the root 3F00 and read the properties?There is no built-in smartcardio funationality to do this. What you can do is send an APDU and get the memory by calling the code mentioned already.

  • Shared Pool Free Memory

    The query 'select * from v$sgastat' showed that there is a shared pool free memory of 80MB. I read that a high value of free memory is a symptom of fragmentation. If that's also in my case, how can I defragment it? (I'm assuming that this has nothing to do with I/O tablespace fragmentation)

    The only was to really defragment the shared pool is to bounce Oracle.
    You can run a "alter system flush shared pool" command however this only makes contiguous chunks of free space available to be used. Oracle does not actually combine the chunks into one free extent like it does with dictionary managed tablespace free extents. The memory is managed by link lists and once a chunk is attached to a list it pretty much stays that way.
    A large amount of free space could also indicate an over allocated shared pool.
    HTH -- Mark D Powell --

  • Export/Import Free Memory

    Dear all,
    is there a function or transaction or command where I can see which memorys are aktiv ?
    At the moment we are using Free Memory without ID, but so we delete them all.
    I need something that I can see a overview which memory is at the moment aktiv.
    Thanks for a tip.

    Hi,
    I think that  by  link given below  you will deffinately find the solution of your question.
    The Link is:
                     http://help.sap.com/saphelp_nw04/helpdata/en/02/96283e538111d1891b0000e8322f96/frameset.htm
    Thanks And Regards
    Sarita Singh Rathour

  • Replication agent doesn´t free memory after expensive operation

    Our environment is made up of master node and 17 subscriber.
    We have issued a delete action implying 1000000 rows. During the deletion, normal CPU, memory and swap usage was observed. Later, CPU usage has recovered while memory and swap has not. The most memory consumming process was timestenrep with 9Gb.
    Deletion has been correctly replicated to all nodes. However, the replication agent needed to be restarted manually in order to recover memory/swap.
    Why the replication agent did not recover on its own and free memory?
    Definition in sys.odbc.ini
    Datastore=/data/db/xxxx
    PermSize=4000
    tempSize=250
    DurableCommits=0
    TypeMode=1
    LogFileSize=64
    LogBuffSize=65536
    MemoryLock=3
    LockWait=10
    PrivateCommands=1
    Authenticate=0
    DatabaseCharacterSet=WE8ISO8859P15
    ConnectionCharacterSet=WE8ISO8859P15
    CkptFrequency=300
    CkptLogVolume=128
    Connections=90
    TimesTen Version installed (ttVersion command)
    TimesTen Release 7.0.5.0.0 (64 bit Solaris) (ivpnges2tt70:17000) 2008-04-04T01:19:41Z
    Instance admin: root
    Instance home directory: /opt/TimesTen/ivpnges2tt70
    Daemon home directory: /var/TimesTen/ivpnges2tt70
    Regards,
    Matú

    In a replicated environment, executing very large transactions (such as deleting 1M rows in a single transaction) is a very hazardous thing to do and is something you should avoid at all costs. It can cause a number of serious problems. Transactions should be limited to no more than a few thousand operations. If you need to empty a table, use TRUNCATE instead. This will execute far more quickly, generate less log and will not cause problems for replication. If you cannot use TRUNCATE then you should break the DELETE up into multiple smaller transactions. For example if you wish to delete all row where 'startdate' is less than some value and this is likely to result in a large number of deletions then you could repeatedly execute the following sequence:
    DELETE FIRST 1000 FROM sometable WHERE startdate < :someval;
    COMMIT;
    and just keep doing this until the 'rows affected' value is zero.
    The same applies to large inserts and updates.
    The memory usage behaviour of the replication daemon, while perhaps not ideal, is correct and as expected. When you delete 1M rows in a single transaction the replication daemon has to allocate memory (via malloc) for 17x copies (in your case) of the transaction data. That is probably a lot of memory. Once the transaction has been replicated to all 17 subscribers. This memory is moved to an internal 'free' list for re-use but is not returned to the O/S until the replication agent is terminated. Since it such a bad idea to execute these large transactions this behaviour is generally not a problem.
    Chris

  • How can we free memory?

    how can we free memory? what do "alter system flush shared_pool" and "alter system flush buffer_cache" commands do?

    If you want to reduce the size of the SGA, you could reduce initialization parameters that are taken into account to size the SGA: see the the Concepts Guide.
    The statements that you have mentionned do no reduce the size of the SGA allocated at OS level but only flush or empty the related caches.

  • How come free memory will be more than physical memory?

    Hello Guruz,
    Interesting, I installed one zone with 1Gb dedicated memory, But when I type top command I am getting o/p as below.
    Memory: 1024M phys mem, 1972M free mem
    How come free memory will be more than physical memory?
    If that so, how can we get exact memory utilization on non-global zones.
    Thanks in advance.
    Thanks & Regards
    Prakash K
    Off: +91 2022970906

    Hi Prakash,
    Please run the following command on the Global Zone and Non - Global Zone and upload the output.
    # prtconf |grep -i memory
    SK

  • Free memory

    Yosemite,10.10.1,,Air,(11-inch,,Mid,2011),1,6,Hz,Intel,Core,5,,Get,info,for,HIDE D,reports:,available,memory,is,too,small,(and,each,time,different).,System,repor ts,that,startup,disc,is,almost,full,I,deleted,GAB,from,HIDED,,but,free,memory,is ,the,same.,Why?

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside a photo or iTunes library will corrupt the library. Changes to such a library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Ignore any other messages that appear in the Terminal window.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

Maybe you are looking for

  • Why greyed out options in iTunes radio, and other behavior

    iOS 7.1.2 on a 4S. In the past couple of days, when accessing the 'star' menu on the lower left hand side, the "play more like this" and "never play this again" are greyed out. Naturally, I can certainly "add to my wish list", because that will event

  • How can you create a new category list and attach it to a new incident template

    We intend to create helpdesks for various teams e.g. Facilities, IT, HR etc and allow staff to email separate email addresses via the exchange connector.  So incidents get assigned to separate queues categorised via the support group set in the assig

  • Opening multiple pdf's

    When I create multiple pdf's (20-60), it opens that many windows. I need to combine these files plus bookmarks (file name) into one single file. These are created using a batch printer for AutoCAD drawings. My only option seen so far is to create the

  • Why does the Query Result display "X" as a result

    Hello All, I have a query in which there are 6 Characteristics and 1 calculated key figure. But when the query is executed the query result displays as "X" in the column against all the 6 characteristics. Can anybody provide solution as to why the re

  • N80 Firmware on 02 uk

    iam having this software version v3.0617.0.6 installed on my phone how to upgrade it to latest version firmware iam on o2 uk network ..Iam trying to install through my computer but iam enable install it by nokia pc suite.