Tagged Questions
2
votes
3answers
33 views
Why does this code work on Linux but not on SunOS?
#include <stdio.h>
int main() {
char *str = "11111111-22222222 r-xp 00000000 00:0e 1843624 /lib/libdl.so.0";
unsigned long long start_addr, stop_addr, offset;
char* access = NULL;
...
0
votes
2answers
161 views
Display filename and match in grep
How to get the filename and matching line in grep output?
Something like,
<filename> <match line>
Os version: SunOS 5.10
0
votes
0answers
31 views
How to check JVM total HeapSzie and currentFreeHeapSize on SunOs?
I tried jstat, jps -lvm. Nothing worked. Tried to find commands on Oracle site nothing helped me out. I am looking for information from particular JVM like below.
HeapFreeCurrent=13739632
...
3
votes
0answers
151 views
I want to find average memory usage over time in solaris from vmstat log [closed]
Are you aware of any application like this http://www.michenux.net/vmstax/ which gives average memory usage. I want to get some application which can process the log file and give me the average ...
1
vote
1answer
69 views
read access to the ROOT/ parent dir in tomcat on Solaris
I'm running tomcat7 on SunOS 5.10 and I'm developping a webapp under the webapp/ROOT/ directory.
I'm trying, within the app, to see if the webapp/foo directory is there:
String invpath = ...
0
votes
1answer
95 views
Compiling LAPACK on Solaris
I'm following the suggestions on Python scipy needs BLAS? to install scipy locally to my home directory on SunOS (5.10 Generic_147440-12 sun4u sparc SUNW,Sun-Fire-V440). But although I have Python 2.7 ...
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 ...
1
vote
1answer
313 views
Compiling DBD::mysql on SunOS 5.10
everybody
I apologize for the massive length of this post.
I am having some issues compiling DBD::mysql on SunOS.
# /usr/perl5/bin/perlgcc Makefile.PL
I will use the following settings for ...
0
votes
1answer
135 views
How to show a graph in an email body
This is my HTML file below which draws a graph. When I am opening my HTML file using IE/Firefox/Chrome, I can see my graph properly.
I need to send this graph within an email body. When I try to use ...
0
votes
2answers
1k views
Sending html email using mailx [closed]
I am trying to send the output of an html file in an email using mailx command. But whenever I try using the below command, I always get one below error. Something wrong in my syntax?
bash-3.00$ ...
3
votes
4answers
341 views
Searching a particular string pattern out of 10000 files in parallel
Problem Statement:-
I need to search a particular String Pattern in around 10000 files and find the records in the files which contains that particular pattern. I can use grep here, but it is taking ...
0
votes
3answers
2k views
Make a Simple Pie Graph using Bash Shell Script
Below is my Bash Shell Script from which I am executing my two Hive SQL Queries which is working fine. And I am calculating Error Percentage in this Bash Shell Script.
#!/bin/bash
QUERY1=`hive -e "
...
0
votes
2answers
2k views
new line in shell script
I have the below command in my shell script to send all the four echo statements in one email
{
echo "Data Successfully loaded into LIP table"
echo "Total Items Purchased: `echo $QUERY1 | awk '{print ...
1
vote
1answer
131 views
Subject Name not showing in my email using mail command
I am using mail command to send an email. It works fine.
echo "Ignore this email" | mail -s "Test Data" DL-host-PD-WAS-TT_Emp@corp.host.com
But the only confusion I have is, in my email I didn't ...
1
vote
2answers
835 views
Combine files in one
Currently I am in this directory-
/data/real/test
When I do ls -lt at the command prompt. I get like below something-
REALTIME_235000.dat.gz
REALTIME_234800.dat.gz
REALTIME_234600.dat.gz
...
4
votes
2answers
782 views
Solaris and Java contiguous memory clarification needed
Background:
We have a vendor-supplied Java application that has a somewhat large Java Heap. Without going into too much info, the app is a black box to us, yet we feel we need to take it upon ...
2
votes
5answers
2k 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.
2
votes
1answer
4k 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 ...
0
votes
1answer
179 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 ...
-2
votes
1answer
318 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
...
0
votes
3answers
5k 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 ...
4
votes
2answers
5k 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:
...
0
votes
4answers
1k 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
1k 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 ...
