Crashplan on Windows has a taskbar icon that lets you put the backup daemon to sleep, but the Mac OS X port doesn’t seem to have this functionality.
You can’t just kill the backup daemon process. The OS X “launchd” superviser daemon will see the process go away, and immediately respawn the process. You have to tell launchd to stop the backup daemon by using the launchctl command:
sudo launchctl unload /Library/LaunchDaemons/com.crashplan.engine.plist
The crashplan daemon will start again after you reboot, or you manually restart it:
sudo launchctl load /Library/LaunchDaemons/com.crashplan.engine.plist
Related posts:
- Apache2, PHP, and MySQL on Mac OS X using MacPorts
1. Install MacPorts Follow the instructions here: http://www.macports.org/install.php. 2. Install apache2 sudo port install apache2 Note that the macports instructions suggest installing the launchctl script now, but we’ll do that...... - Installing CrashPlan on Ubuntu 9.04 Server Edition
Although rsnapshot is super for linux-to-linux backups, I’ve found CrashPlan to work very well as a backup solution for my family’s windows and mac boxes. The CrashPlan installation works pretty...... - HOWTO enable the query log on MySQL on Mac OS X
Tailing the MySQL query log in real time can be a lifesaver for any developer, and it’s pretty easy to do: Make a file for the mysqld process to write...... - Installing Phusion Passenger on Ruby 1.9.1, Nginx, & Ubuntu 10.04
Getting ruby 1.9.1 and nginx and passenger and ubuntu to all play nicely is fairly straightforward, but it’s not just “apt-get” and “gem install” lovin’. Making ruby 1.9.1 the default......
Thank you! This is a life saver! Now I just have to figure out how to make a clickable icon to fire off this command so my wife can easily pause crashplan.
You can automatically pause crashplan when she’s using the computer by starting CrashPlan, clicking Settings, and under the General tab, enter zero for the “When user is present, use up to: 0 percent CPU” field.