I am working on Sun Netra T5220, and working on project Session border controller(SBC). In one of the step I had to follow this procedure "copy the binary to a folder and run OPenSBC". Can any body help me which binary file, I need to put on the folder and the way how to find the binary file?
|
feedback
|
migrated from stackoverflow.com Feb 23 '10 at 18:19
This question came from our site for professional and enthusiast programmers.
|
"and run OPenSBC" ? see if there's a file called "OPenSBC" and then go to the directory where its stored and do | |||
|
feedback
|
|
Solaris should come equipped with the good old find / -type f -name "OPenSBC" If you are unsure on the case: find / -type f -iname "opensbc" If you have a good idea of where the file is, you can use a different loation as your starting point: find /etc -type f -iname "opensbc" to provide you with a better answer we'll need more details on this "binary file". We only know as much as you've told us :) | |||||
feedback
|