Looking for a cache-clearing Terminal command

Hi,
I'm trying to clean up my MacBook a bit, since last month was its third birthday. One thing I'd like to do is clear out any superfluous font, user, and system caches. I've read that the command "atsutil databases -remove" will do this in Leopard, but I am still running Tiger (I'm scared that my Logic and graphics apps will take a performance hit). Does anyone know a similar command for Tiger? If not, is it safe to manually remove cache files from the Finder to the Trash?
Also, as a note, I'd rather not install any programs such as Cocktail.
Thanks!

[http://discussions.apple.com/message.jspa?messageID=7353715#7353715]
Also:
[Mac OS X: Starting up in Safe Mode|http://docs.info.apple.com/article.html?artnum=107393]
[What is Safe Boot, Safe Mode? (Mac OS X)|http://docs.info.apple.com/article.html?artnum=107392]
[Safe Boot takes longer than normal startup|http://docs.info.apple.com/article.html?artnum=107394]
[Mac OS X 10.4, 10.5- Computer shuts down during Safe Boot|http://support.apple.com/kb/TA24054]

Similar Messages

  • How to clear terminal command history?

    Is it possible to clear the previous commands in terminal (up arrow key cycles through every entered line)?

    Hi, blankets.
    You wrote: "Is it possible to clear the previous commands in terminal (up arrow key cycles through every entered line)?"Yes. At the terminal prompt, type
    history -c
    and press Return.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • SCCM 2007 R2 Query - Look for Win2k8 servers where Terminal Services is installed.

    Hi there.
    I have been looking all over the net. That's how it feels ;-D. I'm trying to a find out how to create a query that I can use in a SCCM Collection. This query should result in only Windows 2008 Servers where Terminal Services have been installed.
    So far I have tried at least ten different ways of doing this. With no prevail. So I hope you guys can assist me.
    1) Create a collection.
    2) Create a query.
    a. The query should only find Windows 2008 Server where Terminal Services is installed.
    3) Then I can distribute only to these servers.
    Thank you. Your help is highly appreciated.
    Regards.
    /Lars
    Red Baron

    Hmm... Well, keeping in mind that from my point of view, there is no reason to not install the client on every box in the enterprise.  What's the reason to not install the client?  If there's a political reason, like those boxes belong to some other team who doesn't want you touching their servers, why are you responsible for ensuring Terminal Services is installed?  Make *them* come up with an alternate method to confirm that.
    Just deploy the client and move on.
    I cannot think of a single way to determine if Terminal Services is installed without either the ConfigMgr Client installed, or a different administrative tool tell you that.  Whether that other Admin tool is a remote script you design & run, or if you have some other tool available (would SCOM be able to be configured to report that?  Maybe.), I have no suggestions for you other than logging into each server interactively and looking manually.
    Which brings me full circle back to: just install the ConfigMgr client.
    Slightly OT: once they have the client installed, you could then create a DCM Baseline so that you could run a report and see which ones might have 'drifted' from the approved configuration.Standardize. Simplify. Automate.

  • I have a visual C    runtime error stopping my pse elements 10 running in win 8.1. I am not a techie so am looking for a very clear way to resolve teh issue without needing too much technical ability. Can anyone help?

    I had been using my elements 10 for much of the day so do not know what I have done to upset it! I was starting up again and it began to load then offered me this line of script re a 'runtime error'. That means nothing to me except that it no longer works. I have had a peek on Google and see various suggested fixes from sources I don't know whether to trust. Also some fixes give a list of do's that to a non techie like me are not followable. Can anyone offer me some understandable guidance so I can get back to playing with my photos?

    You'll need to ask in the Photoshop Elements forum whose members can better answer this.
    Photoshop Elements
    Also keep a brief summary in the subject line and use the main posting window to describe your issue in detail.
    Subject: Visual C runtime error    as an example.

  • Looking for a clear case that protects screen and click wheel

    Hi,
    I've got a new 8GB Nano. I'm looking for a case to protect it from general dings and scratches. What I'm looking for is a clear case with screen and click wheel protection. Anyone know where I can find one? So far, all I've been able to find are clear cases that protect the screen but leave the click wheel unprotected. Or is click wheel protection not that that big of a thing?
    Thanks!

    There don't seem to be many cases available yet for the new Nano. I ordered one from iSkins, a company in Canada. You can check their website.

  • Looking for an old mxp.....

    Hi all,
    I'm looking for an old mxp or command that I used some while
    back -
    maybe even before mxp's - I'm hoping that it will for me in
    FW8.
    It was an animation tool which took an object and based on
    your input
    faded the object and then brought it back to full opacity. If
    I remember
    correctly you defined the speed and opacity levels in the ui
    and the
    tool then created the animation, frames etc.
    Does anyone remember this and if so where I can get it.
    btw - I'm thinking J Lowrey may have been the creator - but
    that is a
    guess :-)
    chin chin
    Sinclair

    I would send an email to Joseph at Webassist. Even if he
    didn't develop
    it, he might know where to find it.
    alex
    djinn wrote:
    > Hi all,
    >
    > I'm looking for an old mxp or command that I used some
    while back -
    > maybe even before mxp's - I'm hoping that it will for me
    in FW8.
    >
    > It was an animation tool which took an object and based
    on your input
    > faded the object and then brought it back to full
    opacity. If I remember
    > correctly you defined the speed and opacity levels in
    the ui and the
    > tool then created the animation, frames etc.
    >
    > Does anyone remember this and if so where I can get it.
    >
    > btw - I'm thinking J Lowrey may have been the creator -
    but that is a
    > guess :-)
    >

  • Applescript to run terminal command then open application..

    Hey,
    I've installed the add-on to make the Lion Finder sidebar icons colored again, but whenever I reboot my Mac, I have to execute a killall Finder to get those icons back. This also closes TotalFinder, which is an addon I use. So, I want to write an AppleScript which will run on startup, and do those two things: run the Terminal command, and then open TotalFinder.
    I've written:
    tell application "Terminal"
        activate
        do script "killall Finder" in front window
        quit
    end tell
    tell application "TotalFinder"
        activate
    end tell
    This gives me an error stating "Connection is invalid." when running the activate line for TotalFinder. The Terminal command is executed correctly. Any idea why this is? The application is definitely named correctly, its just in my root Applications directory so it should be able to find it, etc. How can I get this working?
    Thanks!

    try this:
    do shell script "killall Finder"
    tell application "TotalFinder"
              try
      activate
              end try
    end tell
    First thing you don't need to open a terminal window to do the killall you can just do to as a shell script.
    Second don't know why TotalFinder gives that message about Connection invalid but it doesn;t seem to affect it any. So putting in the try just eats the error message.
    Ypu may not even need the killall, When TotalFinder starts it restarts the Finder so you may be able to remove the killall
    regards

  • Can anyone suggest me a handbook of mac terminal commands

    Guyz I am new user of mac and I like to use the terminal. Can anyone kindly suggest me any handbook or codebook for learning basic mac terminal commands?

    Spend some time in a book store that has a section of Unix/Linux oriented computer books.  Find a book that discusses the Bash Shell (Bourne Again Shell; in tribute to Bourne, who wrote one of the first shell's to be popular on Unix).  Bash is the default shell for Mac OS X.  Such a book will give you the basics of using the shell.  Most of the commands they will teach you about will work on Mac OS X, although you may run into a few commands that have slightly different options, the basics are still going to be the same.
    Or a book on shell programming.
    Anyway, browse the books and if you find one that "Speaks to You", then buy it.
    There are also some "Mac OS X for Unix Geeks" books available that might give some Mac OS X specific Unix usage, but they also may assume a lot of existing command line knowledge.
    The key think to keep in mind, is that 85% to 90% of the Mac OS X command line interface is just like every other Unix/Linux command line interface.  Of course that last 10 - 15% can trip you up, and relates to specific commands and command options that may vary between Unix/Linux implementations.  That being said, a lot of knowledge about another Unix/Linux platform is transferable to the Mac OS X command line.

  • I am having a hard time with a page that is working for everyone else. When I click on anything in the site I get a message that says "The page you were looking for doesn't exist."  This is happening on both my ipad 2 and my iphone 5. I cleared my cache

    When I click on anything in the site I get the message " The page you were looking for doesn't exist."  This website works for everyone else, but not on my iPad 2 or iPhone 5. I cleared my cache and history on the iPad, but it still isn't working.

    I live in Germany and my credit card is in my native country of Holland .. then it
    doesn't accept my credit card.
    Your first statement explains the second statement. To use the German iTunes Store, you need to prove that you're a resident of Germany (that is required by the content owners who will not allow cross-border sales) and the only way Apple can provide such a verification is by requiring that you enter in either a German credit card or a German-purchased iTunes prepaid card. Since I presume the former is not a possibility, you'll need to do the latter if you wish to purchase content from the iTunes Store. Again, this is not Apple's choice but is forced on them by the content owners as a requirement for Apple being allowed to sell the content. The EU is working on regulations that would force the content owners to allow access pan-EU, but that's still in the works.
    You do not need an iTunes Store account to activate and run your iPad, though; at least, I didn't need one for either of my two iPads. If you only want to set up an account so you can get free iPad apps, take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is apparently critical. This seems to come and go, or only apply to App Stores in specific countries, so you may not see the option for "None" when asked for a payment type.
    As to the German iTunes Store in English, you can comment to Apple on that via their feedback pages:
    http://www.apple.com/feedback
    Regards.
    P.S. Regarding "this is the only place for a complaint and that will no doubt get removed because
    I'm not full of happy joy sparkles.
    As stated in the terms of use to which we all agreed, this isn't a complaint forum, it's a technical support forum. You don't have to be full of "happy joy sparkles", but posts that are nothing but complaints may indeed be removed. If you want to complain to Apple, use the feedback pages.
    Message was edited by: Dave Sawyer

  • [SOLVED] Looking for a terminal command or key binding to exit Openbox

    I've searched the forums and googled, but I haven't been able to find the answer.  I'm sure I've missed it somewhere...
    I start my openbox session with 'startx' from the command line. I would like a terminal command or a key-binding to be able to exit openbox and return to the command line. I just don't like using the menu with my notebooks touchpad.  I just can't seem to figure out what command is used. The menu.xml file lists the command as "Exit", but typing that in a terminal just exits the terminal.
    Any help appreciated.
    Last edited by badfrog88 (2010-09-05 19:08:43)

    gorky wrote:ctrl-alt-backspace won't do the job?
    IIRC, it's disabled by default in xorg-server 1.7 and newer.
    @ badfrog88
    Ctrl + C will kill (almost) any running app you point it to.
    Last edited by karol (2010-09-05 19:17:29)

  • Looking for Users but Terminal says No such file or directory

    Hi I'm trying to delete something out of my DVD Studio Pro cache but when I look for the Library it has gone. I've tried calling it up in Terminal with 'chflags nohidden ~/Library' and it comes back with No such file or directory. Has anyone lost their library completely?
    Thanks,
    Des

    Are you entering that command with the quotes? If so remove them. Also, use Go to folder (Cmd-shift-g) and enter just ~/Library. I bet everything is still there.

  • Looking for some advice on CEP HA and Coherence cache

    We are looking for some advice or recommendation on CEP architecture.
    We need to build a CEP application that conforms to the following:
    • HA with no loss of events or duplicate events when failing over to the backup server.
    • We have some aggregative rules that needs to see all events.
    • Events are XMLs with size of 3KB-50KB. Not all elements are needed for the rules but they are there for other systems that come after the CEP (the customer services).
    • The XML elements that the CEP needs are in varying depth in the XML.
    Running the EPN on a single thread is not fast enough for the required throughput mainly because network latency to the JMS and the heavy task of parsing of the XML. Because of that we are looking for a solution that will read the messages from the JMS in parallel (multi thread) but will keep the same order of events between the Primary and Secondary CEPs.
    One idea that came to our minds is to use Coherence cache in the following way:
    • On the CEP inbound use a distributed queue and not topic (at the CEP outbound it is still topic).
    • On the CEPs side use a Coherence cache that runs on the CEPs JVMs (since we already have a Coherence cluster for HA).
    • Both CEPs read from the queue using multi threading (10 reading threads – total of 20 threads) and putting it to the Coherence cache.
    • The Coherence cache is publishing the events to both CEPs on a single thread.
    The EPN looks something like this:
    JMS adapter (multi threaded) -> replicated cache on both CEPs -> event bean -> HA adapter -> channel -> processor -> ….
    Does this sounds sound to you?
    Are we over shooting here? Is there a simpler solution for our needs?
    Is there a best practice for such requirements?
    Thanks

    Hi,
    Just to make it clear:
    We do not parse the XML on the event bean after the Coherence. We do it on the JMS adapter on multiple threads in order to utilize all the server resources (CPUs) and then we put it in the replicated cache.
    The requirements from our application are:
    - There is an aggregative query that needs to "see" all events (this means that we need to pass all events thru a single processor and we cannot partition them to several processors).
    - Because this is a HA solution the events on both CEPs (primary and secondary) needs to be at the same order when reaching the HA inbound adapter and the processor.
    - A single thread JMS adapter is not reading the messages from the JMS fast enough mainly because it takes time to parse the XML to an event.
    - Using a multi-threaded adapter or many single threaded adapters with message selector will create a situation that the order of events on both CEPs will not be the same at the processor inbound.
    This is why we needed a mediator so we can read in multiple threads that will parse the XMLs in parallel without concerning on order of messages and on the other hand publish all the messages on a single thread to the processors on both CEPs from this shared mediator (we use a replicated cache that runs on both JVMs).
    We use queue instead of topic because if we read the messages from a topic on both CEPs it will be stored twice on the Coherence replicated cache. But if we use a queue, when server 1 read the message and put it in the Coherence replicated cache then server 2 will not read it because it was removed from the queue.
    If I understand correctly you are suggesting replacing the JMS adapter with an event bean that will read the messages from the JMS directly?
    Are you also suggesting that we will not use a replicated cache but instead a stand alone cache on each server? In this case how do we keep the same order of events on both CEPs (on both caches)?

  • [Guide] Useful terminal commands for troubleshooting/system status.

    Hi everyone.  I'm looking for a concise list of useful commands to run incase something should happen to be going wrong somewhere (and also a 1-line for what they do)...the kind of output you'd post in a bug report.  Some other good commands would help make "whats going on under the hood" more clear.
    Also, if you have some useful directories (like /var/log), I'll take them too.
    Current List (Thanks to all the posts below):
    iwconfig, ifconfig | currently running wireless and overall link/state status.
    dmesg | down/n/dirty low level system activity log
    htop (non-built-in) | Process monitor
    iftop, nethogs (non-built-in) | Bandwidth usage monitor
    lsmod | Currently loaded modules
    pstree | Currently running processes in a tree-text format
    df -h | Hard drive space usage
    ps -A -ao rss,comm | sort -rn | sed -n '1,5{s/^/\t/;s/ /\t/p}' | Top 5 ram hogs and how much
    xsel -o -p |  Clipboard monitoring (non-built-in)
    xsel -o -b |
    /var/log - looking for a log from a system process...probably here.
    ~/.XXXX - User installed programs house their config files here... ~/ = Your username's home directory.  Equivalent to Application Data on Windows.
    Last edited by dr/owned (2009-03-21 15:57:21)

    ltrace -- strace-like, but shows library calls, not only system ones.
    vmstat -- shows many essential system parameters at a glance, first tool to start investigating bottlenecks
    lsof -- "list open files"; as network sockets, pipes, ... are all "files", there are many interesting informations to gather. But I use it for two purposes mainly: to identify file descriptors in strace/ltrace output and for finding deleted, but still open files eating disk space.
    I like atop also, for its ability to show aggregated data, grouped by user or process name.

  • Terminal Command for "Folders On Top" in Mountain Lion

    Looking for a terminal Command that will place all "Folders On Top", even in sub-folders. The utility I was using on Lion does'nt work on ML anymore.

    Looks like to me there has been a recent update to TotalFinder.  Claims to support 10.8, now. See
    http://www.macupdate.com/app/mac/33373/totalfinder
    I misunderstood your questions.  I thought you wanted to display the files in the Terminal.  You want to change the way the finder displays files.
    Robert

  • Setup event table cache clear for - Essbase cube table

    we have event polling table for clearing the cache now having issues in setting up for essbase physical cube tables.
    1. we have structure of hyperion like this for physical cube table "CONSOL"- where schema is empty.
    "Hyperion"."CONSOLX".."CONSOL"
    2. Event polling table is in different database/connection
    When the event table is populated without schema, polling actually looking for the table in the database configured for the event pool connection pool and not "hyperion".
    *[55001] The physical table Hyperion:CONSOLX:Event Polling:CONSOL in a cache polled row does not exist.*
    When i read in some blogs...I understood its working as expected(when something is null it looks in event polling database)
    Has anybody configured event polling for hyperion cubes table cache clear ?
    Thanks
    Ayaps

    what is your insert statement in UET table?
    Looks like you are missing one value out of 4 required. Thats why it is considering Event Pooling in between. As you have event pooling table in different physical database, you have to fill DbName,CatalogName,SchemaName and TableName in the UET tables.

Maybe you are looking for

  • Is there a way to password protect a document in the app Pages

    Is there a way to password protect a document in the app Pages?

  • How to add new field to Screen Modifications

    Hi, I want to get P0002-CNAME in screen modifications of Infotype 02. At present i have other 23 fields for which i can set display attributes. This new field is to be added in infotype 02 and also some coding is to be put for this. How this can be a

  • IMac vs Powermac for FCP

    I am debating between an iMac and PowerMac for FCP editing. I am primarily a shooter but would like to offer editing to clients as well. Don't anticipate anything to graphics or effects intensive. For fairly simple editing does the PowerMac have a hu

  • Routing exist error in Material Deletion

    HI, At the time of archiving ,system shows the  following error message s.          1. MARC : xxxxxx - routing exists          2. MARC :xxxxxxx- Use in routing -inspection plan we have checked and found that  routing and inspection plan taask list fo

  • Unable to genereate AWR report

    HI Experts, I was unable to generate AWR report on my database.. While generating i am getting below error.. Enter value for report_name: awr_sggebpu1_1 Using the report name awr_sggebpu1_1 select output from table(dbms_workload_repository.awr_report