Currently in my Mac I have these JAVA versions:
MyMac$ cd /Library/Java/JavaVirtualMachines
$ ls -la
total 0
drwxr-xr-x 4 root wheel 136 17 Oct 11:21 .
drwxrwxr-x 5 root wheel 170 17 Oct 11:21 ..
drwxr-xr-x 3 root wheel 102 14 Jul 22:52 1.6.0.jdk
drwxr-xr-x 3 root wheel 102 17 Oct 11:16 jdk1.7.0_79.jdk
What I am trying to do is change the symbolic link to point to JDK 7 instead of JDK 6:
$cd /System/Library/Frameworks/JavaVM.framework/Versions
$ls -la
drwxr-xr-x 11 root wheel 374 17 Oct 11:21 .
drwxr-xr-x 10 root wheel 340 17 Oct 11:21 ..
lrwxr-xr-x 1 root wheel 10 17 Oct 11:21 1.4 -> CurrentJDK
lrwxr-xr-x 1 root wheel 10 17 Oct 11:21 1.4.2 -> CurrentJDK
lrwxr-xr-x 1 root wheel 10 17 Oct 11:21 1.5 -> CurrentJDK
lrwxr-xr-x 1 root wheel 10 17 Oct 11:21 1.5.0 -> CurrentJDK
lrwxr-xr-x 1 root wheel 10 17 Oct 11:21 1.6 -> CurrentJDK
lrwxr-xr-x 1 root wheel 10 17 Oct 11:21 1.6.0 -> CurrentJDK
drwxr-xr-x 8 root wheel 272 17 Oct 11:21 A
lrwxr-xr-x 1 root wheel 1 17 Oct 11:21 Current -> A
lrwxr-xr-x 1 root wheel 52 17 Oct 11:21 CurrentJDK -> /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents
Unfortunately I cannot remove the link. I am getting an operation not permitted error:
sudo rm CurrentJDK
rm: CurrentJDK: Operation not permitted
Any ideas?
Thank you!