Page 1 of 1

seadas

Posted: Thu Aug 01, 2024 9:17 pm America/New_York
by wang2579
New SeaDAS installation script "seadas_9.0.1_linux64_installer.sh" always stopped at line 702 with "Permission denied".
Older version SeaDAS-8 had smooth installations on the same Linux machine.

Thanks for help !

$ ./seadas_9.0.1_linux64_installer.sh
Verifying archive integrity... 100% MD5 checksums are OK. All good.
Uncompressing SeaDAS Application 100%
./seadas_9.0.1_linux64_installer.sh: line 702: ./start-install-script.sh: Permission denied

$ uname -a
Linux 5.14.0-467.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 19 12:08:12 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

Re: seadas

Posted: Sun Aug 04, 2024 12:13 am America/New_York
by oo_processing
Not an exact solution, just a few thoughts to start with:
"./start-install-script.sh: Permission denied" is usually because the file has no execute mode (x). The file is in the uncompressed target directory which is usually /tmp/something/.
I ran seadas_9.0.1_linux64_installer.sh in my machine, the start-install-script.sh had the x mode, so my installation had no issue.

Yuyuan

Re: seadas

Posted: Wed Aug 07, 2024 3:28 pm America/New_York
by OB ODPS - towens
can you run the umask command in the shell where you are running the installer. It should be 0022, 022 or 0002.

Tommy

Re: seadas

Posted: Fri Aug 09, 2024 8:25 am America/New_York
by wang2579
Yes, 0022.
Thanks !