How to remove constantly launching services on Mac OS X
Even after you uninstall it, some Mac OS X software just won’t quit nagging you or notifying you of updates or at the very least polluting the Console Messages like this:
Code
19/08/11 00:16:46 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14428]) posix_spawn("/Library/Application Support/Carbonite/CarboniteStatus.app/Contents/MacOS/CarboniteStatus", ...): No such file or directory |
|
19/08/11 00:16:46 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14428]) Exited with exit code: 1 |
|
19/08/11 00:16:46 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus) Throttling respawn: Will start in 10 seconds |
|
19/08/11 00:16:56 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14437]) posix_spawn("/Library/Application Support/Carbonite/CarboniteStatus.app/Contents/MacOS/CarboniteStatus", ...): No such file or directory |
|
19/08/11 00:16:56 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14437]) Exited with exit code: 1 |
|
19/08/11 00:16:56 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus) Throttling respawn: Will start in 10 seconds |
Well here’s how you kill those constantly launching things!
Open a Terminal window and enter launchctl list to see a list of all launching services. Once you know what you want to kill, uselaunchctl remove.
Here is an example on that pesky Carbonite:
Code
macpro$ launchctl list | grep carbonite |
|
- 1 com.carbonite.carbonitestatus |
|
- 0 com.carbonite.carbonitealerts |
|
macpro$ launchctl remove com.carbonite.carbonitestatus |
|
macpro$ launchctl remove com.carbonite.carbonitealerts |
Here is another on Intego backup:
Code
macpro$ launchctl list | grep intego |
|
- 0 com.intego.backupmanagerpro.agent |
|
macpro$ launchctl remove com.intego.backupmanagerpro.agent |
Even after you uninstall it, some Mac OS X software just won’t quit nagging you or notifying you of updates or at the very least polluting the Console Messages like this:
Code
19/08/11 00:16:46 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14428]) posix_spawn("/Library/Application Support/Carbonite/CarboniteStatus.app/Contents/MacOS/CarboniteStatus", ...): No such file or directory |
|
19/08/11 00:16:46 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14428]) Exited with exit code: 1 |
|
19/08/11 00:16:46 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus) Throttling respawn: Will start in 10 seconds |
|
19/08/11 00:16:56 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14437]) posix_spawn("/Library/Application Support/Carbonite/CarboniteStatus.app/Contents/MacOS/CarboniteStatus", ...): No such file or directory |
|
19/08/11 00:16:56 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus[14437]) Exited with exit code: 1 |
|
19/08/11 00:16:56 com.apple.launchd.peruser.501[689] (com.carbonite.carbonitestatus) Throttling respawn: Will start in 10 seconds |
Well here’s how you kill those constantly launching things!
Open a Terminal window and enter launchctl list to see a list of all launching services. Once you know what you want to kill, uselaunchctl remove.
Here is an example on that pesky Carbonite:
Code
macpro$ launchctl list | grep carbonite |
|
- 1 com.carbonite.carbonitestatus |
|
- 0 com.carbonite.carbonitealerts |
|
macpro$ launchctl remove com.carbonite.carbonitestatus |
|
macpro$ launchctl remove com.carbonite.carbonitealerts |
Here is another on Intego backup:
Code
macpro$ launchctl list | grep intego |
|
- 0 com.intego.backupmanagerpro.agent |
|
macpro$ launchctl remove com.intego.backupmanagerpro.agent |
How to remove constantly launching services on Mac OS X的更多相关文章
- Enable rsh on MAC OS with command line
1. Enable rsh on macos. 1). os version (10.0) Enabling the "Allow remote login" option tur ...
- Mysql On Mac OS: Remove & Install
If you downloaded and installed from .dmg package already, and mightbe sometime it sucks because of ...
- mac os去除去除.DS_Store文件--使用python和go(原创)
.DS_Store (英文全称 Desktop Services Store)是一种由苹果公司的Mac OS X操作系统所创造的隐藏文件,目的在于存贮文件夹的自定义属性,例如文件们的图标位置或者是背景 ...
- 金玉良缘易配而木石前盟难得|M1 Mac os(Apple Silicon)天生一对Python3开发环境搭建(集成深度学习框架Tensorflow/Pytorch)
原文转载自「刘悦的技术博客」https://v3u.cn/a_id_189 笔者投入M1的怀抱已经有一段时间了,俗话说得好,但闻新人笑,不见旧人哭,Intel mac早已被束之高阁,而M1 mac已经 ...
- Mac OS使用brew安装Nginx、MySQL、PHP-FPM的LAMP开发环境
准备工作 新版的 Mac OS 内置了Apache 和 PHP,我的系统版本是OS X 10.9.3,可以通过以下命令查看Apache和PHP的版本号: httpd -v Server version ...
- 如何在Mac OS X上安装 Ruby运行环境
对于新入门的开发者,如何安装 Ruby和Ruby Gems 的运行环境可能会是个问题,本页主要介绍如何用一条靠谱的路子快速安装 Ruby 开发环境.此安装方法同样适用于产品环境! 系统需求 首先确定操 ...
- 如何禁止 Mac OS X 在外接设备上生成 .DS_Store 文件?以及如何批量删除 .DS_Store 文件?
如何禁止 Mac OS X 在外接设备上生成 .DS_Store 文件?以及如何批量删除 .DS_Store 文件?原文链接:http://www.java2class.net/bbs/viewthr ...
- Mac OS 环境下 安装 Asp.Net及使用Yeoman 创建Asp.Net 项目
本文是按照英文原文:Installing ASP.NET 5 On Mac OS安装时遇到的问题的总结Blog. 原文提示如下: Installing ASP.NET 5 On Mac OS XBy ...
- Install Docker on Mac OS X(转)
Install Docker on Mac OS X You can install Docker using Boot2Docker to run docker commands at your c ...
随机推荐
- Head First Python之3文件与异常
文件基本操作 Python从文本读取数据时,一次会到达一个数据行. sketch.txt文件 Man: Is this the right room for an argument? Other Ma ...
- Logstash 算术运算操作
需求:input为json,output为ES,需使用filter提取json中的某个字段,并执行加法.加法.乘法等算法操作 思路:mutate过滤器+ruby过滤器实现 避坑:根据ES及Logsta ...
- 走进AOP In .NET
AOP是什么,有的译为面向方面编程,有的译为面向切面编程,我更加赞同后者.接下来,让我们一步步揭开AOP的面纱. AOP衍生自 编程中出现了一些用OOP技术无法捕捉和解决的问题.跟其他开发工具和思想一 ...
- day 21 01 序列化模块和模块的导入的复习以及包的初识
day 21 01 序列化和模块的导入的复习以及包的初识 1.序列化模块 什么是序列化模块:数据类型转化成字符串的过程就是序列卷 为什么要使用序列化模块:为了方便存储和网络传输 三种序列化模块: (1 ...
- IOC简洁说明
what is ioc: 控制注入,是一种设计模式 the benefits of using this: 降低耦合度 什么是DI 什么是依赖? 当一个类需要另一个类协作来完成工作的时候就产生了依赖 ...
- 网易严选的wkwebview测试之路
本文来自网易云社区 作者:孙娇 UIWebView是苹果继承于UIView封装的一个加载web内容的类,它可以加载任何远端的web数据展示在你的页面上,你可以像浏览器一样前进后退刷新等操作.不过苹果在 ...
- 【QTP专题】05_参数化之Excel
QTP使用外部Excel实现参数化主要有以下两种方式 导入到DataTable中 Syntax:DataTable.ImportSheet(FileName, SheetSource, SheetDe ...
- 201621123023《Java程序设计》第6周学习总结
一.本周学习总结 1.1 面向对象学习暂告一段落,请使用思维导图,以封装.继承.多态为核心概念画一张思维导图或相关笔记,对面向对象思想进行一个总结. 二.书面作业 1. clone方法 1.1 在te ...
- Zabbix监控详解
Zabbix是什么 Zabbix 是由Alexei Vladishev创建,目前由Zabbix SIA在持续开发和支持. Zabbix 是一个企业级的分布式开源监控方案. Zabbix是一款能够监控各 ...
- jquery源码解析:jQuery延迟对象Deferred(工具方法)详解1
请先看上一课的回调对象.Deferred是通过extend添加到jQuery中的工具方法.如下所示: jQuery.extend({ Deferred: function( func ) { }, w ...