Solaris is a Unix operating system originally developed by Sun Microsystems. Oracle Solaris, as it is now known, has been owned by Oracle Corporation since Oracle's acquisition of Sun in January 2010. Solaris is known for its scalability, especially on SPARC systems, and for originating many ...

learn more… | top users | synonyms

0
votes
1answer
34 views

The correct syntax of a quantifier in a regular expression pattern with grep in Solaris?

I have to search in many files with several lines, the lines with a telephone number of exactly ten digits. Examples of the lines: telephoneNumber: 66727166501 telephoneNumber: 6672716650 ...
1
vote
2answers
84 views

strftime '%z', (localtime) is not working as expected in solaris machines

I tried this code in linux machines, my $sysdate = strftime "%Y%m%d%T", (localtime); my $daylight_saving_time = strftime '%z', (localtime); i get below output, sysdate = 2013051402:12:02 ...
3
votes
1answer
111 views

Using pthreads and malloc

I asked a question Using sockets in multithread server yesterday. In this question I described segmentation fault under Solaris in multithreaded server. Now I have found the core of error and written ...
0
votes
1answer
42 views

Find command on Solaris 9 stopped working

I have seen this command working for a long time: find $dir -name $basename.[0-2][0-3][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-3][0-3][0-3] -exec rm -f {} \; Suddenly, it stopped working. I have ...
0
votes
1answer
55 views

sctp_bindx (Solaris sctp library) always return “Invalid argument”

I am writing a SCTP test program in Solaris OS, and use Solaris native SCTP stack. The program likes this: if ((fd = socket(AF_INET, SOCK_SEQPACKET, IPPROTO_SCTP)) < 0) { perror("socket"); } ...
0
votes
0answers
45 views

How do I include #ident strings with C++ code under Visual Studio 2010?

I've almost completed a VC6 -> VS2010 compiler migration and one of the last issues is to do with the use of #ident. We use the #ident string to compare versions between executables as the source ...
-1
votes
1answer
24 views

what is the equivalent of the instruction sed -i in solaris? [closed]

I am searching for the equivalent of this line: sed -e /$LINE/d -i TELS/telephonenumbers.txt It works fine in Ubuntu, Fedora, OpenSUSE and cygwin, but it does not work in Solaris, I find that I can ...
0
votes
0answers
32 views

Solaris 10 page tables (V to P translation)

I have been trying to find the mapping of virtual to physical addresses in Solaris 10's page tables, unfortunately without success. I believe the translation is three-level, so a 64b virtual address ...
1
vote
1answer
28 views

solaris recv infinite receiving

