How to reset Home Dir permissions?

I've had a few situations lately where I've had to either move files from one user's Home Dir to another's, or delete a user then move its files back after recreating it, or simply fix wonky privs, but I can't seem to find an easy way to do these things.
Is there any way to automate the inheritance of privs? Like, I want to be able to drop a file into a user's home, and have it become owned by that user. I thought I'd at least be able to reset the owner while logged in as that user, by changing the setting in the Get Info window, but you aren't even given the option to authenticate as an admin...
Am I missing something easy here?

In short, there is no easy way to enable propagation of ownership to files that are dropped into a home folder.
However, I use a bash script on or home folder servers to create/fix permissions on a user's apple home folder. The script will go through all folders in the user's home folder and reset the permissions and ownership to the correct values.
1. Copy the script below into a file (eg. fixpermissions.sh) using emacs, nano or your favorite editor.
2. Open a terminal on the machine hosting the home folder.
3. Change to the top level of your home folder tree.
Eg. If the home folder is /Users/jweston, change to the /Users folder <pre>cd /Users</pre>
4. Run the fixpermissions.sh script with the username to fix.
<pre>./fixpermissions.sh jweston</pre>
5. Done! Note: If the folder does not exist it will be created. Otherwise, the script will fix permissions on the current contents.
Here is the script...
<pre>
#!/bin/bash
if [ -d ${1} ]
then
#Home Dir exists, reset permissions
chown -R ${1}.admin ${1}
chmod -R u=rwX,go= ${1}
chmod -R go=rX ${1}/Public ${1}/Sites
chmod go=wX ${1}/Public/Drop\ Box
chmod go=rX ${1}
else
#Home Dir does not exist, create...
mkdir ${1}
mkdir ${1}/Desktop
mkdir ${1}/Documents
mkdir ${1}/Library
mkdir ${1}/Movies
mkdir ${1}/Music
mkdir ${1}/Pictures
mkdir ${1}/Public
mkdir ${1}/Public/Drop\ Box
mkdir ${1}/Sites
chown -R ${1}.admin ${1}
chmod -R u=rwX,go= ${1}
chmod -R go=rX ${1}/Public ${1}/Sites
chmod go=wX ${1}/Public/Drop\ Box
chmod go=rX ${1}
fi</pre>

