i trying install activator in linux system.
so first install java
sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer
downloaded succefully
then downloaded activator
sudo wget downloads.typesafe.com/typesafe-activator/1.3.4/ypesafe-activator-1.3.4.zip
then added path
export path=$path:/home/govind/activator-1.3.4/
then reloaded bash by
source ~/.bashrc
then try start activator
govind@linuxserver:~$ sudo activator sudo: activator: command not found
i tried print path
govind@linuxserver:~$ $path -bash: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/govind/activator-1.3.4/: no such file or directory
but
govind@linuxserver:~$ ls /home/govind/activator-1.3.4/ activator activator-launch-1.3.4.jar readme.html templates activator.bat license.html repository
but not successfull!! missing??
create symbolic link activator:
sudo ln -s /home/govind/activator-1.3.4/activator /usr/bin/activator
you not need edit bashrc profile.
Comments
Post a Comment