Locking is not possible in the directory C:\eclipse\configuration\org.eclipse.osgi...

时间:2023-01-20 23:50:23

centos 安装ZendStudio出现如下错误:

ocking is not possible  in the directory C:\eclipse\configuration\org.eclipse.osgi. A common reason is that the file system or Runtime Environment does not support file locking
  for that location. Please choose a different location, or disable file locking passing  " -Dosgi.locking=none "
as a VM argument. C:\eclipse\configuration\org.eclipse.osgi.manager.fileTableLock (Access is denied)

 

其实是权限问题

 

 

Linux fix:

  1. Change permission of eclipse itself wherever you have it installed (in my case /opt/):

    sudo chmod -R 777 /opt/eclipse

  2. Change permission of workspace wherever you have it located (in my case ~/Documents/):

    sudo chmod -R 777 ~/Documents/workspace

Hope this helps my fellow Linux users!

You can try this on windows with the proper syntax.

Thanks to Frederik for your help!