0

I want to install aptana studio, with the terminal, but, to install it, I need to execute the .zip, so, how can I change the permissions ? ( if it is possible with the terminal please )

Xalsar
  • 145

1 Answers1

4

You don't want to "start" the archive: you want to unpack it! To do this, press Ctrl+Alt+T to go to a terminal and type:

unzip <your_zip>

To make a file executable use chmod:

chmod +x <your_file>

and start it with this command if you're in the same folder:

./<your_file>
Fabby
  • 35,017
A.B.
  • 92,125