Tagged Questions
SunOS is a version of the Unix operating system developed by Sun Microsystems for their workstation and server computer systems. The SunOS name is usually only used to refer to versions 1.0 to 4.1.4 of SunOS. These versions were based on BSD, while SunOS version 5.0 and later are based on UNIX System V Release 4, and are marketed under the brand name Solaris.
4
votes
2answers
151 views
How to link non thread-safe library so each thread will have its own global variables from it?
I have a program that I link with many libraries. I run my application on profiler and found out that most of the time is spent in "waiting" state after some network requests.
Those requests are ...
4
votes
2answers
3k views
how to get the command line args passed to a running process on unix/linux systems?
On SunOS there is pargs command that prints the command line aruguments passed to the running process.
Is there is any similar command on other Unix environments?
3
votes
1answer
69 views
Different search paths for tclsh
Any one knows how can I invoke the tclsh in the Tcl code due to different paths to tclsh in various platforms (Linux, SUN)?
For example in SUN:
#!/usr/bin/sun/tclsh
in Linux:
...
3
votes
2answers
2k views
Makefile error: Unexpected end of line seen
Trying to install Git, I ran configure and make, but got the following error message:
make: Fatal error in reader: Makefile,
line 221: Unexpected end of line seen
The Makefile looks like:
...
3
votes
1answer
218 views
Compiling boost on Sunos
I have just started with using boost libraries.
For one of our projects i want to compile Boost 1.39.0 on Sun OS using sun compiler. However if i compile it using steps mentioned in ...
3
votes
6answers
2k views
Getting the uptime of a SunOS UNIX box in seconds only
How do I determine the uptime on a SunOS UNIX box in seconds only?
On Linux, I could simply cat /proc/uptime & take the first argument:
cat /proc/uptime | awk '{print $1}'
I'm trying to do the ...
2
votes
2answers
99 views
Unnamed namespace and iostream result in “!= being illegal operation”
#include <functional>
#include <iostream>
struct A {
friend bool operator==( const A & a, const A & b ){
return true;
}
};
namespace {
bool operator!=( const ...
2
votes
1answer
107 views
SVN Server on NFS3 “Database is locked”
Despite a lots of topics about this error, I'm still having trouble with setting up av SVN Server. Server is running on Scientific Linux 6 and repositories are supposed to be stored via NFS3 on a ...
2
votes
1answer
132 views
Website showing PHP source
I have a server running on SunOS 5.1, and I'm having an issue with the source of a php file displaying. The source starts displaying after => when setting up an array. After the first => it displays ...
2
votes
2answers
129 views
How can I wrap an executable on UNIX (SunOS) so that it is never run more than once at the same time?
I have an executable (no source) that I need to wrap, to make sure that it is not called more than once at a time. I immediately think of some sort of queue wrapper, but how do I actually make it so ...
2
votes
1answer
837 views
How to capture shift-tab in vim
I want to use shift-tab for auto completion and shifting code blocks visually. I have been referring to Make_Shift-Tab_work . That link talks about mapping ^[[Z to shift-tab . But i don't get ^[[Z ...
2
votes
1answer
84 views
Counting program unaligned address accesses on Sun OS, AIX
How to count program unaligned address accesses on Sun OS and AIX. Or how to measure time to system handling this exception on Sun OS and AIX ?
1
vote
2answers
90 views
How to extract version from tnsping output in AIX,SUNOS,LINUX and HPUX
I want to fetch 10.2.0.4.0 from tnsping output in AIX, so i wrote tnsping tucson | grep Version | awk '{print $9}' but sometimes in other platforms like LINUX the column varies so I cannot use {print ...
1
vote
1answer
99 views
atomic operation implementation
i am using atomic operation provided by SunOs in <sys/atomic.h> , which is
void *atomic_cas_ptr(volatile void *target, void *cmp, void *newval);
now to make is usable, i have to check ...
1
vote
2answers
151 views
Kill application which has been catched OutOfMemoryError
I have weblogic in Solaris 10 environment. My application had been caught OutOfMemoryError.
My question about killing bad build of application from shell script, not about tuning java or my code.
...
1
vote
1answer
346 views
Installing mongodb on solaris — bin/mongod: cannot execute binary file
I am trying to install the latest mongodb on SUN OS 5.9 using package from http://www.mongodb.org/downloads.
After I unzip the package on solaris, I get the following error when I run the following
...
1
vote
1answer
676 views
How to find out the number of threads a process is using on Solaris?
I know the pid of the process. top -H -p <pid> works on Linux, but I am not able to get it running on Solaris:
$ top -H -p 3677
/usr/local/packages/top/bin/top-default: illegal option -- H
Top ...
1
vote
1answer
104 views
In which order does the linker process the library directories?
It is possible that more than one instance of the library exists in the search path during compilation. In what order will linker process directories included in the search path? The platform in ...
1
vote
2answers
558 views
C++ std::stringstream seemingly causes thread to hang or die under SunOS
I have an application developed under Linux with GCC 4.2 which makes quite heavy use of stringstreams to wrap and unwrap data being sent over the wire. (Because the Grid API I'm using demands it). ...
0
votes
3answers
42 views
Upgrade from Oracle 9.0 to Oracle 10.0 SunOS, fatal: libclntsh.so.9.0: open failed
We upgraded our DB Server from Oracle 9.0 to Oracle 10.0 under SunOS, but there is something wrong with linkage, since a lot of application stop working with libclntsh.so.9.0 error.
ldd sqlplus
...
0
votes
2answers
94 views
What is wrong with my shell script in SunOS, runs fine on other linux flavours
Please can someone identify what is the problem in my shell script, it works fine on other Linux systems except on Sunos below is my output
drifter% cat run.sh
#!/bin/sh -x
if [ ! $JAVA_HOME ] || [ ...
0
votes
0answers
31 views
sun make: filter function
I need to check several conditions in a if statement.
In gnu make I solved it by using the filter function, filter $(filter pattern...,text). This function is not available in sun make. I need to do ...
0
votes
4answers
134 views
Bash: How to make short delay?
How to make a short delay (for less than a second) in bash? The smallest time unit in sleep command is 1 sec. I am using bash 3.0 in SunOS 5.10.
0
votes
2answers
66 views
How to omit heading in df -k command of SunOs
Input: df -k
Output:
Filesystem kbytes used avail capacity Mounted on
/dev/dsk/c0t0d0s0 10332220 443748 9785150 5% /
/devices 0 0 0 0% ...
0
votes
1answer
40 views
regex for swap info in SunOs
swap command : /usr/sbin/swap -s
I even tried something like awk '/total/ {print $2}' /usr/sbin/swap -s but gives me error
swap output :
total: 12417784k bytes allocated + 2705800k reserved = ...
0
votes
1answer
600 views
get process name, pid and port mapping from netstat command in SunOS
I am trying to get the mapping of port number to application that is running/using the port in SunOS
$netstat -tlnp
netstat: illegal option -- t
It seems the -t option is illegal in SunOS.
how ...
0
votes
2answers
262 views
How to change shell in script temporary in sunOS?
The machine has default shell "sh" and running SunOS. I try to run the script like:
#!/bin/bash
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9
echo $NLS_LANG
I get the output:
...
0
votes
3answers
43 views
Building large application on SUN is hanging without any information
So I am trying to compile rather big application on SUN. Compiling it on AIX caused problem that command line buffer was too small (ARG_MAX)
On SUN it compiles successfully for most of application ...
0
votes
1answer
112 views
Strangeness using /usr/xpg4/bin/tr and /usr/bin/tr on Solaris 9
I have a file looking like this,
"xxxxxx"
"yyyyyy"
"aaaaaa"
"cccccc"
"bbbbbb"
"eeeeee"
"oooooo"
"zzzzzz"
Wanting to replace each \n in this file I use:
tr '\n' ',' < INPUT > OUTPUT
Which ...
0
votes
2answers
357 views
On solaris, is there a command to get the Ethernet Card MAC Address without being root
On Solaris, is there a command that I can run to get the MAC address of an ethernet card without running "/sbin/ifconfig -a" as root. Running /sbin/ifconfig -a as a non root user leaves out the MAC ...
0
votes
1answer
143 views
How do I make a hash with the output of kstat -p using Perl?
I am working so some stuffs where I need to get some information using kstat -p. So I am thinking to create a hash variable with all output of kstat -p.
Sample output from kstat -p
...
0
votes
2answers
257 views
How to convert netstat -in output on Sunos
On Sunos netstat -in gives me below output.
Name Mtu Net/Dest Address Ipkts Ierrs Opkts Oerrs Collis Queue
lo0 832 127.0.0.0 127.0.0.1 20026 0 20026 0 0 0 ...
0
votes
1answer
1k views
How can I use Solaris::Kstat on Solaris 5.10?
I am looking to find the SunOS system details using Kstat. I have found Solaris::Kstat module in CPAN but this only supports Solaris 2.5.1, 2.6 & 2.7. The Sun developer's site mentions a ...
0
votes
4answers
565 views
C++ app on SunOS has a memory leak. How to find it?
i just landed on SunOS:
$ uname -a
SunOS sunfi95 5.9 Generic_122300-13 sun4u sparc SUNW,Sun-Fire-880
and have Sun studio:
$ CC -V
CC: Sun C++ 5.8 2005/10/13
How I can find memleaks in code? (dbx ...
0
votes
4answers
856 views
Java memory allocation performance (SunOS vs Windows)
I have a very simple unit test that just allocates a lot of Strings:
public class AllocationSpeedTest extends TestCase {
public void testAllocation() throws Exception {
for (int i = 0; i ...
-2
votes
1answer
268 views
UNIX programming
Hi i want to convert UNIX date to normal date (YYYY-MM-DD)
22222,0,0,0,14387
33333,0,0,0,14170
44444,0,0,0,14244
55555,0,0,0,14190
66666,0,0,0,14528
77777,0,0,0,14200
88888,0,0,0,0
99999,0,0,0,0
...