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

5
votes
5answers
2k views

How to make YY_INPUT point to a string rather than stdin in Lex & Yacc (Solaris)

I want my yylex() to parse a string rather than a file or standard input. How can I do it with the Lex and Yacc provided with Solaris?
4
votes
2answers
883 views

Locate bad memory access on Solaris

On Linux, FreeBSD and other systems I have valgrind for checking for memory errors like invalid reads and similar. I really love valgrind. Now I have to test code on Solaris/OpenSolaris and can't find ...
6
votes
11answers
15k views

Too many open file handles

I'm working on a huge legacy Java application, with a lot of handwritten stuff, which nowadays you'd let a framework handle. The problem I'm facing right now is that we are running out of file ...
3
votes
8answers
5k views

Redirect output from sed 's/c/d/' myFile to myFile

I am using sed in a script to do a replace and I want to have the replaced file overwrite the file. Normally I think that you would use this: % sed -i 's/cat/dog/' manipulate sed: illegal option -- ...
3
votes
6answers
3k views

Paramiko and exec_command - killing remote process?

I'm using Paramiko to tail -f a file on a remote server. Previously, we were running this via ssh -t, but that proved flaky, and the -t caused issues with our remote scheduling system. My question ...
2
votes
2answers
15k views

How to use S_ISREG() and S_ISDIR() POSIX Macros?

This is a C program I wrote to recursively navigate and output directories and regular files. It compiles and runs fine on my Linux machine. But on Solaris, the dit->d_type == 8 check and the ...
14
votes
7answers
35k views

Solaris Core dump analysis

I use pstack to analyze core dump files in Solaris How else can I analyze the core dump from solaris? What commands can be used to do this? What other information will be available from the dump?
6
votes
1answer
2k views

Very Large Mnesia Tables in Production

We are using Mnesia as a primary Database for a very large system. Mnesia Fragmented Tables have behaved so well over the testing period. System has got about 15 tables, each replicated across 2 sites ...
18
votes
6answers
3k views

JVM OutOfMemory error “death spiral” (not memory leak)

We have recently been migrating a number of applications from running under RedHat linux JDK1.6.0_03 to Solaris 10u8 JDK1.6.0_16 (much higher spec machines) and we have noticed what seems to be a ...
9
votes
6answers
16k views

How does the 'ls' command work in Linux/Unix?

