Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Rsync on Mountain Lion not showing in console?

I have always backed up my Mac using rsync. The process was easy to control as the entire backup process was depicted in Console in real time.


On Mountain Lion, I have found that rsync does not provide any updates anymore in Console.


Has anyone seen this?

MacBook Pro 15, Mac OS X (10.7.1)

Posted on Dec 3, 2012 11:16 AM

Reply
7 replies

Dec 3, 2012 2:48 PM in response to Linc Davis

It's a script that has never been changed:


#!/bin/sh

rsync -avzt --bwlimit=85 --delete-after --progress --stats --cvs-exclude --exclude "*.XXX" --delete-excluded /Users/XXXX/XXXX XXXX@XXXX.XXXX.XXX:MyMac/


That code is in a separate file that is called through a job automatically. The script runs fine in a Terminal window and produces the desired results, but nothing shows up in console.


Up til now, I was used to seeing the full process unfolding also inside Console.

Dec 5, 2012 12:43 AM in response to Linc Davis

It's a very simple launchd job and its runningly perfectly fine and on schedule.


<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

<key>Disabled</key>

<false/>

<key>Label</key>

<string>com.xxxx.xxxxxx</string>

<key>ProgramArguments</key>

<array>

<string>bash</string>

<string>/Users/xxx/Documents/xxx/backup_documents.sh</string>

</array>

<key>StartCalendarInterval</key>

<dict>

<key>Hour</key>

<integer>11</integer>

<key>Minute</key>

<integer>0</integer>

</dict>

</dict>

</plist>

Rsync on Mountain Lion not showing in console?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.