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 ...
-1
votes
0answers
10 views
When I open the solaris host, i can't move screen and when I open a new xterm, it overlaps right on the previous screen? [closed]
Solaris host is giving me the problem after the machine was rebooted. when I open two windows, they ovelaps and i can't even move those windows. Is there something wrong on display? All other users ...
0
votes
2answers
39 views
how to get hostname in solaries machines, through perl script?
I tried this in linux machines
my $a = $ENV{HOSTNAME};
print "\nhostname = $a\n";
i get this,
hostname = sims5.eng.netapp.com
i tried same in solaries, but i get nothing.
hostname =
I can ...
0
votes
1answer
15 views
Getting previous day's date in Unix
I am using the following code to assign previous day's date to a variable yesterday:
yesterday=`TZ=GMT+24 date +%Y%m%d`;
echo $yesterday;
The value is assigned correctly when I execute the command ...
0
votes
1answer
32 views
Cannot install Date::Calc perl module
I'm running Solaris on my machine and I would need to install the Date::Calc perl module in order for one of my scripts to work.
When I run the following command:
sudo perl -MCPAN -e 'install ...
-1
votes
0answers
16 views
Windows 7 doesn't loads after Solaris attempted install [migrated]
I got two hard disks, one of 40gb and another one with 1tb.
The 40gb has windows 7 installed on it, taking all the space of this hdd, and in the 1tb disk i got few logic and extended partitions; in ...
0
votes
1answer
34 views
Purpose of issetugid?
According to the man pages for issetugid, the call is supposed to either (1) alert to uid/gid changes; or (2) alert to a possible tainted environment. The function name suggests a third purpose.
...
1
vote
1answer
19 views
Solaris and Preprocessor Macros
Would someone post the results of cpp -dM < /dev/null from a Solaris 10 or above system?
I'm having trouble locating what preprocessor macros are typically defined. Solaris documentation does not ...
2
votes
0answers
26 views
Set the terminal tab title as prompt name in unix
Lets say, the prompt is as below
run_scripts >
How to set that terminal tab title same as prompt
i.e Terminal tab tile also should be
run_scripts>
So that terminal title ...
0
votes
1answer
28 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
58 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
90 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
20 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
0answers
24 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
34 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
19 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
28 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
26 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
81 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
30 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
15 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
53 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
40 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
22 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
60 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
1answer
23 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
0answers
15 views
Can not delete folder with svn control files created by other user [migrated]
this problem happened on a SunOS
I (not root user) want to delete a folder "def"(contains sub folder and files) created by other user, I have the full control of "def"'s parent folder(say "abc"), but ...
-1
votes
0answers
7 views
confused on solaris missing patch revision [closed]
A quick question. At the below patch where 62 revision has been made for the patch 119059.
https://getupdates.oracle.com/readme/README.119059-62
But only 3 vision has CVE numbers.
CVE-2007-5958 was ...
0
votes
2answers
44 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
13 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
0answers
4 views
an unconfigured ntp server appears in ntp client's list in solaris 9 [migrated]
So i have a solaris 9 server with running ntp client
I want it to poll 10.10.1.122 (local ntp server, there is no internet access)
so i configured the ntp server in the config file (below)
however ...
0
votes
0answers
15 views
How to tar/zip a parent directory exculding a child direcory [migrated]
I want tar a direcory which contains a number of child directories. But here my requirement is to tar the entire parent direcory excuding one child directory.
Is there any command or procedure for ...
0
votes
2answers
95 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
14 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
14 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
36 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
10 views
Is there a ready-to-run Solaris virtual machine for VMWare? [migrated]
I would like to test some scripting on a Solaris machine. Is there a VMWare virtual machine with Solaris that I can download and use directly?
-1
votes
0answers
19 views
Solaris - Cannot boot from cdrom - Changed Disk [closed]
I have a Solaris Server Sun Blade 2500, recently it went unresponsive, after identifying the issue the disk was bad. Replaced the disk and thought to install Solaris Sparc on the new disk.
For that I ...
1
vote
0answers
22 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
23 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
18 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
0answers
5 views
Changing Account status from NP to LK in Solaris 10 [migrated]
Some of our system accounts have a status of NP (No Password) while other system accounts have a status of LK (locked.) I am trying to change the status of all system accounts to LK. I have tried to ...
-1
votes
0answers
29 views
Configure the custom ports for rpcbind in solaris 10? [closed]
How can I configure the custom ports for rpcbind, used in nfs solaris 10?
0
votes
0answers
17 views
Syslog not listening on port 514 - Solaris [migrated]
I ve been trying to make syslog listen in port 514 for the past 2 days but in vain. All am trying to achieve is do a logging in syslog using sysloghandler in python on (localhost, 514) socket.
The ...
0
votes
1answer
144 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
41 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 ...
-1
votes
0answers
97 views
Solaris 11 qemu-sparc boot [closed]
I could sucessfully install an old Solaris version from this howto:
http://brezular.wordpress.com/2012/02/17/installation-solaris-2-6-sparc-on-qemu-part2-solaris-installation/
However, there seems to ...
0
votes
0answers
52 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
63 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
29 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) ...



