-
|
Hi All, I am trying to install LME on a new server and I am at the part 4.2.2. and when i run the curl command with and without sudo I am getting the following "Failed to open the file LME-2.1.0.zip: permission denied" Is anyone else getting this? I am copying the command as listed on the site. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
It is likely you created the zip with root. If you do an cd ~
unzip -d ~/LME LME-2.1.0.zip |
Beta Was this translation helpful? Give feedback.
-
|
awesome, that seemed to have done the trick, thank you! |
Beta Was this translation helpful? Give feedback.
It is likely you created the zip with root. If you do an
ls -layou can check the ownership.Change the owner to your user using
sudo chown youuser:youruser LME-2.1.0.zip.Move the zip file to your regular user's home directory.
mv LME-2.1.0.zip ~Then unzip it.