Tagged Questions

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 innovative features such as DTrace, ZFS and Time Slider. Solaris supports SPARC-based and x86-based workstations and servers from Sun and other vendors.

learn more… | top users | synonyms

17
votes
6answers
2k 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 ...
14
votes
1answer
2k views

P/Invoke in Mono

What's the current status of Mono's Platform Invoke implementation on Linux? And on Solaris?
12
votes
2answers
731 views

How to test your code on a machine with big-endian architecture?

Both ideone.com and codepad.org have Little-Endian architechtures. I want to test my code on some machine with Big-Endian architechture (for example - Solaris - which I don't have). Is there some ...
11
votes
14answers
8k views

Best OS for java development? [closed]

What is the best OS for Java development? People from Sun are pushing the Solaris, yes Solaris have some extra features included in itself such as (dTrace, possibility for Performance tuning the JVM, ...
10
votes
7answers
24k 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?
8
votes
5answers
31k views

Comprehensive methods of viewing memory usage on Solaris

On Linux, the "top" command shows a detailed but high level overview of your memory usage, showing: Total Memory, Used Memory, Free Memory, Buffer Usage, Cache Usage, Swap size and Swap Usage. My ...
8
votes
12answers
11k views

How do I get the unix find command to print out the file size with the file name?

If I issue the find command as follows: $find . -name *.ear It prints out: ./dir1/dir2/earFile1.ear ./dir1/dir2/earFile2.ear ./dir1/dir3/earFile1.ear What I want to 'print' to the command line ...
7
votes
11answers
7k views

Get the date (a day before current time) in Bash

How can I print the date which is a day before current time in Bash?
7
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 ...
7
votes
7answers
17k 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 ...
6
votes
4answers
1k views

Setting java to use one cpu

I have an application that has a license for a set number of cpus and I want to be able to set the number of cpus that java runs in to 1 before the check is done. I am running Solaris and have looked ...
6
votes
6answers
4k 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 ...
6
votes
5answers
6k views

Files being used by a unix process

The fuser command lets me know which processes are using a file or directory. I'm looking for command that does the opposite: lets me know which files are being used by a process. Update Forgot ...
5
votes
3answers
40 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 ...
5
votes
2answers
160 views

How can a Solaris process read its own symbol table?

I have a Solaris process, which is a C++ application that is loaded by ld with a few .so libraries. This application has a function that gets a return address in the calling function and then tries to ...
5
votes
5answers
127 views

C libraries are distributed along with compilers or directly by the OS?

As per my understanding, C libraries must be distributed along with compilers. For example, GCC must be distributing it's own C library and Forte must be distributing it's own C library. Is my ...
5
votes
3answers
117 views

*nix configuration file storage convention?

Might be a candidate for SuperUser, but thought I'd try here first as the question came up for a programming project. Is there a *nix (targeting Solaris, Linux, and OS X) convention for where ...
5
votes
1answer
423 views

Java has a 39G core dump

I'm running a weblogic server on solarix x86 - 64bit with the command line: -Xrs -Xms4096m -Xmx4096m -XX:MaxPermSize=256m -da ... so the max heap size should be 4G, however after a night, it ...
5
votes
5answers
687 views

Move/copy files/folder in linux/solaris using only bash built-ins

There was a situation when somebody moved the whole rootdir into a subdir on a remote system, thus all the system tools like cp, mv, etc didn't work anymore. We had an active session though but ...
5
votes
3answers
524 views

Mini Project: Change the color of the terminal based on the time of day

Good Evening, I am pretty new to Unix so maybe this mini project is too ambitious. Hoping someone could point in in the right direction. Working in a cubicle and I can't see how light it is ...
5
votes
10answers
658 views

Need a good book to help me learn bash, solaris and unix in general

Just started a new coop workterm and using a solaris machine with bash as my shell. Know basic commands in bash: ls, pwd, find, cd, mkdir, rm, grep ... That is basically all I need to do my job ...
5
votes
1answer
1k views

How to debug JNI/C library?

We have system here that uses Java JNI to call a function in a C library. Everything running on Solaris. I have a problem somewhere with string encoding. An arabic character is returned by the ...
5
votes
5answers
9k views

Where to set LD_LIBRARY_PATH on solaris?

What is the best place to set up application specific LD _LIBRARY _PATH variable on solaris? How does LD_LIBRARY_PATH variable work? We currently set it up in .kshrc, but different ...
5
votes
6answers
11k 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. ...
5
votes
6answers
680 views

High availability and scalable platform for Java/C++ on Solaris

I have an application that's a mix of Java and C++ on Solaris. The Java aspects of the code run the web UI and establish state on the devices that we're talking to, and the C++ code does the real-time ...
4
votes
3answers
86 views

Some puzzles about std::basic_string on solaris (x86)

Some puzzles about std::basic_string on solaris (x86) #include <iostream> #include <string> int main() { const wchar_t* s = L"abcdef"; std::wstring ws(s, s+6); for(int i = 0; ...
4
votes
1answer
94 views

Why does sun C++ compiler change symbol names when compiling with debug infos?

I have this source file: // ConstPointer.cpp const short * const const_short_p_const = 0; const short * const_short_p = 0; and compiled it with and without debug infos (SUN C++ Compiler 5.10): # ...
4
votes
1answer
152 views

R Performance Differential (Solaris vs Windows)

I noticed an interesting problem. If I run the following code in R 2.12.0 (32-Bit) on a windows 3.00 gHz Core 2 Duo CPU with 2GB of RAM, it runs in less than one second. If I run it on a unix-box ...
4
votes
1answer
320 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 ...
4
votes
2answers
214 views

Connecting to MySQL using mono on Solaris

I'm trying to use a MySQL database using mono 2.8.1 on Solaris 10. To do that, I'm trying to use the official MySQL Connector/Net. But I'm getting the following exception: ...
4
votes
2answers
105 views

perl doing different things on two different platforms

On Mac OSX, this works fine with perl perl -v This is perl, v5.8.9 built for darwin-2level perl -e 'sub test {}' But on Solaris perl -v This is perl, v5.8.8 built for i86pc-solaris-thread-multi ...
4
votes
1answer
225 views

What DTrace scripts makes it worthwhile to test and profile Java programs on Solaris

I have found the DTrace intriguing but have personally failed to see a use-case that allow me to get information that I cannot get otherwise anyway without using DTrace. Hence, I would like to hear ...
4
votes
1answer
115 views

Why always 6 parameters are shown for functions in a callstack generated on Solaris?

Why do the functions displayed in a callstack generated in Solaris always contain 6 parameters? In most of the cases, the original function will not be having 6 parameters at all. Sometimes I also ...
4
votes
4answers
737 views

Running JAVA on Windows Intel vs Solaris Sparc (T1000)

Hi I'm trying to test my JAVA app on Solaris Sparc and I'm getting some weird behavior. I'm not looking for flame wars. I just curious to know what is is happening or what is wrong... I'm running the ...
4
votes
2answers
418 views

32-bit Java on 64-bit OS: is there a limit to number of JVMs?

I have a Solaris sparc (64-bit) server, which has 16 GB of memory. There are a lot of small Java processes running on it, but today I got the "Could not reserve enough space for object heap" error ...
4
votes
3answers
507 views

C++ How to get a filename (and path) of the executing .so module in Unix

C++ How to get a filename (and path) of the executing .so module in Unix? Something similar to GetModuleFileName on Windows.
4
votes
3answers
566 views

How can I find out the original username a process was started with?

There is a perl script that needs to run as root but we must make sure the user who runs the script did not log-in originally as user 'foo' as it will be removed during the script. So how can I find ...
4
votes
4answers
994 views

Blocking recv call hangs if server is down

Another socket problem. In my client code, I am sending some packet and expectign some response from the server side: send() recv() <-- it is blocking Immediately after send(), the ...
4
votes
4answers
2k views

Bash for loop with wildcards and hidden files

Just witting a simple shell script and little confused: Here is my script: % for f in $FILES; do echo "Processing $f file.."; done The Command: ls -la | grep bash produces: % ls -a | grep ...
4
votes
2answers
258 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 ...
4
votes
10answers
2k views

nanoseconds to milliseconds - fast division by 1000000

I'm wanting to convert the output from gethrtime to milliseconds. The obvious way to do this is to divide by 1000000. However, I'm doing this quite often and wonder if it could become a bottleneck. ...
4
votes
1answer
1k views

thread performance on Linux vs. Solaris

This Linux Magazine article http://www.linux-mag.com/id/792 explains the difference in the way threads are implemented in Linux as compared to commercial Unixs such as Solaris. In summary, Linux uses ...
4
votes
4answers
369 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
8answers
7k views

Map sd?/sdd? names to Solaris disk names?

Some commands in Solaris (such as iostat) report disk related information using disk names such as sd0 or sdd2. Is there a consistent way to map these names back to the standard /dev/dsk/c?t?d?s? disk ...
4
votes
2answers
240 views

Relation between Opensolaris source and Solaris releases

The source code available for OpenSolaris is very useful for finding out about the internals of Solaris (together with dtrace and mdb). However, as far as I know there is no way of finding out exactly ...
4
votes
5answers
932 views

GCC/ELF - from where comes my symbol?

There is an executable that is dynamically linked to number of shared objects. How can I determine, to which of them some symbol (imported into executable) belongs ? If there are more than one ...
4
votes
2answers
2k views

What's the Solaris equivalent to the BSD's 'tail -n100'?

I've looked this up a thousand times, and I always forget it, so, here for eternity: Solaris has a bit of an awkward syntax for tail. How do I do the equivalent of BSD's tail -nN? What I want are ...
4
votes
2answers
5k 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 ...
4
votes
8answers
2k views

File and directory with same name in same parent directory - Solaris 8, ufs

Ok, I have been working with Solaris for a 10+ years, and have never seen this... I have a directory listing which includes both a file and subdirectory with the same name: -rw-r--r-- 1 root ...
4
votes
7answers
791 views

What is your experience with Sun CoolThreads technology?

My project has some money to spend before the end of the fiscal year and we are considering replacing a Sun-Fire-V490 server we've had for a few years. One option we are looking at is the CoolThreads ...

1 2 3 4 5 17