I'm trying to install Oracle 18c on Ubuntu Server 16 When it reaches a point in the installation, it throws the error: "Failed to call destination install" There is documentation on how to install Oracle 12c in Ubuntu as: Tutorial in 12c
But I can not find the solution to this error. Some help? Thank you Greetings!
Update: I have also tried to copy the .mk files corresponding to the error according to this guide: Code61Blog
but without success.
Even as they say here: solution in the comment of user5212244
editing: env_plsql.mk Find:
LDFLAGS = -o $ @ $ (LDOBJSZ) $ (LDPLATFORMFLAGS) $ (LDPATHFLAG) $ (PRODLIBHOME) $ (LDPATHFLAG) $ (LIBHOME) $ (LDSTUBLIBS)
Modify to:
LDFLAGS = -o $ @ $ (LDOBJSZ) $ (LDPLATFORMFLAGS) $ (LDPATHFLAG) $ (PRODLIBHOME) $ (LDPATHFLAG) $ (LIBHOME) -Wl, - no-as-needed $ (LDSTUBLIBS)
But again without success.