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
93 views

Same piped call to isql works on Solaris but not on RHEL

Background: I need to port a ksh script from SunOS 5.10 to RHEL 5.8. It makes a call to isql to retrieve some data and, quite contrary to the intended application of final endpoint client utilities ...
0
votes
2answers
81 views

creating and using a dynamic shared library on solaris

I am reading the procedure to create and use a dynamic shared library on solaris sparc server. below are the file i have : > ls -lrt total 8 -rw-rw-r-- 1 nobody nobody 848 Nov 22 14:45 ...
4
votes
6answers
603 views

How to get a list of all running processes on Linux and Solaris with Java?

Does anyone know how to get a list of all running processes on Linux and Solaris with Java? I don't want to use external programs like ps and I don't want to use proc. I want to do it with native ...
2
votes
1answer
155 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 ...
0
votes
1answer
135 views

Default laf doesn't load

we run builds on server with solaris. After changing jre 1.6 to jre 1.7 the utility which run all tests start to throw an exception(sorry for my English): [java] Exception in thread "main" ...
0
votes
1answer
453 views

Knowing the process status using procf/<pid>/status

I am working on solaris Unix OS. I know that if there is a process running on unix there is a file called /proc//status which has a field called state in it. i took an example of the shell process ...
0
votes
1answer
121 views

find command with newer option does not work at milliseconds level

I have created 3 files in SunOS, 2 of which have creation time varying in milliseconds. The 3rd file varying by a second. find <path> -newer does not seem to take milliseconds into ...
3
votes
2answers
68 views

Create a new file with same perms and owner as an existing file

What is the best way to create a new, empty file that has the same ownership and perms as an existing file for a Solaris /bin/sh shell script? This is for rotating a log file away for compression and ...
1
vote
1answer
108 views

Unix/Solaris: Deleting a a directory is not possible because there are pseudo-files

I'm currently compiling different PHP versions and want to delete some rubbish folders. I got a folder called "php-5.4.7-src" which i want to delete but when I do $ rm -Rf php-5.4.7-src there ...
0
votes
1answer
131 views

How can i downgrade the version of java from 1.6.0 to java 1.5.0 on Sun Solaris 11

I have my system configuration on live server of Joyent Sun Solaris 11 Ram 8 GB HD 240 GB VM 16 GB I have already installed Java 1.6.0 on my server machine and i am running my Ruby on rails ...
0
votes
0answers
93 views

Solaris Apache Web Server Security Configuration standard/checklist [closed]

I was wondering if anyone was aware of a security configuration standard for apache running on a solaris box (apache 2, Solaris 10)? I am aware of the CIS standard for apache running on a linux host, ...
0
votes
1answer
53 views

How to make use of the text file chosen and upload to solaris?

I am currently using a combination of HTML, MySql, and PHP using Solaris as a server. I had created the tables on MySql, and needed to use Html to upload a file from my PC desktop to the server's ...
-1
votes
1answer
42 views

Placing data into specific bits

I am trying to learn SPARC and trying to create an array of size 4,000 bytes. Inside of this array I need to calculate an offset to place values in the correct location in that array. I think I know ...
5
votes
3answers
316 views

Problems opening more than 10,000 files in Perl

I need to open more than 10,000 files in a Perl script, so I asked the system administrator to change the limit on my account to 14,000. ulimit -a now shows these settings: core file size ...
0
votes
0answers
109 views

ftpd: getpeername: Transport endpoint is not connected

I get the flowwing error, ""Oct 18 23:00:55 App2 ftpd[23406]: [ID 572618 daemon.error] getpeername: Transport endpoint is not connected."" I am very new to systems and softwares, could you explain ...
0
votes
2answers
85 views

How to delete a NULL file from Solaris Unix?

I have a NULL file in a directory: -rw-r--r-- 1 blah1 blah2 83532 Nov 5 09:34 <can't see, but null here> How do I remove this? This is very annoying as it interferes ...
1
vote
0answers
308 views

Mercurial (hg) error: abort: No module named _md5

When I try to clone a repository in hg, I get the following error: $ hg clone http://server/repo abort: No module named _md5! I run this on Solaris 10, and the strange thing is that the same setup ...
1
vote
1answer
172 views

How to exclude shared library from instrumentalization with purify?

