-1

I am trying to install sqldeveloper. I tried to extract the zip file in /opt but it shows this error:

you don't have the right permission to extract archives in the folder "opt".

I tried changing the permissions using chmod 777/opt-R but that also didn't work.

Please suggest what to do.

Zanna
  • 72,312

1 Answers1

2

sudo privileges are required to make changes in /opt directory.

Use this command to extract file.zip in /opt.

sudo unzip file.zip -d /opt
Rahul
  • 1,683