Similar Messages

  • How to reset home folder permissions ?

    Hello everyone I have a pretty tough problem that I would really like to fix
    Here's the little story... I bought a macbook pro (mid 2010) and I accidentally broke it.. I made a ghost of my hard drive before erasing it and sending the macbook to be repaired. It came back as I sent it, because the cost to repair was almost equal as getting a new macbook..
    So I bought the brand new (2011) macbook pro and I'm trying to get my data back onto it.. I took out the new hard drive, ran my ghost program (Ghost 4 Linux in RAW mode in case you want to know) and I put the hard drive back into the mac. I just won't boot.
    It appears that the new macbooks require some new kexts or files to be able to boot up. I couldn't even boot my 10.6.3 retail DVD...
    I reinstalled Snow Leo with no problems, and I wanted to copy directly my previous home folder (or all content inside) to my new one. It appears to be impossible, because I had a password on my previous macbook.. Chmod or Chown (as root) do nothing at all, programs like Batchmod or permission reset do not work either. Linux can't reset permissions saying it's a "read only file system" (although I can see the name of all files inside folders while it's trying to change permissions even if it always fails). I can't manually modify permissions by pressing Command + i because it says I have "custom access rights"...
    I'm really stuck on this one, I've done some searching and I'm astonished I couldn't find any answer about that. I'm pretty sure many pple have had that problem before.
    I hope you guys will have an answer for me, otherwise I've lost all my family pictures, music, documents and.....everything else ?
    Thank you.

    No, I didn't say that. If you weren't using FileVault, you should be fine, unless something is wrong with the old drive.
    In the Finder, select the icon of the drive you're trying to copy from, and open the Info window. In the Sharing & Permissions section, there's a checkbox labeled "Ignore ownership on this disk." If that box is not checked, click the lock icon in the corner of the window, authenticate with your administrator name and password, check the box, then try the copy again.

  • Reset Home Folder Permissions and ACLs spinning forever

    Hi, all.
    The performance of my Intel iMac (circa 2008 or so) had degraded quite a bit, so I decided it was time to reinstall Snow Leopard. Did so, then restored my apps and documents via Time Machine. Suddenly, it was impossible to launch most applications (Chrome, the App Store, etc.) Repairing permissions using Disk Utility did not help.
    Upon reading an article on this, I booted from the Snow Leopard disk, entered the Reset Password utility, and attempted to Reset Home Folder Permissions and ACLs. The process has been running for several hours with no end in sight and no error message. Is this normal? And if not, what should my next step be?
    Thanks so much!

    Do a force shutdown holding the power button and reboto to get into the machine (might have to hold Shift Key) and get a copy of your users files off and onto a external storage drive (not TimeMachine)
    Then start all over using this method select the entire drive to zero erase and install, that should clear the bad sector issue it appears your having.
    How to erase and install Snow Leopard 10.6
    Do not restore anything from TimeMachine, it's corrupted data, reinstall all apps fresh from original sources and only files (you know are good) from the storage drive.
    This is known as a "fresh install method" later you can update TM to backup this newer and cleaner configuration.
    Why is my computer slow?
    For Snow Leopard Speed Freaks
    once you get all tweaked, clone it.
    Most commonly used backup methods
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • TS2972 how to reset home sharing

    How do I reset home sharing in itunes, I don't know what computers, I put home sharing on, Most likely I had to reformat the hard drives, So they don't exist. I would like to do is set my account to zero.. thanks

    In short, there is no easy way to enable propagation of ownership to files that are dropped into a home folder.
    However, I use a bash script on or home folder servers to create/fix permissions on a user's apple home folder. The script will go through all folders in the user's home folder and reset the permissions and ownership to the correct values.
    1. Copy the script below into a file (eg. fixpermissions.sh) using emacs, nano or your favorite editor.
    2. Open a terminal on the machine hosting the home folder.
    3. Change to the top level of your home folder tree.
    Eg. If the home folder is /Users/jweston, change to the /Users folder <pre>cd /Users</pre>
    4. Run the fixpermissions.sh script with the username to fix.
    <pre>./fixpermissions.sh jweston</pre>
    5. Done! Note: If the folder does not exist it will be created. Otherwise, the script will fix permissions on the current contents.
    Here is the script...
    <pre>
    #!/bin/bash
    if [ -d ${1} ]
    then
    #Home Dir exists, reset permissions
    chown -R ${1}.admin ${1}
    chmod -R u=rwX,go= ${1}
    chmod -R go=rX ${1}/Public ${1}/Sites
    chmod go=wX ${1}/Public/Drop\ Box
    chmod go=rX ${1}
    else
    #Home Dir does not exist, create...
    mkdir ${1}
    mkdir ${1}/Desktop
    mkdir ${1}/Documents
    mkdir ${1}/Library
    mkdir ${1}/Movies
    mkdir ${1}/Music
    mkdir ${1}/Pictures
    mkdir ${1}/Public
    mkdir ${1}/Public/Drop\ Box
    mkdir ${1}/Sites
    chown -R ${1}.admin ${1}
    chmod -R u=rwX,go= ${1}
    chmod -R go=rX ${1}/Public ${1}/Sites
    chmod go=wX ${1}/Public/Drop\ Box
    chmod go=rX ${1}
    fi</pre>

  • Trying to reset home folder permissions and acls

    I have been having a nightmare of a time with Adobe apps, primarily Premiere Pro, crashing CONSTANTLY and randomly. I have no idea what's causing it and have been going back & forth to no avail for days with Adobe, and trying a bunch of different things. I keep getting an error that says Thread 0 Crashed com.apple.main .......
    I am on a 2014 Mac Pro 12 core, 64GB Ram with dual AMD D700 GPUs, running Yosemite.
    The steps I have tried have included messing around with various permissions within the Adobe folders and enclosed files. That led me to then need to completely reinstall my OS from recovery mode. I tried multiple times going into recovery mode, doing resetpassword in Terminal, and then trying to reset the home folder permissions from there, but it just never says done and don't think it's doing anything. I have let it sit for hours and not gotten anything back on it.
    I searched the forums and found an older thread where Linc Davis had posted a terminal code to put in, and tried that. Many said that worked for them, but it didn't seem to change anything for me. After doing that, i did go back into recovery mode and see if i could reset the permissions from there, but again, just greyed out the Done button and stayed for hours.
    I am at a complete loss on what to do and really need some help. I am days overdue on projects because of Adobe's crashes and because of the time I've been wasting trying to re-sort out the IT stuff that I don't really know much about. Can you please help? ANYONE?

    it's only been with adobe applications, but unfortunately, they are just not being helpful. I'll paste a crash report here below, maybe you can make sense of it. They can't seem to and I certainly can't. I really don't know what to do. All they keep doing is asking me more questions, which to me doesn't make a whole lot of sense in itself. I would think that an Adobe Crash Report should tell Adobe exactly what's causing the crash. So frustrating and right now highly detrimental to my business.
    The only thing that is happening of question besides the Adobe apps crashing is that I can't reset my home folder permissions through the recovery mode. I tried last night and let it run overnight and this morning, it still had not said 'Done'. So i'm not sure if that denotes a different problem somewhere
    Process: Adobe Premiere Pro CC 2014 [35184]
    Path: /Applications/Adobe Premiere Pro CC 2014/Adobe Premiere Pro CC 2014.app/Contents/MacOS/Adobe Premiere Pro CC 2014
    Identifier: com.adobe.AdobePremierePro
    Version:               8.2.0 (8.2.0)
    Code Type: X86-64 (Native)
    Parent Process: ??? [1]
    Responsible: Adobe Premiere Pro CC 2014 [35184]
    User ID: 501
    Date/Time: 2015-03-16 12:21:23.113 -0400
    OS Version:            Mac OS X 10.10.2 (14C1510)
    Report Version: 11
    Anonymous UUID: 90B14466-00B2-AC58-907F-47673A061B0E
    Time Awake Since Boot: 210000 seconds
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
        __TEXT 0000000100000000-0000000100003000 [ 12K] r-x/rwx SM=COW /Applications/Adobe Premiere Pro CC 2014/Adobe Premiere Pro CC 2014.app/Contents/MacOS/Adobe Premiere Pro CC 2014
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.adobe.AudioSupport.framework    0x0000000103d7f8d0 ML::Device::GetNumberOfPhysicalChannels(unsigned int, bool) + 80
    1 com.adobe.AudioSupport.framework    0x0000000103d6adb8 ML::CoreAudioHost::PrivateInitDriver(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 712
    2 com.adobe.AudioSupport.framework    0x0000000103d6a18f ML::CoreAudioHost::LoadDriverPrivate(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, bool, bool) + 351
    3 com.adobe.AudioSupport.framework    0x0000000103d6dac1 ML::CoreAudioHost::LoadDriver(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 33
    4 com.adobe.AudioSupport.framework    0x0000000103d7b348 ML::CoreAudioHost::AddDependancy() + 56
    5 com.adobe.PlayerHost.framework         0x0000000105afca75 ML::AsioHostInstanceWrapper::AsioHostInstanceWrapper() + 165
    6 com.adobe.PlayerHost.framework         0x0000000105b1d6b7 ML::VideoPlayerProxy::ActivateDevice() + 39
    7   com.adobe.MLFoundation.framework   0x0000000103710fb9 ML::PreemptionManager::ActivateDevice(ASL::InterfaceRef<ML::IPreemptableProxy, ML::IPreemptableProxy> const&) + 873
    8 com.adobe.PlayerHost.framework         0x0000000105b18e91 ML::VideoPlayerProxy::Activate() + 49
    9 com.adobe.HandlerTimeline.framework           0x000000010c2bbfbf HandlerTimeline::TimelineView::NowOnDuty() + 623
    10 com.adobe.UIFramework.framework   0x0000000104d44cf9 UIF::Commander::SetTarget(UIF::Commander*) + 361
    11 com.adobe.dvaui.framework                 0x000000010425d3eb dvaui::ui::UI_Node::UI_GainKeyboardFocus(dvaui::ui::FocusChangeReason) + 363
    12 com.adobe.dvaworkspace.framework  0x0000000106f75ba2 dvaworkspace::workspace::Workspace::SetFocusedTabPanel(dvaworkspace::workspace: :TabPanel*) + 498
    13  com.adobe.HandlerTimeline.framework          0x000000010c375d92 HandlerTimeline::TrackViewArea::DropSelf(UIF::DataObject&, int, ASL::ParamPoint<int> const&) + 15282
    14 com.adobe.UIFramework.framework   0x0000000104e11d24 UIF::SubViewImpl::UI_HandleDrop(dvacore::geom::PointT<float>, dvaui::datatransfer::OS_ReceiveData&, int&) + 180
    15 com.adobe.UIFramework.framework   0x0000000104e11d50 non-virtual thunk to UIF::SubViewImpl::UI_HandleDrop(dvacore::geom::PointT<float>, dvaui::datatransfer::OS_ReceiveData&, int&) + 16
    16  com.adobe.dvaui.framework                 0x000000010419821d dvaui::datatransfer::OS_DropTargetBase::RouteDrop(dvaui::datatransfer::OS_Recei veData&, dvacore::geom::PointT<float> const&, dvaui::ui::UI_Node*, int&) + 77
    17 com.adobe.dvaui.framework                 0x0000000104198c65 dvaui::datatransfer::OS_DropTarget::HandlePerformDragEvent(objc_object*) + 261
    18 com.adobe.dvaui.framework                 0x00000001042cff63 dvaui::ui::OS_DragDropManager::UI_HandlePlatformPerformDragEvent(objc_object*) + 35
    19 com.adobe.dvaui.framework                 0x00000001042e8418 boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<bool, boost::_mfi::mf1<bool, dvaui::ui::OS_DragDropManager, objc_object*>, boost::_bi::list2<boost::_bi::value<dvaui::ui::OS_Window*>, boost::_bi::value<objc_object*> > >, bool>::invoke(boost::detail::function::function_buffer&) + 56
    20 com.adobe.Frontend.framework           0x00000001000d33fc boost::function0<bool>::operator()() const + 28
    21 com.adobe.Frontend.framework           0x00000001000d34ce int dvacore::config::ErrorManager::ExecuteFunction<bool>(boost::function0<bool>*, bool*) + 14
    22 com.adobe.Frontend.framework           0x000000010006b039 FE::ApplicationErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost: :function0<int>) + 41
    23 com.adobe.Frontend.framework           0x00000001000d32e8 bool dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<bool >(boost::function0<bool>, bool*) + 136
    24 com.adobe.Frontend.framework           0x00000001000d31da bool dvacore::config::ExecuteTopLevelFunction<bool>(boost::function0<bool>, bool*) + 170
    25 com.adobe.dvaui.framework                 0x00000001042dd82c -[DVAMacWindowDelegate performDragOperation:] + 124
    26 com.apple.AppKit                       0x00007fff8fb6c61c -[NSWindow(NSDrag) performDragOperation:] + 86
    27 com.apple.AppKit                       0x00007fff8f6bba59 NSCoreDragReceiveMessageProc + 345
    28 com.apple.HIServices                 0x00007fff814956ab DoMultipartDropMessage + 327
    29 com.apple.HIServices                 0x00007fff814953ad DoDropMessage + 41
    30 com.apple.HIServices                 0x00007fff8149443b CoreDragMessageHandler + 871
    31 com.apple.CoreFoundation        0x00007fff8b8614d8 __CFMessagePortPerform + 568
    32 com.apple.CoreFoundation        0x00007fff8b7e98f9 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    33 com.apple.CoreFoundation        0x00007fff8b7e986b __CFRunLoopDoSource1 + 475
    34 com.apple.CoreFoundation        0x00007fff8b7db3e7 __CFRunLoopRun + 2375
    35 com.apple.CoreFoundation        0x00007fff8b7da858 CFRunLoopRunSpecific + 296
    36  com.apple.HIToolbox                  0x00007fff89cd1aef RunCurrentEventLoopInMode + 235
    37 com.apple.HIToolbox                  0x00007fff89cd186a ReceiveNextEventCommon + 431
    38 com.apple.HIToolbox                  0x00007fff89cd16ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    39 com.apple.AppKit                       0x00007fff8f406f81 _DPSNextEvent + 964
    40 com.apple.AppKit                       0x00007fff8f406730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    41 com.apple.AppKit                       0x00007fff8f3fa593 -[NSApplication run] + 594
    42 com.adobe.Frontend.framework           0x00000001000d302d FE::MacApplication::RunSelf() + 45
    43 com.adobe.Frontend.framework           0x0000000100047e98 FE::Application::Run(std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&) + 4328
    44 com.adobe.Frontend.framework           0x00000001000d4944 FE::AppMain(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, int, void*) + 276
    45 com.adobe.Frontend.framework           0x00000001000dbbe5 FE::Run(ASL::ObjectPtr<ASL::Module, ASL::AtomicValue> const&, std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > const&, int) + 581
    46 com.adobe.AdobePremierePro             0x00000001000018ac main + 508
    47 com.adobe.AdobePremierePro             0x00000001000016a4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff8289d232 kevent64 + 10
    1 libdispatch.dylib             0x00007fff8f2daa6a _dispatch_mgr_thread + 52
    Thread 2:
    0 libsystem_kernel.dylib                 0x00007fff8289d21a kevent + 10
    1 com.adobe.dvatransport.framework     0x0000000100ea01a7 boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 375
    2 com.adobe.dvatransport.framework     0x0000000100e9fd18 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 552
    3 com.adobe.dvatransport.framework     0x0000000100e8f157 SkyConnectionEnv::MainLoop() + 167
    4 com.adobe.dvatransport.framework     0x0000000100e8ec09 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5 com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    6 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.adobe.dvacore.framework              0x00000001003a106b boost::asio::detail::task_io_service::do_run_one(boost::asio::detail::scoped_lo ck<boost::asio::detail::posix_mutex>&, boost::asio::detail::task_io_service_thread_info&, boost::system::error_code const&) + 139
    2 com.adobe.dvacore.framework              0x00000001003a0dd8 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 552
    3 com.adobe.dvacore.framework              0x00000001003a0b9a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_b ase::work_io_service_runner>::run() + 42
    4 com.adobe.dvatransport.framework     0x0000000100ea0bb3 boost_asio_detail_posix_thread_function + 19
    5 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    6 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    7 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 4:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff886167c0 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff886169bf TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff885e62f5 MPWaitOnQueue + 192
    4 com.adobe.dvacore.framework              0x00000001003d923d dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 141
    5 com.adobe.dvacore.framework              0x00000001003d71a0 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 160
    6 com.adobe.dvacore.framework              0x00000001003c763c boost::function0<void>::operator()() const + 28
    7   com.adobe.dvacore.framework              0x00000001003d4113 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 115
    8   com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    9 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    10 libsystem_pthread.dylib            0x00007fff8b7621e5 _pthread_start + 176
    11 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 5:
    0 libsystem_kernel.dylib                 0x00007fff8289c166 __psynch_mutexwait + 10
    1 com.adobe.AudioSupport.framework    0x0000000103d7b32b ML::CoreAudioHost::AddDependancy() + 27
    2 com.adobe.PlayerHost.framework         0x0000000105af6680 ML::VideoPlayer::Activate(ASL::InterfaceRef<ML::AsioHostInstanceWrapper, ASL::ASLUnknown>) + 256
    3 com.adobe.PlayerHost.framework         0x0000000105b215c8 ML::VideoPlayerDeferredActivate::Execute() + 56
    4 com.adobe.PlayerHost.framework         0x0000000105aebda4 ML::PlayModuleThreadQueue::ExecuteDeferredCall(ASL::ObjectPtr<ML::DeferredCallB ase, ASL::AtomicValue>) + 340
    5 com.adobe.PlayerHost.framework         0x0000000105aeaca5 ML::PlayModuleThreadQueue::ServiceQueue() + 293
    6 com.adobe.dvacore.framework              0x00000001003d723e dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 318
    7 com.adobe.dvacore.framework              0x00000001003c763c boost::function0<void>::operator()() const + 28
    8 com.adobe.dvacore.framework              0x00000001003d4113 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 115
    9 com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    10 libsystem_pthread.dylib            0x00007fff8b762268 _pthread_body + 131
    11 libsystem_pthread.dylib            0x00007fff8b7621e5 _pthread_start + 176
    12 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 6:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff886167c0 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff886169bf TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff885e62f5 MPWaitOnQueue + 192
    4 com.adobe.dvacore.framework              0x00000001003d923d dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 141
    5 com.adobe.dvacore.framework              0x00000001003d71a0 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 160
    6 com.adobe.dvacore.framework              0x00000001003c763c boost::function0<void>::operator()() const + 28
    7   com.adobe.dvacore.framework              0x00000001003d4113 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 115
    8   com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    9 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    10 libsystem_pthread.dylib            0x00007fff8b7621e5 _pthread_start + 176
    11 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 7:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff886167c0 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff886169bf TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff885e62f5 MPWaitOnQueue + 192
    4 com.adobe.dvacore.framework              0x00000001003d923d dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 141
    5 com.adobe.dvacore.framework              0x00000001003d71a0 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 160
    6 com.adobe.dvacore.framework              0x00000001003c763c boost::function0<void>::operator()() const + 28
    7 com.adobe.dvacore.framework              0x00000001003d4113 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 115
    8 com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    9   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    10 libsystem_pthread.dylib            0x00007fff8b7621e5 _pthread_start + 176
    11 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 8:
    0 libsystem_kernel.dylib                 0x00007fff828974de mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8289664f mach_msg + 55
    2 com.apple.CoreFoundation         0x00007fff8b7dbb34 __CFRunLoopServiceMachPort + 212
    3 com.apple.CoreFoundation         0x00007fff8b7daffb __CFRunLoopRun + 1371
    4 com.apple.CoreFoundation         0x00007fff8b7da858 CFRunLoopRunSpecific + 296
    5 com.apple.AVCVideoServices      0x0000000123888c32 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 194
    6 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 9:
    0 libsystem_kernel.dylib                 0x00007fff828974de mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8289664f mach_msg + 55
    2 com.apple.CoreFoundation         0x00007fff8b7dbb34 __CFRunLoopServiceMachPort + 212
    3 com.apple.CoreFoundation         0x00007fff8b7daffb __CFRunLoopRun + 1371
    4 com.apple.CoreFoundation         0x00007fff8b7da858 CFRunLoopRunSpecific + 296
    5 com.apple.AVCVideoServices      0x0000000123888c32 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 194
    6 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 10:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff886167c0 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff886169bf TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff885e62f5 MPWaitOnQueue + 192
    4 com.adobe.dvacore.framework              0x00000001003d923d dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 141
    5 com.adobe.dvacore.framework              0x00000001003d71a0 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 160
    6 com.adobe.dvacore.framework              0x00000001003c763c boost::function0<void>::operator()() const + 28
    7 com.adobe.dvacore.framework              0x00000001003d4113 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 115
    8 com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    9 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    10 libsystem_pthread.dylib            0x00007fff8b7621e5 _pthread_start + 176
    11 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 11:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff886169a7 TSWaitOnConditionTimedRelative + 147
    2 com.apple.CoreServices.CarbonCore     0x00007fff885e62f5 MPWaitOnQueue + 192
    3 com.adobe.dvacore.framework              0x00000001003d923d dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::t hreads::AllocatedFunctionT<boost::function<void ()> > >&, int) + 141
    4 com.adobe.dvacore.framework              0x00000001003d71a0 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::T hreadSafeDelayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 160
    5 com.adobe.dvacore.framework              0x00000001003c763c boost::function0<void>::operator()() const + 28
    6 com.adobe.dvacore.framework              0x00000001003d4113 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 115
    7 com.adobe.boost_threads.framework    0x00000001002c9dba thread_proxy + 186
    8 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    9 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    10 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 12:
    0 libsystem_kernel.dylib                 0x00007fff8289c48a __semwait_signal + 10
    1 com.adobe.ScriptLayerPPro.framework            0x0000000107229868 ScObjects::Thread::wait(unsigned int) + 56
    2 com.adobe.ScriptLayerPPro.framework            0x000000010720fdee ScObjects::BridgeTalkThread::run() + 174
    3 com.adobe.ScriptLayerPPro.framework            0x0000000107229405 ScObjects::Thread::go(void*) + 165
    4 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 13:
    0 libsystem_kernel.dylib                 0x00007fff8289c33a __recvfrom + 10
    1 VulcanMessage5.dylib                 0x000000011277ab32 vcfoundation::io::BSDNamedPipe::Read(void*, unsigned long) + 24
    2 VulcanMessage5.dylib                 0x0000000112778c40 vcfoundation::io::BufferedReader::InternalRead(char*, long) + 112
    3 VulcanMessage5.dylib                 0x0000000112778cae vcfoundation::io::BufferedReader::Read(void*, unsigned long) + 60
    4 VulcanMessage5.dylib                 0x00000001127717d0 vcfoundation::io::IVCChannel::ReadFully(void*, unsigned long) + 70
    5 VulcanMessage5.dylib                 0x0000000112772262 vcfoundation::io::Serializer::InternalDeserialize() + 30
    6 VulcanMessage5.dylib                 0x000000011277216f vcfoundation::io::Serializer::Deserialize() + 9
    7 VulcanMessage5.dylib                 0x0000000112777782 vcfoundation::ncomm::Connection::ReadIn() + 28
    8 VulcanMessage5.dylib                 0x00000001127778c6 vcfoundation::ncomm::NCService::ReadResponse(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&, vcfoundation::ncomm::NCService::ConRef&) + 40
    9 VulcanMessage5.dylib                 0x0000000112777681 vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&) + 109
    10 VulcanMessage5.dylib               0x00000001127775fa vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*) + 32
    11 VulcanMessage5.dylib               0x000000011276832b adobe::vulcan::servicemgr::CSIRequest::Execute() + 53
    12  VulcanMessage5.dylib               0x0000000112769507 adobe::vulcan::servicemgr::RegisterForEventsRequest::Run() + 353
    13 VulcanMessage5.dylib               0x00000001127782d0 vcfoundation::thread::AbstractThread::Run() + 50
    14 VulcanMessage5.dylib               0x000000011277c523 vcfoundation::thread::Thread::ThreadProc(void*) + 9
    15 libsystem_pthread.dylib            0x00007fff8b762268 _pthread_body + 131
    16 libsystem_pthread.dylib            0x00007fff8b7621e5 _pthread_start + 176
    17 libsystem_pthread.dylib            0x00007fff8b76041d thread_start + 13
    Thread 14:
    0 libsystem_kernel.dylib                 0x00007fff828974de mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8289664f mach_msg + 55
    2 com.apple.CoreServices.CarbonCore     0x00007fff886139ce TS_exception_listener_thread + 100
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 15:
    0 libsystem_kernel.dylib                 0x00007fff8289d21a kevent + 10
    1 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    2 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    3 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 16:
    0 libsystem_kernel.dylib                 0x00007fff828974de mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8289664f mach_msg + 55
    2 com.apple.CoreFoundation         0x00007fff8b7dbb34 __CFRunLoopServiceMachPort + 212
    3 com.apple.CoreFoundation         0x00007fff8b7daffb __CFRunLoopRun + 1371
    4 com.apple.CoreFoundation         0x00007fff8b7da858 CFRunLoopRunSpecific + 296
    5 com.apple.AppKit                         0x00007fff8f56a33b _NSEventThread + 137
    6   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 17:
    0 libsystem_kernel.dylib                 0x00007fff828974de mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8289664f mach_msg + 55
    2 com.apple.CoreFoundation         0x00007fff8b7dbb34 __CFRunLoopServiceMachPort + 212
    3 com.apple.CoreFoundation         0x00007fff8b7daffb __CFRunLoopRun + 1371
    4 com.apple.CoreFoundation         0x00007fff8b7da858 CFRunLoopRunSpecific + 296
    5 com.apple.AVCVideoServices      0x0000000123888c32 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 194
    6 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                 0x00007fff8289c94a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff8b76040d start_wqthread + 13
    Thread 19:
    0 libsystem_kernel.dylib                 0x00007fff8289c94a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff8b76040d start_wqthread + 13
    Thread 20:
    0 libsystem_kernel.dylib                 0x00007fff8289c94a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff8b76040d start_wqthread + 13
    Thread 21:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 22:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4   libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 23:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 24:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 25:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 26:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 27:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 28:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 29:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 30:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 31:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 32:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 33:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 34:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 35:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 36:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 37:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 38:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 39:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 40:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 41:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 42:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 43:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 44:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 45:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 46:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 47:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 48:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 49:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 50:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 51:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 52:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 53:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 54:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 55:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1   com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 56:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 57:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 58:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5   libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 59:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 60:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 61:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 62:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3   libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 63:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 64:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 65:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4   libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 66:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 67:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2 com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread.dylib              0x00007fff8b7621e5 _pthread_start + 176
    5 libsystem_pthread.dylib              0x00007fff8b76041d thread_start + 13
    Thread 68:
    0 libsystem_kernel.dylib                 0x00007fff8289c136 __psynch_cvwait + 10
    1 com.mainconcept.mc.bc.dec.avc 0x0000000124c58f7d h264in_Video_GetAPIExt + 238477
    2   com.mainconcept.mc.bc.dec.avc 0x0000000124bd10b5 open_h264in_Video_stream + 347941
    3 libsystem_pthread.dylib              0x00007fff8b762268 _pthread_body + 131
    4 libsystem_pthread

  • How To Backup Home Dir?

    I am wanting to backup my home dir. What is the easiest and most efficient way of backing up my home dir. without having to purchase software of any sort? I want to be able to easily replace my home dir. if I have to do a format and clean install of any sort of OS X and not run into problems of being locked out of my files.
    Thanks

    There are numerous backup solutions available:
    Backup Utilities for OS X
    (In the order of my personal ranking)
    1. The Restore option of Disk Utility (only for full backups.)
    2. Retrospect Desktop (Commercial $129 - not universal binary)
    3. Synchronize! Pro X (Shareware $99)
    4. Synk 6 (Shareware - 3 versions: Pro $45, Standard $35, Basic $25)
    5. Deja Vu (Shareware $25)
    6. LaCie SilverKeeper (Freeware - not universal binary.)
    7. Carbon Copy Cloner 3.0 Beta (Freeware.)
    8. RSyncX and PSyncX (Freeware - GUIs wrapped around Unix tools.)
    9. arRsync (Freeware - GUI wrapper on rsync.)
    For a good discussion of backup and restore visit The XLab FAQs and read the FAQ on backup and restore strategies.
    Except for Retrospect you can download the others from www.versiontracker.com or www.macupdate.com.
    You will need backup media. The best solution is to purchase an external Firewire drive equal to or larger than the internal drive. You can then clone your entire system using the Restore option of Disk Utility. Alternatively you can save your backups to DVDs.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • How to create Home Dir

    I want to create Home Dir with remote manager and VB script. Here is the architecture OIM will call remote manager which is on other windows machine . On remote manager we will run script which will call other windows machine where we want to create hone dir.
    Here my question is ...Is it necessary to have remote manager in the Domain where we are creating home dir.
    We are having 12 domains so do we need to 12 remote manager

    You can turn anything into a remote manager task. Just need to recreate the same adapter, but use an IT Resource with a remote manager, and add the task as a remote manager task instead. Then when you map the it resource, it will have another variable to map.
    -Kevin

  • OOPS!! Reset Home Directory permissions

    I accidently reset my home permissions.  Now, I can't get into my home directory except as root.  What command can I do to make every file in my home to be read/write accesable ONLY to punkrockguy and root?

    Hmm, I had hoped the chmod didn't need to be applied recursive. You can try to use the 'find' command to make all files non-executable. From your home directory, run something like:
    find -type f -exec chmod a-x "{}" ";"
    See the find manpage for more details.
    Of course you'll need to add the executable flag the files files you DO want to be executable, like the ones in your ~/bin and stuff called 'configure' and such.

  • How to set all file permissions to default?

    So a few background notes are in order. I came across an article on the NSA's website titled Hardening Tips for Mac OS x 10.6 "Snow Leopard", needless to say I have come to believe I have made this irreversible. The NSA suggested to do some fancy command line coding to disable this, modify that, and change permissions to this. After hours spent on "hardening" my system, I have little hair left to pull in frustration. Is there any way to restore all file permissions back to default? I have used the Repair Disk Permissions, but that has done very little. To give the scope of what permissions have been skewed, I have observed several things:
    The desktop wallpapers, on all Desktops (as I'm in Lion 10.7.3), start from the same picture every time. I have the wallpapers changing, randomly, every 5 minutes.
    Safari doesn't keep the home page. No matter how often I try to change the homepage, I restart Safari, and I'm right back to the original homepage.
    Firefox doesn't retain the fact that I want it to be the default Web Browser. In fact, it keeps "forgetting" that I've used it before, and thus brings me to their awesome start page whenever someone first uses Firefox.
    Spotlight gets "stuck" i.e. almost every time I start my machine, it indexes. Even after I let it finish indexing, the next time I start my computer, it starts again.
    I have to input the administrator password after almost every activity, such as copying to the desktop, moving an application not bought from the Mac App Store into the /Applications folder, deleting a file from anywhere inside my home folder, etc.
    Some preference panes that need access to certain folders, such as Hazel's access to my desktop, are denied that access without ever prompting me for a password (though even if it did, it would get rather annoying after every startup)
    My firewall (in System Preferences>Security & Privacy>Firewall) doesn't "remember" that I do indeed want Dropbox to accept incoming connections. I have to input my admin password at each startup after clicking "allow"
    Opera pretty much doesn't function. Its bookmarking capability, home page, saved tabs, any thing that requires the saving of any type of preference to the computer results in a dialog pop up informing me that Opera failed to save what it needed, and prompts me to "Try again" or "Cancel" (hint: the "Try again" button doesn't work)
    There are more symptoms of an ever growing problem.
    I have backed up my machine from Time Machine, but I think it retains these file permissions, unless I'm wrong.
    Summary:
    How can I fully restore EVERY file permission back to default? Repair Disk Permissions doesn't work
    Is there a way that I can re-install Mac OS X, restore through Time Machine, and achieve the default file permissions, essentially losing all file permissions?

    Repairing the permissions of a home folder in Lion is a complicated procedure. I don’t know of a simpler one that always works.
    Launch the Terminal application by entering the first few letters of its name into a Spotlight search. Drag or copy – do not type – the following line into the window, then press return:
    chmod -R -N ~
    If you get an error message about permissions, enter this:
    sudo !!
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    Next, boot from your recovery partition by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the recovery desktop appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, enter “resetpassword” (without the quotes) and press return. A Reset Password window opens.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • Repair Home Directory Permissions in Lion

    I currently have my home directory on it's own physical disk (not in the default location on my OS drive).
    When I try to "reset home directory permissions" against my user account in OS X Lion, nothing happens. When I do it for a user who has his home directory on the OS drive, everything works like a champ. The same thing happens under Snow Leopard as well, and I've been trying to track down a solution to this for a long time.
    Does anyone know how to fix this? I tried setting the permissions, ACL's, extended atttributes, etc to the best of my ability using Unix commands, and I'm not really having any issues at the moment, but I'd like to be able to set everything back to the way it should be in my home directory.
    Also, I don't have enough space on my OS drive to move my home directory back to the default location in order to do the reset.
    Any help would be appreciated.
    Bobby

    If you go into System Preferences / Users, you can right click on your User account and choose advanced options. In there, you are able to point your users directory to any disk (or folder) on your machine. I chose to move my home directory to a separate drive in my Mac Pro to make rebuilds easier. Now if I want to reinstall my OS, I simply blow the existing OS away, format the OS disk, and once a fresh OS is installed, I just re-point my account to the existing drive where my home directory is, and all is cool. It's definitely a supported configuration by Apple, and many people do it. It's just aggravating that their "reset home directory permissions" routine doesn't like it.
    My OS drive is a 128gb SSD, and my home directory sits on a 3tb HDD. From a performance and separation perspective it's perfect.
    Bobby

  • How can I fix a permissions error on my entire Macintosh HD?

    Today when attempting to fix file sharing permissions between users on my LAN, I mistakenly changed the following settings:
    In "Sharing" --> "File Sharing" I added the Macintosh HD and changed the permissions to "Read and Write
    I then selected "Apply Permissions to Enclosed Items".
    Ever since I did this, I am unable to open or use my applications, including Finder.
    I have since run Disk Utility to repair disk permissions (which fixed thousands or reported errors) as well as a repair disk (no errors were reported.)
    After no success with these methods, I finally reinstalled Mavericks. Unfortunately, I am still unable to access my programs or open files (which are still there, just non-accessible.)
    I do not have a current backup of my hard drive. Is there a way to remedy this problem without losing all of my important data? Would it be possible to copy all of my files to an external HD, delete the current HD and then reinstall from scratch?
    Any suggestions would be greatly appreciated!

    reset ACL's from the reset password window.
    http://pondini.org/OSX/Password.html
    more like this Reset Home Folder permissions and ACLs Error

  • How to reset iphone 5s to factory settings if iphone is disabled and if Home button is not working

    how to reset iphone 5s to factory settings if iphone is disabled and if Home button is not working?

    Visit an Authorized Apple Service Provider or Apple Store to get it serviced:
    iPhone - Contact Support - Apple Support

  • How do I restore the user to the home folder permissions?

    I just got an iMac from a friend and had changed the username and password for the administrator user.  Then I was going to change the home folder name.  I was looking at the info on the home folder (which at this point is still tied to the old user).  I inadvertantly removed the user from the permissions before adding the new username or even allowing all users to access the home folder.  Now I cannot access the home folder at all.  How do I restore the permissions to the home folder or add the user back to the allowed users with access to the home folder?

    dalefromdallas,
    First you should do a clean install of the computer, while your friend may have included apps, they do not belong to you unless your friend gave y ou the install media and license codes. Considering the machine is also running 10.9.2. this machine will be forever tied to his AppleID which exposes him financially. You should get the 10.6.X DVD from your friend (I'm assuming he upgrade from 10.6.x at some point) and do an erase and install, then update it to 10.6.8 then upgrade yourself to 10.9.2 Mavericks. Then you will have a clean system, otherwise you will be working with a pretty kludged system that will probably be trouble.

  • How can I completely reset home syncing?

    Portable Home Directories remains unreliable and buggy for me. I have a Mac mini server and two client machines: an iMac 2010 and a MBA 2009. I have tried everything I could find on the net about PHD syncing but have found it very buggy and unreliable. Currently:
    - when logging in as myself 50 conflicts are reported, but the remote file cannot be displayed (circular wait 'bar')
    - the client starts one after the other sync trying to do the same
    - Files removed on a client return form the server... sometimes
    - Unknown errors reported but files on both sides are identical (openssl md5 shows that)
    Home Syncing rules are managed always and controlled from Workgroup manager
    Currently, the situation is so bad that my main account has become unusable.I am looking for fail safe instructions to completely reset home syncing.

    I dont know about any complete reset but this is what i'd do.
    Make 100% sure that everything is on your machines by switching off airport and unplug then Network port then turn on and check everything is there. Proceed at own risk
    if it is and you know what your doing and happy that everything is backed up etc.
    Leve the computers off the network until the end
    On the Server for each accoun turn off mobile account syncing, creation etc everything in mobility preference should say never.
    Set your Home directory in Workgroup manager to None for each of the accounts
    Save new settings
    Delete both the accounts home folders on the server (you will need the correct permissions to do this) empty trash
    Reenable the home folders and create home on save
    Go to the mobility preferences and set create home folders when next login etc  Check the Use local home template option,  Dont set any other options in there yet except under rules -> home sync - Manage -once or always depends on what you want then Apply
    Reconnect the computers to the network (I always do this via ethernet not wireless, wireless sometimes causes problems) and restart and log into the account , it will sync away for a while (wireless can be used after the first sync)
    Change settings in the mobility after the full sync if you need to and are sure you know what each setting will effect.
    NOTE: If you have a huge iTunes library, Movies folder or Photos folder this can take ages perhaps think about taking them out of the sync.
    Home syncs always have errors depending on what files are open at the time of sync etc
    This is done from memory as i only had to do this about 2 weeks ago but i am fairly confident i didn't miss anything

  • My Itunes app went missing i reset home screen, checked restrictions and did spotlight search none worked, how can i find it?

    Tried spotlight search, checked restrictions, and reset home screen layout and cannot find itunes. How do i get it back?

    Frannie77 wrote:
    As I wrote, the camera icon on my brand new iphone 5 is gone. For this is a pre-installed app, wouldn't I usually not even be able to remove it from the screen? And I think there was a facetime app in the first place, when I got the phone on friday.
    Restarting the phone didn't help and connecting it to iTunes only showed, that the camera app isn't anywhere else to be restored. Which I already guessed, because the search function on my phone didn't show it either.
    On locked screen there is the camera symbol, but from day one (even when there actually was a camera app) it only jiggles, but does not start.
    This is a private, not a corporate phone.
    Settings/General/Restrictions - the camera has been disabled.
    It's also possible that the camera has been moved to another page of the Home screen or a folder. Go to search (press HOME when on the first page of the Home screen, or swipe it left to right) and search for "Camera".

Maybe you are looking for

  • Iphone failed restore, HELP!

    Deep breath!.....Few weeks ago i noticed a few problems starting with my iphone 3gs. First thing was that music that previously played fine stopped playing (but was still playing in Itunes) then video's taken on the iphone itself wouldn't play desite

  • Download file with cyrilic filename in Internet Explorer 8

    I have a problem when trying to download a file which name contains cyrillic symbols. I store the file in the database. I created a procedure, that I call using a link from my report to download the file. There aren't any problems when the filename c

  • Printing a PDF Booklet problem

    Hello, I have a PDF that I would like to print. When I go to my print options, in the lower left I can select "PDF Booklet." I select that option and it looks as though the pages are being compiled. But after a few moments, I get this warning: The ac

  • Oracle ADF refresh as deferred does not execute query on page load

    In the oracle ADF page I have two panel boxes. (Oracle ADF 11.1.1.4) a) Personal information panel box with PanelFormLayout (PersonalInfoViewObj) - ReadOnly View Object b) Address information panel box with Table (AddressInfoViewObj) - Read Only View

  • STO - How to control Over delivery ?

    Dear All, In STO Scenario, how to control the over delivery? Please note that I have already assigned a tolerance % in my Purchase Value key & same has been assinged to my material. Now when I create a STO for this material system is picking up this