I would like to know exactly how the "Is" command works in Linux and Unix. As far as I know, ls forks & exec to the linux/unix shell and then gets the output (of the current file tree. ...
3
votes
2answers
705 views

Erlang and its consumption of Heap Memory

I have been running a highly concurrent application on my HP Proliant Servers. The application is a file system indexer i coded in erlang. It spawns a process per Folder it finds on the file system ...
7
votes
6answers
8k views

How to tie a network connection to a PID without using lsof or netstat?

Is there a way to tie a network connection to a PID (process ID) without forking to lsof or netstat? Currently lsof is being used to poll what connections belong which process ID. However lsof or ...
4
votes
4answers
4k views

jps returns no output even when java processes are running

I'm trying to debug some issues with java processes on a Solaris box, but running jps returns no output. And jstack gives the error 'Permission denied'. The box is part of a cluster of 3 identical ...
4
votes
1answer
2k views

Freeing of allocated memory in Solaris/Linux

I have written a small program and compiled it under Solaris/Linux platform to measure the performance of applying this code to my application. The program is written in such a way, initially using a ...
4
votes
3answers
5k views

Solaris GDB: Howto pause execution?

I am using GDB to debug a closed source program on Solaris 10 x86. I attach gdb to the program and continue execution, however when I want to pause execution later to examine some memory I cant. When ...
3
votes
1answer
3k views

cannot find -lmysqlclient

I'm trying to compile a C++ program and one of the classes uses . g++ is not able to find the libraries would be my guess. The command i use to compile is - g++ c1.cpp c2.cpp c3.cpp c4.cpp -o c4 -lm ...
3
votes
3answers
2k views

Solaris: Programmatic interface to ifconfig?

I'm looking for a programmatic interface to the Solaris ifconfig(1M) command. Apparently Linux has the getifaddrs(3) command, but as far as I can tell this has not been ported to Solaris. Short of ...
0
votes
2answers
497 views

Adding User License Agreement in Solaris package

I have asked similar question for Linux RPM (http://stackoverflow.com/questions/2132828/adding-license-agreement-in-rpm-package). Now i have same query for Solaris package. I could not get any helpful ...
11
votes
2answers
6k views

sed -i + what the same option in SOLARIS

I use the following sed command in UNIX Solaris From SOLARIS machine sed -i '$ s/OLD/NEW/g' test sed: illegal option -- i can some one have idea what the illegal option in Solaris (in ...
4
votes
1answer
2k views

Computation of Cpu percentage by a single process in unix by the “top” command

I would like to know how does the "top" command compute the cpu percentage used by any process. I have tried reading the "psinfo" binary file in the /proc directory , but it didnt help in finding the ...
3
votes
1answer
225 views

Solaris 10 CC Preprocessor bug causes undefined symbols

I have a very very simple C++ file as follows that I'm compiling on Solaris 5-10 with the CC compiler. Here is the source code in my file myTest.C: #include <map> std::map<int, bool> ...
2
votes
5answers
1k views

Join lines based on pattern

I have the following file: test 1 My 2 Hi 3 i need a way to use cat ,grep or awk to give the following output: test1 My2 Hi3 How can i achieve this in a single command? something like cat ...
2
votes
3answers
602 views

Gettin line number of the called function

Please let me know if I can do it or not? I am writing a library that could work to track memory allocation and de-allocation in C++. In short, I am trying to see if my application does not have any ...
2
votes
4answers
612 views

Any book that covers internals of recent versions of Unix OS [closed]

This summer I'm getting into UNIX (mostly *BSD) development. I've graduate level knowledge about operating systems. I can also understand the code & read from here and there but the thing is I ...
1
vote
0answers
253 views

Error of start of hadoop of the program:PriviledgedActionException

I wrote following program using namespace std; #include "hadoop/Pipes.hh" #include "hadoop/TemplateFactory.hh" #include "hadoop/StringUtils.hh" #include "libpq-fe.h" extern "C" { #include ...
0
votes
7answers
880 views

Is the const value parameter in definition but not declaration really C++?

This is similar to (but different from) this question. Here is some simple test code to illustrate some weridness I have discovered with Sun CC: //---------------main.cpp #include "wtc.hpp" int ...
18
votes
1answer
3k views

P/Invoke in Mono

What's the current status of Mono's Platform Invoke implementation on Linux? And on Solaris?
13
votes
8answers
42k views

What process is listening on a certain port on Solaris?

So I log into a Solaris box, try to start Apache, and find that there is already a process listening on port 80, and it's not Apache. Our boxes don't have lsof installed, so I can't query with that. I ...
9
votes
7answers
2k views

How can I create a portable perl when I can't install modules on the target host?

I need to run Perl applications I develop on cygwin Windows on HP unix / Solaris hosts. I am not a superuser on the unix machines and I can't touch the default Perl module location nor can I install ...
10
votes
5answers
11k views

Installing GCC on Oracle Solaris 11

i recently got Oracle Solaris on my VM to test some code on it, i was unable to install gcc since i dont really know how, i googled alot but all info is about oracle compilers, i needed GCC, any idea ...
4
votes
1answer
1k views

How to exclude a list of full directory paths in find command on Solaris

I have a very specific need to find unowned files and directories in Solaris using a script, and need to be able to exclude full directory paths from the find because they contain potentially ...
6
votes
3answers
2k views

escaping newlines in sed replacement string

Here are my attempts to replace a b character with a newline using sed while running bash $> echo 'abc' | sed 's/b/\n/' anc no, that's not it $> echo 'abc' | sed 's/b/\\n/' a\nc no, that's ...
6
votes
4answers
3k views

NSIS support for Linux and Solaris

Does NSIS support Linux and Solaris? I read somewhere that we can compile nsis script on Linux but cant execute the .exe generated on any other platforms but Windows. Can somebody put more light in ...
5
votes
4answers
523 views

Why should the shebang line always be the first line?

I have simple perl script as below: #!/usr/bin/perl use strict; use warnings; print "hello ! world\n"; i can execute this script as below: >temp.pl hello ! world > if i add some comments ...
1
vote
5answers
4k views

How to get process info programmatically in C/C++ from a Solaris system?

Is there a C/C++ library, and documentation about how to collect system and process information on Solaris? Although I could parse command-line tools, I'd rather use a library that makes the task ...
3
votes
8answers
8k views

How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?

I am involved in the process of porting a system containing several hundreds of ksh scripts from AIX, Solaris and HPUX to Linux. I have come across the following difference in the way ksh behaves on ...
2
votes
1answer
152 views

Tool for Library Dependency

I'm looking for the tools/commands on Unix platform to detect the library dependencies of the .so and .o files. I have already used the ldd/nm/truss, but I don't know the proper approach to detect ...
2
votes
2answers
639 views

Why can't I build Perl modules that load Socket.so on Solaris 10?

I am trying to build Convert::ASN1 module but I get an error in the process. I am using Perl 5.12.0 on Solaris 10. perl Makefile.PL runs without trouble, same for make, but 'make test' throws this ...
2
votes
1answer
1k views

Single line comment - unable to compile on solaris

I'm trying to compile a C program on Solaris. It's complaining on lines having comments starting with //. I'm new to solaris. Please suggest a solution. ss0iconv.c // This is line 193 Output: ...
2
votes
4answers
2k views

Can someone explain this definition of the 'dirent' struct in Solaris?

Recently I was looking at the 'dirent' structure (in dirent.h) and was a little puzzled by its definition. NOTE: This header file is from a Solaris machine at my school. typedef struct dirent { ...
1
vote
2answers
5k views

How do I configure proxy settings for Java in Solaris to handle Proxy Auto Config (PAC) scripts?

I would like to configure Java proxy settings on Solaris to use a Proxy Auto Config (PAC) scriptt. I have found instructions for making the settings on a Windows machine using the Java control ...
0
votes
5answers
1k views

how can I continously run a unix script in background without using crontab.

how can I continously run a script in background without using crontab. The script should run even after I logout and is acceptable if it doesen't start after system reboot.I am new to unix.
0
votes
3answers
2k views

Writing a command line shell with C; trying to use ncurses/C for the first time

I'm working on a class project in which I must write a command line shell with the following requirements: The shell must able to read buffered input Buffer should be 64 characters Error conditions ...
5
votes
4answers
477 views

Mismatch between constructor definition and declaration

I had the following C++ code, where the argument to my constructor in the declaration had different constness than the definition of the constructor. //testClass.hpp class testClass { public: ...
4
votes
0answers
411 views

Tee does not exit after pipeline it's on has finished [closed]

So, I've got a rather long and involved script intended to be used by people who aren't going to want to dig into anything that goes wrong. Recently, during testing, the script froze inexplicably. ...
4
votes
2answers
6k views

How can I kill a whole process tree with Perl?

What's the best way to kill a process and all its child processes from a Perl script? It should run at least under Linux and Solaris, and not require installation of any additional packages. My guess ...
3
votes
2answers
366 views

TCP Servers: Drop Connection, instead of resetting or responding?

Is it possible in Node.JS to "drop" a connection in such a way that The client never receives a response (200, 404 or otherwise) The client is never notified that the connection is terminated (never ...
3
votes
4answers
2k views

Delete files with special characters in filenames

I need to delete old files with special characters in filenames like space,,,(,),! and so on via PHP. Classic unlink($filename) does not work for these files. How can I transform filenames to ...
3
votes
4answers
776 views

How do I know if an C program's executable is run in foreground or background?

In my C program I want to know if my executable is run in foreground like this $./a.out or like this $./a.out &
3
votes
3answers
1k views

SIGALRM while sleeping on Solaris 9

I'm running into a bit of a weird error while running Perl in a chroot environment on Solaris 9 (Sparc). We are using a custom Perl, but it's almost exactly Perl 5.8.7, and this version has been ...

1 2