Xcode developer help
iMac Late 2009, Mac OS X (10.6.4), iMac, iPod Touch 2nd Generation w/ OS 3.1.3, iPod Nano 3rd Generation,
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
iMac Late 2009, Mac OS X (10.6.4), iMac, iPod Touch 2nd Generation w/ OS 3.1.3, iPod Nano 3rd Generation,
Standard user accounts are be asked to authorize developer privileges with either an admin or developer
group user and password once per log-in session when debugging or using the performance tools.
You can add your user to the
_developer group. Note that there is also a
Developer forum.sudo dscl . append /Groups/_developer GroupMembership <username>
sudo dscl . append /Groups/_developer GroupMembership appleaka
... and as etresoft mentioned đ , you will need administrative access (I use a standard account myself, but am the admin).Unfortunately adding over 300 constantly changing users to almost 300 machines isn't an option for me.
Instead of adding users to _lpadmin, I can change /etc/cups/cupsd.conf to give mere mortals the power
to unpause a printer. If there isn't anything that I can change in my image to make it work including file
perms, is there something I can do in Workgroup Manager using an AD group to populate _developer?
Bumping this response as I'm in the same boat. I have an instructor that wants to teach XCode, but it keeps asking for an admin password. My knee jerk reaction is to create an AD group and give them to run Xcode as an admin.
So much easier, and quicker to create an AD group . . . . she teaches in several classrooms and I just don't plain have the time to manually enter 20+ users on all those machines.
Anyone done the above and can live to tell the tale đ
I am also facing this issue with Xcode 6.x installed in public labs at university. I have no idea who may want to run and use Xcode in the labs, so have no 'list' to even add to the Developers Group on my master image, or to an AD group (which wouldn't be allowed by the AD admins anyway).
Open to any other suggestions or workarounds anyone may have found.
Cheryl
Install a login script:
#! /bin/bash
dscl . append /Groups/_developer GroupMembership $1
exit 0
on your clients. This will be executed will root privileges and be passed the username logging in as $1. You can use profiles or MCX to set this up, choose your poison.
C.
When I do the terminal it won't let me type in my password. What do I do?
The password is not echoed to the Terminal - just type it in and press return.
Xcode developer help