Having an issue getting DCS to run on a Solaris 11 server with x86 architecture. The package installs fine, but IPS and UTIL daemons won't start
Symantec Datacenter Security Agent
Release : 6.9.x
libgcc_s.so.1 is liked to a /usr/local/lib/libgcc_s.so.1 and not to /usr/lib/libgcc_s.so.1
Change the libgcc_s.so.1 link to link to the /usr/lib/libgcc_s.so.1 file
cd to where the current link is stored (aka directory)
//check that the file libgcc_s.so.1 is the link (and not the binary)
ls -lart (make sure libgcc_s.so.1 has the "l" as the first character (for link))
//remove the link
rm libgcc_s.so.1
//add the new link
ln -sf /usr/lib/libgcc_s.so.1 libgcc_s.so.1