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 ...
随机推荐
- Alpha冲刺(九)
Information: 队名:彳艮彳亍团队 组长博客:戳我进入 作业博客:班级博客本次作业的链接 Details: 组员1(组长)柯奇豪 过去两天完成了哪些任务 进一步优化代码,结合自己负责的部分修 ...
- Discovering Gold LightOJ - 1030 (概率dp)
You are in a cave, a long cave! The cave can be represented by a 1 x N grid. Each cell of the cave c ...
- 试题 A: 组队 蓝桥杯
试题 A: 组队本题总分: 5 分[问题描述]作为篮球队教练,你需要从以下名单中选出 1 号位至 5 号位各一名球员,组成球队的首发阵容.每位球员担任 1 号位至 5 号位时的评分如下表所示.请你计算 ...
- C和C++中的异常处理
1.简介 许多的编程新手对异常处理视而不见,程序里很少考虑异常情况.一部分人甚至根本就不考虑,以为程序总是能以正确的途径运行.譬如我们有的程序设计者调用fopen打开一个文件后,立马就开始进行读写操作 ...
- opencv——阈值分割图像
#include "stdafx.h" #include "opencv2\opencv.hpp" using namespace cv; IplImage* ...
- python抓网页数据【ref:http://www.1point3acres.com/bbs/thread-83337-1-1.html】
前言:数据科学越来越火了,网页是数据很大的一个来源.最近很多人问怎么抓网页数据,据我所知,常见的编程语言(C++,java,python)都可以实现抓网页数据,甚至很多统计\计算的语言(R,Matla ...
- Adding Cache-Control headers to Static Files in ASP.NET Core
Thanks to the ASP.NET Core middleware pipeline, it is relatively simple to add additional HTTP heade ...
- PMBOK项目管理认知概要
2015年6月,通过努力取得PMP证书,很是欣喜,也是对努力付出的一种奖励吧! 通过学习PMP相关的项目管理的知识,对国外的项目管理技术有更加系统的认知.理解.掌握,熟悉全项目生命周期的管理. 其实对 ...
- android的样式(style)与主题(theme)
Android上的Style分为了两个方面: 1,Theme是针对窗体级别的,改变窗体样式: 2,Style是针对窗体元素级别的,改变指定控件或者Layout的样式. Android系统的themes ...
- django model项目外操作
方法1: python manage.py shell 然后import对应的model并操作 方法2: 新建py脚本 import sys import os pwd = os.path.dirna ...