symlink file error

1

Possible Duplicate:
Symlink error when installing MySQL via Homebrew

Similar to this question but have problems still trying to solve the issue.

I am trying to install mySQL and it keeps telling me it's not writable and that I should change its permission.

Now I did try all the answers but I still end up with the same error. Here are the codes I tried:

  • sudo chmod -R g+w /usr/local/lib
  • sudo chmod -R g+w /usr/local
  • sudo chown -R $(whoami) /usr/local/include
  • sudo chmod -R g+w /usr (desperate enough)

As for OS system I use I am using OSX Lion.

wesdfgfgd

Posted 2012-12-05T18:28:18.347

Reputation: 121

Question was closed 2012-12-05T23:28:38.450

Since you say it's the same question, but the existing answers don't help you, then instead of posting the same question again please consider commenting and/or adding a Bounty to the existing question to garner more/different answers

– Ƭᴇcʜιᴇ007 – 2012-12-05T18:31:01.110

@techie007 I don't think the OP has enough rep to do either of your suggestions. – terdon – 2012-12-05T18:31:42.663

The problem is probably that your user does not belong to the group that owns /usr/local/lib. Add your user to that group and try the commands again. – terdon – 2012-12-05T18:33:05.220

How do I do that terdon? sorry, I am still new with a mac. – wesdfgfgd – 2012-12-05T18:36:53.593

terdon you are right I got it I am able to link. – wesdfgfgd – 2012-12-05T18:43:37.450

@techie007, I wasn't disagreeing, I just wanted to point out that he could not do so hoping that you might have another suggestion that he could try since you've got a good deal more experience with SE than I :). In any case, I think its resolved now, voting to close. – terdon – 2012-12-05T19:00:29.613

@terdon I fully realize what you're saying and why it can be confusing. I'm not trying to argue anything, or bag on anyone, just spreading the info on how things are supposed to work around here. :) – Ƭᴇcʜιᴇ007 – 2012-12-05T19:14:39.743

No answers