Seagate keeps launching repeatedly in my Console

I got rid of the Seagate Hard drive a year or so ago.  Thought I had deleted all the files, but for some reason I repeatedly get a lauch message in my console every few seconds.   Example:
9/17/13 1:26:12 AM
com.apple.launchd[1]
(com.seagate.TBDecorator.plist[1756]) posix_spawn("/Library/Application Support/Seagate/TBLoopDriveParams", ...): No such file or directory
Does anyone know how to get this to stop?  I'm taking it that it's a plist file,  but I can't find it,  Is it in the Lauch folder in Library?
Any help would be appreciated.   This is on my iMac

I finally got the plist file deleted. It was in system folder.   Now I see where my main problem is with a kernel panic.  :
9/17/13 12:02:31 PM
kernel
com_Neyrinck_driver_SCLinkUserClient[0x104ff000]::CloseUserClient(): returning kIOReturnNotOpen.
Now if I can just find where this driver is.  Can't seem to locate it.

Similar Messages

  • Repeating Message in Console.  Can you tell me what this means?

    Hello. I am receiving this repeating message in console every 10 seconds and I think it's the result of a application that I once had that I removed many months ago and apparently I'm being pinged or something. How can I get rid of this?
    I had at one time a wireless Nikon digital camera wireless software installed that I've removed but apparently something somewhere in my mac is trying to communicate with Nikon...in Japan! Does this look right? Any help would be greatly appreciated....
    1/22/08 6:49:37 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[291]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:49:37 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[291]) Exited with exit code: 1
    1/22/08 6:49:37 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum) Throttling respawn: Will start in 10 seconds
    1/22/08 6:49:47 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[292]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:49:47 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[292]) Exited with exit code: 1
    1/22/08 6:49:47 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum) Throttling respawn: Will start in 10 seconds
    1/22/08 6:49:57 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[294]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:49:57 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[294]) Exited with exit code: 1
    1/22/08 6:49:57 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum) Throttling respawn: Will start in 10 seconds
    1/22/08 6:50:07 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[296]) posix_spawnp("/Applications/Nikon Software/Wireless Camera Setup Utility/NikonPtpEnum", ...): No such file or directory
    1/22/08 6:50:07 PM com.apple.launchd[1] (jp.co.nikon.NikonPtpEnum[296]) Exited with exit code: 1

    There is still a piece of the software that is trying to startup, but cannot. launchd is the daemon in charge of starting things and trying to make sure they keep running. It is not trying to contact Japan--certain files are named in reverse domain name format.
    Try looking in a StartupItems folder or the LaunchDaemons folder in you user Library or the main Library folders.

  • HT5457 I tried to update my iPhone 3gs over phone service and now it shows the apple logo like I just turned it on. Then the screen goes black. And it just keeps on repeating. So what do I do?

    The Apple logo just flashes on and off and that keeps on repeating what do I do?

    Plug it into a computer running iTunes and restore it.    

  • Why does iTunes keep launching?

    All of a sudden, out of the blue, iTunes keeps launching when an alarm goes off in the application Alarm Clock Pro (ACP).  My wife is a teacher and ever since August 2011 I created alarms to notify her five minutes before the end of her classes.  She doesn't know how to change anything in ACP and she doesn't use iTunes.  Nothing has been changed but last week every time an alarm goes off iTunes launches.
    I've gone through and checked the preferences in both programs and nothing points to this issue.  I know, ACP has an option to launch and play something in iTunes but this is NOT selected.
    Any help or suggestions?
    Thanks!
    Merry CHRISTmas,
    Nathan

    I thought at one time you there was a setting to prevent iTunes opening when a device was plugged in, I don't believe that the sync option will prevent that.
    In your login items, System Preferences/Users and Groups do you have an item "iTunes Helper" I think this is the application monitoring the devices you plugin.
    You could try closing that application in Activity Monitor and plugging your devices in and checking if it stop iTunes opening, also check if it stops it opening through the day. If it does just remove it from your login items after confirming it does not impact on other iTunes uses.

  • How do I get the Interval to keep from repeating after it's used once?

    How do I get the Interval to keep from repeating after it's used once? Because I tried clearInterval but I couldn't get it working.
    When my code looks like this, with ClearInterval, it refuses to execute my action, which is to change scenes after a short interval:
    (Pardon if there is some formating errors, I had to reformat it for the Internet)
    Code with clearInterval command
    stop(); 
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);   
       var myInterval:uint = setInterval(fl_ClickToGoToNextScene_14,3000);   
       clearInterval(myInterval);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    However, when my code looks like this it refuses to stop looping:
    Code without ClearInterval command
    stop();
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
       function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);
       setInterval(fl_ClickToGoToNextScene_14,3000);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    Any ideas? Also, feel free to dumb your answer down, because I am completely new to Flash, Actionscript and coding.

    If you insist on using setInterval - you need to declare interval id in a higher scope so that you can clear it later:
    stop();
    var myInterval:uint;
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              gotoAndPlay(29);
              myInterval = setInterval(fl_ClickToGoToNextScene_14, 3000);
    function fl_ClickToGoToScene_14():void
              clearInterval(myInterval);
              MovieClip(this.root).gotoAndPlay(1, "Testside");
    I suggest you use Timer instead:
    stop();
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    var timer:Timer = new Timer(3000, 1);
    timer.addEventListener(TimerEvent.TIMER, fl_ClickToGoToScene_14);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              timer.start();
              gotoAndPlay(29);
    function fl_ClickToGoToScene_14(event:TimerEvent):void
              timer.stop();
              MovieClip(this.root).gotoAndPlay(1, "Testside");

  • Apps keep launching on their own

    My daughter stepped on my Ipod Touch and now two things are very wrong;
    1) the on-off button at the top is sunken in and I cannot press it to turn it off.
    2) the ipod keeps launching the apps on its own and then "pressing" different buttons on its own (it's hard to describe) - but it's as though it "thinks" someone is touching it.  It mainly only happens on the top right hand corner - close to where the on-off button is - maybe it's related to the first issue above? 
    HELP PLEASE!
    I am unable to use it because it keeps doing stuff on its own - I can't even turn it off so I have to just let the battery drain.

    You can try restoring the iPod to factory defults/new iPod to see if that corrects the problem.  However, I suspect you have a hardware problem caused by the stepping on.

  • IPhoto 08 keeps launching itself on computer boot

    Suddenly after my last import my iPhoto 08 (7.1.3) keeps launching itself when ever I restart my computer. It's very annoying as it takes a long time to load.
    It seems to think my LaCie external firewire drive is a camera which maybe why it keeps launching on restart. Any ideas on how to convince it otherwise?
    I'm a little concerned since my iPhoto library is stored on my Lacie drive. It seems to want to import images from it but only the last import I did when the issue began. My other photos all seem to be there so far.
    I'm not certain what to do. I've not encountered anything like this before on a Mac.

    Also look in the System Preferences/Accounts/Login Items pane for you account and make sure iPhoto hasn't been added to the applications that are launched when the computer is booted into that account. It may have been added accidently somehow.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • IPhoto keeps launching my printer as a camera at start-up in Lion. How do I stop this?

    iPhoto keeps launching my printer as a camera at start-up in Lion. How do I stop this?

    Do you have a memory card in a card reader on the printer? If so remove it.
    One in the iPhoto preferences set the action when a camera is connected to o nothing
    LN

  • When I download a theme or other extension file to my desktop and try installing it, it tells me this: The jar file "foxscape-3.04-fx.jar" couldn't be launched. Check the Console for possible error messages. What's the issue?

    Regardeless of the file name, I get the same message:
    The jar file "NAME OF FILE-fx.jar" couldn't be launched. Check the Console for possible error messages

    Although possibly not related to your problem, I have to remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. On top of this, it has known unpatched bugs and security problems. I urge you to update to the latest version of Firefox, for maximum security, stability, performance and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].

  • Mail keeps launching since I installed Mountain Lion

    I do not use Apple Mail. Since I upgraded to Mountain Lion it keeps launching and demanding my attention. How can I stop this?

    I've been a Mac user since 1984 and this is one of the more frustrating times I've had with Macs.
    I'm having the same problem. You can't delete the Mail app so the best I've been able to do is go in and edit settings to remove all email accounts that Mail thinks I have. That didn't stop it, however. It just reduced the amount of alerts I kept getting. Turning off notifications for Mail doesn't help, either. It just keeps launching several times a day. I use Gmail and don't need Mail.

  • New Mac - ITunes keeps launching

    I have just taken delivery of a new MacPro and for some reason some something is launching iTunes.
    I am not launching it manually and it is not happening at start-up but after a short session of browsing with Safari (no multi-media involved) I am being asked to agree to the iTunes agreement. Of course I do not want to. iTunes is not much use to myself. I click on Decline only for the box to return! The only way to break the cycle is to force quit iTunes.
    1. Is there something in OS X that is dependent on iTunes?
    2. Is there a way to stop this iTunes agreement window, especially if I decline to agree.
    Thanks.
    Latets Information.
    System Preferences seems to have locked itself open. I was examining the keyboard setup. Could this launch iTunes? The current situation is that even Force Quit does not work! The list of running apps does not appear! I do not want to agree to iTunes. I cannot Decline. I cannot Force Quit!
    Suggestions appreciated!
    Message was edited by: Folbo

    Replying my own Question ... .it is the f8 key. The b*y thing keeps launching iTunes and I cannot seem to stop it!
    this seems like a bug to me. If there is no media app loaded then why would I want that key to load one? Where is the Spaces key ... that is what is useful not more media frippery.
    How can I disable the MM functions of these keys?
    System Preferences does not seem to be working correctly. It is still talking about other keyboards where the dashboard is on F12 etc. This bears no relationship to my hardware. neither, as far as I can see is there any mention of iTunes, nor mention of shortcuts in the iTunes preferences.
    Suggestions welcome!
    Message was edited by: Folbo

  • Preview keeps launching connection to host!

    Since I've made contact with teh host server, whenever I now
    want to test a design in the preview in browser facility, it keeps
    launching the connection to the host... why is this?

    > why is this?
    Probably because you have improperly defined a testing server
    the same as
    the remote site.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Deansplit" <[email protected]> wrote in
    message
    news:ehd483$e3a$[email protected]..
    > Since I've made contact with teh host server, whenever I
    now want to test
    > a design in the preview in browser facility, it keeps
    launching the
    > connection to the host... why is this?

  • Starting EAS is very slow -Web Launcher for Administration Services Console

    Hi all,
    When a user has not been connected to EAS for more or less amount of time
    starting the EAS via (Web Launcher for Administration Services Console) takes a very long time.
    When ESA is started also opening the “Essbase Server” node and then also opening the “Application” node takes a long time.
    This a very annoying.
    Is there any chance to accelerate this?
    Any hint is welcome.
    Thank you in advance!
    Andre

    Hi,
    Oh sorry, I forgot to mention: Version 11.1.2.1 in a distributed environment Win2008R3 64bit.
    From one of the servers I also used EAS with the same outcome - well seems the Service behind is the same one.
    And as I wrote this is not always case. for example just this morning it was fast as I expected it to be.
    However there must be a reason for the occasional slowliness and customers usually has less understanding for suche an up and down of performance.
    Any idea?
    Thank you in advance!
    Andre

  • Since downloading OS 6 for my iPad, my calendar keeps issuing repeated alerts - even though I didn't even initiate one.  Is there a way to stop this from happening?  Thanks for your input !

    Since downloading OS6 for my iPad, the calendar keeps issuing repeated &amp; different alerts for events even when I initiated none.
    Any suggestions as how to stop this will be most appreciated.
    Thank you in advance !

    This is the same issue that has plagued me for years. I always thought that this was a Flash plugin issue, but it does occur on HTML5 as well. A friend of mine verified that this does not occur in Linux, but only on Windows. It would be great to have this fixed, as it's honestly the only thing that's making me use Chrome all the time, as I don't want to have multiple browsers open.

  • I keep getting repeated downloads of the same email messages

    I keep getting repeated download of the same emails sometimes within seconds of each other. I have to switch off my email to stop it. Has anyone a solution? It only happens on my Apple devices and not on my PC.

    "I have contacted the email servers and because it is only happening on Apple devices they said it was a problem with apple."
    They would say that, wouldn't they.   How do they know yours isn't the first of many?  Are you with Yahoo; they tend to have these problems.
    Here is a link discussing the matter; let us know what happens.
    Email troubleshooting - duplicate emails

Maybe you are looking for

  • While creating PO for Low value assets error

    Hi Seniors, When user creating PO for low value assets ,system throwing error as u201CMaximum Low value amount exceeded in the case of at least one asset .u201D Details about this issue: 1.User creating ONE  PO  for 8 assets as 8 line items, each lin

  • I'm dissapointed in the lack of Music Videos available?

    Now I have my 80Gb video ipod since Christmas and I want to build a nice collection of music videos. However, the selection on iTunes is poor and not all music videos are accessible from the main music videos page. Many seem hidden. Apple needs to ma

  • Matrix add and delete

    Hi i am developing a indent form in that i placed a matrix. can u plz get me some hints of adding rows and deleting rows.. now i am placing buttons and writing code to do these tasks..

  • Outbound character sets

    Hi Our outbound external messages go out via a GW704 GWIA. The GWIA thenpasses them onto our email security gateway. The issue that I'm having is that I've enabled a 'disclaimer' on our email security gateway that is stamped on all outbound messages.

  • Why does firefox not start? I have to go to the task manager and stop the process before I can use it

    Sometimes firefox won't start unless I go into the taskmanager and remove it. then it will start. But if I go out of F/F and want to re-start it. usually it re-starts but if I want to open E-mail in Msn, It won't happen.