Instrumentalizing C Code that is linked against Oracle's libclntsh leads to crashes when running the resulting program. The program is terminated with a 'Illegal Instruction' signal. The bug is ...
1
vote
2answers
121 views

fread of a struct diffrent under solaris and linux

I'm reading in the first Bytes of an File with fread: fread(&example_struct, sizeof(example_struct), 1, fp_input); Which ends up with different results under linux and solaris? Whereby the ...
3
votes
2answers
87 views

Unexpected String concat behaviour

I'm in trouble with some simple Java code : // the env var is set public final String METACHEK_pref = System.getenv().get("MCHK_DIR"); // the env var should be : public String tempMP = ...
1
vote
1answer
59 views

Compiling with debug symbols requires additional libraries?

I have a curious problem: When building object files with -g, the linker suddenly complains about missing symbols from libbar on wich my tool depends indirectly through libfoo. This does not happen ...
1
vote
1answer
280 views

solaris os setting path and environment variables

in my solaris university account I'm setting path using setenv like setenv JAVA_HOME /usr/j2se the path gets created and gets recognised recognized. But the moment I logout and login again these all ...
0
votes
3answers
215 views

Monitor a process in java

I have java process which uses process builder and calls a perl script. The perl script internally calls a binary in background and i have its process id in that perl script.Now i can return this ...
0
votes
0answers
41 views

Getting error after setting JAVA_HOME in .cshrc file in solaris

i specified the below command in .cshrc file for JAVA_HOME. setenv JAVA_HOME /sun/jdk/1.6.0_13/jre I done source for that file. i mean, executed the command "source .cshrc". The above command ...
2
votes
0answers
89 views

custom ListCellRenderer on Solaris (with jre5)

I have a JList containing instances of a class Operation which contains a boolean flag "enabled". When this flag is set to false, I want the text representation of the Operation instance in the JList ...
2
votes
1answer
130 views

Solaris - Synchronous Disk Flush/Synchronous Sync? [closed]

What is the best way to do synchronous disk flush on Solaris? I want to flush all disk, not a single file. Sync() on Solaris (opposite to Linux) works ASYNCHRONOUSLY, I'm looking for SYNCHRONOUS ...
1
vote
1answer
105 views

generate core from C program on Solaris [duplicate]

Possible Duplicate: How can a C program produce a core dump of itself without terminating? I would like to generate a core from a C program without terminating the running process. OS is ...
1
vote
2answers
90 views

Free TCL IDE for Solaris

I have been using ActiveTCL on my windows desktop, but now I have a Solaris workstation, and I need a new IDE. I am a student, so the business edition of ActiveTCL is not an option. Are there any free ...
0
votes
2answers
149 views

error: expected primary-expression before “__attribute__”;

I am compiling a C program on Solaris 10 for x86, this is a part linked: >yyerrlab1:/*Suppress GCC warning that yyerrlab1 is unused when no action*/ >#if defined ...
0
votes
1answer
60 views

How to remove trailing “.” in $PATH

My lab sheet says that if the $PATH in root has a trailing ".", it is likely that an attacker can gain superuser access by forcing an admin to operate as root to execute some malicious program. I dont ...
0
votes
0answers
76 views

Syntax of option -files in hadoop script

I wrote this hadoop program package org.myorg; import java.io.*; import java.util.*; import org.apache.hadoop.fs.Path; import org.apache.hadoop.conf.*; import org.apache.hadoop.io.*; import ...
1
vote
1answer
696 views

Reading a file in Java hdfs

I ran into a problem running the program on a cluster and decided to read from hdfs file in functions map and reduce. How to read line by line hdfs file and burn to read rows in ArrayList?
0
votes
2answers
320 views

What is the difference between online, offline, enabled and disabled in Solaris services?

When svcs -a is entered on the terminal, a list of services with its corresponding status is displayed. May I ask, what does each status mean and what is the difference between the statuses online, ...
1
vote
0answers
90 views

Linux kernel crypto API from Solaris [closed]

I am porting some kernel sources from Solaris over to Linux, and I have 7 functions I need to make equivalent implementation. From Solaris, they are: int ...
0
votes
2answers
70 views

Purest Way to Assemble/Compile a file With no other ELF/Object Bloat