When you run this code, the response does not come. Soket is a state of being connected. So forever is in the standby state return value without not. please help me. ... sock = socket(PF_INET, ...
0
votes
1answer
237 views

java 7 error: Unable to load native library: ld.so.1: java: fatal: libscf.so.1: open failed: No such file or directory

I need to run java 7 in a solaris 5.9 sparc 64 bits, but when I run it, I get next error: $java -version Error occurred during initialization of VM Unable to load native library: ld.so.1: java: ...
0
votes
1answer
36 views

Empty core file on Solaris

My program crashes from time to time and dumping core. But when I am trying to get stack from the core file I get following result: mdb: core file data for mapping at 100000000 not saved: Interrupted ...
0
votes
0answers
23 views

How to check how many external hosts have mounted and accessing a solaris folder?

We have a local folder in a central Solaris machine(used as a repository) and would like to find out how many external hosts have currently mounted the folder and accessing the files. Is there any ...
0
votes
1answer
62 views

In solaris vsnprintf core dump in strlen function is any method to resolve this?

I am calling vsnprintf , as below If Vargs is NULL then vsnprintf coredump in strlen function,but same core work fine in other OS like linux , AIX .... Is there any solution for this ? I can't avoid ...
0
votes
1answer
67 views

Redirecting STDOUT and STDERR in Shell script

I have a script that uses the exec command to redirect STDOUT and STDERR to a file. The script works fine under Solaris 9. I am testing it on Solaris 10 on VMware and it fails at the exec command. ...
0
votes
0answers
28 views

solaris script for root device

echo "Determine the Solaris boot disk in cxtxdx format." BOOTPATH=`prtconf -pv | grep bootpath | tr -d "'" | awk '{ print $2 }'` if [ -n "`echo $BOOTPATH | grep "/disk"`" ] ; then # The bootpath ...
1
vote
2answers
108 views

How to convert date to string in unix shell

i need some help to convert date into a string i have an sql database running on my unix box which stores the date in str eg:1371509465 i would like to run a query to find if any future dates exist ...
0
votes
2answers
31 views

Determine if running on a console in illumos/solaris

There is a function used in Debian's X wrapper. This function determines whether X is running on a console (virtual terminal), it work on linux and freebsd. What are ways to do the same on ...
0
votes
2answers
60 views

Core dump when trying to access a pointer to a structure passed to a function in solaris

I have a quite complicated code in that is working fine on AIX but core dumping in Solaris. I tried to make it as simplified as possible. Below is a global structrue having a pointer to a function ...
0
votes
0answers
33 views

Solaris: Binary Compatibility of libSTLPort.so with libCstd.so?

I'm trying to connect ro MySQL Server using MySQL Client Library (libmysqlclient.so) from my C++ Program. This libmysqlclient.so on Solaris has a dependency with libstlport.so. libstlport.so.1 => ...
0
votes
2answers
263 views

shell script to execute multiple informatica work flows

I am relatively new to shell scripting and UNIX. I am using a Solaris box and the problem is that we have a shell script called strtwrfl.sh which takes a parameter as the workflow name and starts the ...
0
votes
0answers
20 views

Can existing Swap space on Solaris UFS be reduced? [closed]

Can existing Swap space on Solaris "UFS" be reduced with out re-imaging the OS?
0
votes
1answer
17 views

Compile libfaketime 64 bit in solaris11

I just tried to build libfaketime 64 bit in solaris11 and succeeded, while it just doesn’t work. base guideline: ...
0
votes
0answers
38 views

ZFS: if i wrong quantity of ram with dedup [closed]

what can happen if i've no enought GB of ram with a FZS with dedup option activated?
1
vote
0answers
46 views

solaris python setuptools install

i have a solaris host: SunOS blah 5.10 Generic_147441-27 i86pc i386 i86pc and i have python at /usr/bin/python $ /usr/bin/python Python 2.6.4 (r264:75706, Jun 26 2012, 21:27:36) [C] on sunos5 Type ...
0
votes
1answer
33 views

how to fix the dbx “MT support is disabled” error?

I loaded a core file of a program which is multi-threaded. I cannot list threads with below command. (dbx) threads dbx: MT support is disabled (dbx) However, I can list LWPs with lwps. On ...
0
votes
0answers
24 views

Java, Solaris : canExecutable function of File class returns true even if execute perms are not set

Following is the sample program I tried on a Solaris machine - public class FileHandling { private static FileWriter fstream; /** * @param args the command line arguments */ public static void ...
0
votes
1answer
192 views

shell script to find multiple strings in multiple files and then them like “string - filename”

I want to write a shell script which takes input from a file and search for that string in multiple file in a directory. I have successfully written a script which shows filename contains matched ...
0
votes
1answer
17 views

Determination and CLASSPATH installation in LINUX

Determination and CLASSPATH installation in LINUX Excuse for a silly question (I ask to treat with understanding, I in linux the beginner and replenish knowledge as required) but how to define ...
2
votes
1answer
51 views

Error messages when trying to run byobu in solaris

I was able to successfully perform './configure --prefix=/my/path;make;make install' on the byobu source code. I have also installed tmux-1.8. But when I try running byobu or byobu-tmux I ...
0
votes
0answers
69 views

GCC Compiles fine but Solaris Compiler doesn't?

source: svn checkout svn://dev.exiv2.org/svn/trunk (rev: 3019) My platform: Fedora 17 64-bit The following command works: ./configure CXX=/opt/oracle/solarisstudio12.3/bin/CC \ ...
0
votes
1answer
79 views

Macro in GCC works but in Solaris Compiler fails?

source: svn checkout svn://dev.exiv2.org/svn/trunk (Latest rev: 3020) My platform: Fedora 17 64-bit The following command works: cmake -DCMAKE_CXX_FLAGS=-library=stlport4 - ...
0
votes
3answers
40 views

How does Solaris SMF determine if something is to be in maintenance or to be restarted?

I have a daemon process that I wrote being executed by SMF. The problem is when an error occurs, I have fail code and then it will need to restart from scratch. Right now it is sending sys.exit(0) ...
0
votes
1answer
283 views

Bash create .tar.gz on Solaris

I'm writting a bash script, which should create a .tar.gz archive from specified directory including file structure. This is a homework and I need it to work on Solaris system my school uses. That ...
1
vote
1answer
106 views

linker option to ignore unused dependencies

I would like to remove all unused symbols from my compiled C++ binary. I saw this, which gives an overview using gcc, which is the toolchain I'm using: C/C++ gcc & ld - remove unused symbols ...
0
votes
1answer
50 views

Solaris unix, c-shell, redirecting xargs executed command output

Have no choice about the c-shell. It's what we use here. So I want to parse through current directory and all sub-directories looking for files of form *.utv and egrep each to look for a specific ...
0
votes
5answers
213 views

getting a previous date in bash/unix

I am looking to get previous date in unix / shell script . I am using the following code date -d ’1 day ago’ +’%Y/%m/%d’ But I am getting the following error. date: illegal option -- d As far as ...
0
votes
1answer
44 views

prstat on solaris - can you make it flash when size exceeds a limit?

I have been told to make prstat flash the background from white to black a few times when any value in the size category passes a threshold. Is there a way to edit the command and put this in here or ...
1
vote
2answers
223 views

Can I store file contents to a variable in a shell script?

Say I have a file file.txt with data (say '100') in it. I want to read the contents of this file to a variable for future processing. I want this to work on both Linux and Solaris. How can I do this?
0
votes
0answers
42 views

RPC communication between Linux and Solaris

I have a RPC server running in Solaris. I have a RPC client which is running fine in Solaris. When I compile and run the same code in Ubuntu, I am getting Error decoding arguments in the server. ...
8
votes
1answer
98 views

Does Boost C++ library support Solaris on Sparc?

I have been looking at Boost libraries for development of a cross-platform network server library. It is supposed to be used on Windows/Linux/Solaris. Does boost support these three? Only thing i can ...
0
votes
2answers
37 views

log4j is not working on solaris 10

I am creating a SOA application in which i configured log4j. I deployed the application on windows , then log4j is working fine, log file is creating on the specified file as well as log is printing ...
0
votes
0answers
32 views

Treatment of results of archiving

There is a row of problem files logs in linux in case of which opening there are error messages Cannot open remote file ...
0
votes
0answers
36 views

Using Zend IMAP functions segfaults on Solaris 10 with SMCphp

I am using the IMAP mail functions from the Zend library on a Solaris 10 (sparc) box using sunfreeware's PHP5 package (SMCphp) and getting segmentation faults! The following is a simple piece of code ...
0
votes
1answer
29 views

How to use mkdtemp in solaris

I am currently trying to build a 3rd party project (qt 5.0.1) for Solaris and am currently stuck with the following error: io/qtemporarydir.cpp: In member function 'void ...
-1
votes
1answer
70 views

malloc and snprintf bus core dump

Function which worked previously, suddenly refuses cooperation. More precisely this snippet: //If not, add to UIDS printf("line 78\n"); free(s2); printf("line 82\n"); char * ss = ...
0
votes
1answer
101 views

Unable to build Qt 5.0 on Solaris 10

I am currently working on a cross platform project in Qt. I am currently developing on Linux (Mint x64) but need to deploy parts of the project to a Solaris 10 server. I have been trying to build ...
0
votes
1answer
63 views

Wrong value of UID in stat() and wrong pr_pid in psinfo_t

My function reads process list from /proc, then read process psinfo file into proper sturcture, as well as data about this file, and prints it. The problem is, some of the data in those structures is ...
0
votes
1answer
81 views

Solaris 11 XOpenDisplay return NULL

I am getting problem while running following program over Solaris 11. The XOpenDisplay function always return NULL. The same program run fine over Solaris 10. #include <stdio.h> #include ...
0
votes
1answer
84 views

Why does strftime uppercase flag '^' not work?

I have the following command $(perl -e 'use POSIX;print strftime "%d-%^b-%Y",localtime time-86400;') which works on Red Hat Linux box, but not on a Sun Solaris 9 box. Question 1: From what I read ...
0
votes
1answer
37 views

remove groups of spaces

I have a text file where I want to remove groups of 2 or more space characters for each line. Here is an example of a line: Company Management Company Management ...

1 2 3 4 5 27