Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 395  / 3 Years ago, tue, july 27, 2021, 2:21:01

The following is an extract of an instruction manual:



If Java is reconfigured after SAV for Linux has already been installed, the JAVA_HOME value in /etc/Symantec.conf must be updated.
This can be done manually, or automatically by running /opt/Symantec/symantec_antivirus/update_java_home.sh


How do I run update_java_home.sh? What specific commands must I issue?
What does the file extension .sh mean?



I am new to Linux and Ubuntu and would welcome detailed instructions on how to run update_java_home.sh


More From » java

 Answers
2

The file extension .sh means it is a shell script. If you dont know what a shell is you can read about it here. Any shell script file can be executed by typing its path (complete or relative) in shell and pressing enter:



adnan@laptop:~/>/some/path/script_name.sh
adnan@laptop:/some/path/>./script_name.sh


In your case the error is giving you complete path to the file update_java_home.sh. So just open Bash and write the following line



/opt/Symantec/symantec_antivirus/update_java_home.sh

[#33493] Thursday, July 29, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
heathree

Total Points: 157
Total Questions: 132
Total Answers: 108

Location: Honduras
Member since Mon, Apr 5, 2021
3 Years ago
;