I cannot believe how hard this seems to be. I am working from SPARC Solaris 8. and we have some kind of GNU-gcc (3.4.2) and 'as' assembler (Sun WorkShop 6 2003/12/18 Compiler Common 6.0). Anyways, ...
2
votes
1answer
55 views

special meaning of ^ (caret) in solaris (bourne?) sh?

On Solaris, it appears I need to single quote 'a match the beginning of line' expression: > sh $ echo offset 0.000000 2>&1 | grep ^offset | tail -1 offset: not found $ Usage: ...
0
votes
0answers
54 views

How can i install Unicorn with Apache on Solaris OS in rails 3 application?

I am using, ruby 1.9.2p180 Rails 3.0.5 Phusion Passenger version 3.0.13 I have problem with Phusion passenger it frequently shut down in production enviornment. So i want to shift my app with ...
3
votes
1answer
146 views

“const access error” on sun os when compiling c++ code

Here is my code : class X { public: X():_x(5){} void GetVal(int & oVal) { oVal = _x; } private: int _x; }; class Y { public: X * const GetX() { return &_x; } ...
0
votes
0answers
113 views

Jboss 7 as service on Solaris [closed]

How to launch jboss 7 as service on solaris? jboss_home/bin/init.d has some scripts, but where do i place those and how to launch? I use SunOS 5.10.
0
votes
1answer
280 views

Bash If Else for login -p

the command logins -p is to show which users do not have a password while wc -l is to count the number of newlines. Thus, logins -p | wc -l shows the number of users that do not have a password. In my ...
-6
votes
2answers
67 views

Segmentataion Fault [closed]

We are working on Migration project from Solaris(32 bit) to Linux(64 bit). With compiler CC to GCC. The project was good and working fine in Solaris. We installed all the needful s/w in Linux, we ...
0
votes
0answers
123 views

CPP Migration from Solaris to Linux

I am new to work on migration projects and also for Linux (RedHat). Now we are moving a C++ project from Solaris(32 bit) to Linux(64 bit) and compiler Sun CC(solaris) to G++(in Linux) (4.1.2). We are ...
0
votes
1answer
314 views

Mount : Permission Denied

I am trying to mount a solaris sparc 5.10 dir over solaris sparc 5.11 like root> mount S5.10Machine:/mydir /mydir and I am getting nfs mount S5.10Machine:/mydir permission denied. I have given 777 ...
0
votes
0answers
235 views

port forwarding on solaris 11 [closed]

I'm trying port forwarding on solaris 11. I have a mechine behind a server that use solaris 11. I try to access that mechine from the external port, and forwarded by solaris 11 mechine to that machine ...
1
vote
2answers
417 views

Creating an alias in solaris unix

I can create an alias in solaris as below: alias x86 "some_command" I need something that i can pass an argument to an alias and that argument will be used to frame the complete alias. for example: ...
2
votes
1answer
361 views

Python: Paramiko authentication via public key “not a valid RSA”

I'm attempting to communicate between two Solaris servers via Paramiko. I can't use my private key for security reasons so am attempting to use id_rsa.pub. Originally I tried this: ...
0
votes
4answers
83 views

search string and excise beginning portion - Solaris

Another Solaris question. This is my file. /abc/123/gfh/hello/what/is/up <THIS WOULD BE WHERE A NEW LINE STARTS> bhn/fda/fds/hello/the/sky/is/blue <THIS WOULD BE WHERE A NEW LINE ...
1
vote
1answer
205 views

Could not open library 'libkernel32.so' running bundle exec rspec on solaris in vbox [closed]

Setup: Host is laptop running windows 7, 64bit Guest is Solaris 11 running on VirtualBox 4.2 with packages: ruby(1.9.3p286) rails(3.2.8) gem(1.8.24) bundler(1.2.1) git(1.7.3.2) All seemed to ...
0
votes
3answers
239 views

PHP exec command works from terminal but not from web

I created a simple test file lets call it exec.php with this content: <?php exec('scp -r /vhosts/malta/docs/www/mysite/uploads/www.mysite.com/images/promotions/xmas-survey ...
0
votes
1answer
119 views

Error: no classes specified

I wrote this Java hadoop program which will execute parallel indexation of files.The file was created in eclipse package org.myorg; import java.io.*; import java.util.*; import ...

1 3 4 5 6 7 27