Skip to content

Instantly share code, notes, and snippets.

@63phc
Last active December 9, 2016 06:37
Show Gist options
  • Select an option

  • Save 63phc/676a76391d63f52818dbd350fce0f246 to your computer and use it in GitHub Desktop.

Select an option

Save 63phc/676a76391d63f52818dbd350fce0f246 to your computer and use it in GitHub Desktop.
Commands4Programms2Ubuntu.16.04
#####################################
///for phpstorm
sudo apt-get purge openjdk*
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
///download phpstorm off site
///переносим скачанный архив в папку /opt/.
sudo mv PhpStorm-2016.1.2.tar.gz /opt/
cd /opt/
///check version.
sudo tar -xzvf /opt/PhpStorm-2016.2.tar.gz
Ключ -x - извлечь файлы из архива (extract)
Ключ -z - пропустить архив через gzip
Ключ -v - вывести подробный листинг обрабатываемых файлов (verbose)
Ключ -f й файл
//start
sudo ./phpstorm.sh
######################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment