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 ...
随机推荐
- 创建EDM
在学习linq过程中,我们难免会要创建EDM,这里简单的介绍一下EDM的创建过程 图示如下: 1.右击→添加→新建项→数据→Ado.net实体数据模型 选择适当的数据库,表后点击完成,vs中会自动生成 ...
- 三)EasyUI layout
参考文档 http://www.jeasyui.com/documentation/layout.php
- 虚拟化技术KVM
1>虚拟化技术: 计算机虚拟化技术是多种技术的综合实现,它包括硬件平台,操作系统,存储以及网络等,简单地说,虚拟化技术就是在单台主机上可以虚拟多个虚假主机,并可以在这些虚拟主机上运行不同的操作系 ...
- Windows解决多版本python执行pip3时出错AttributeError: module 'enum' has no attribute 'IntFlag'?
摘要: 本机装有python2.7和python3.6,执行pip和pip2时没有问题,执行pip3时提示: C:\Users\>pip3 Traceback (most recent call ...
- Web.config配置文件详解(新手必看) (转载)
原文地址:http://www.cnblogs.com/gaoweipeng/archive/2009/05/17/1458762.html <?xmlversion="1.0&quo ...
- openedx使用中可能用到的一些资源
这几天一直在弄openedx,你会发现安装好只是第一步,后面还有很多东西在等着你,那么哪里可以看到较新的资料了,分享几个站点: 1.https://readthedocs.org/projects/e ...
- leetcode 从排序数组中删除重复项
最近的学习是相当的无聊,并且很无趣,每天都浪费了很多时间,比如今天下午,就是搞一手成语接龙,我也是醉了- 并且我也不知道学什么了,所以决定刷题 虽然我是0算法基础,0逻辑能力的渣渣,但是尽力每天做一道 ...
- zookeeper 开机启动
第一种:直接修改/etc/rc.d/rc.local文件 在/etc/rc.d/rc.local文件中需要输入两行,其中export JAVA_HOME=/usr/java/jdk1.8.0_112是 ...
- css3 hover效果
html代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="U ...
- centos7 修改主机名(hostnamectl)
hostnamectl 是在 centos7 中新增加的命令,它是用来修改主机名称的,centos7 修改主机名称会比以往容易许多. 用法 # hostnamectl -h -h --help 显示帮 ...