Tagged Questions
0
votes
3answers
38 views
bash: read string into array bash with spaces preserved [duplicate]
I have string "hi how are you"
I want to put this string into an array as shown below. But i want to preserve spaces. Any ideas on how to do that?
a[0] a[1] a[2] 3 4 5 6 .... should ...
0
votes
0answers
24 views
.so file can not core dump in solaris10
I am loading mylib.so with dlopen/dlsym in my program
Because of some mylib.so's problems, my program terminates by a segmentation fault.
However I am not getting a core dump of the mylib.so or my ...
0
votes
0answers
21 views
Solaris Encrypt command error [migrated]
I am trying to use the encrypt/decrypt command on solaris
/usr/bin/encrypt -l | -a algorithm [-v] [-k key_file] [-i
input_file] [-o output_file]
/usr/bin/decrypt -l | -a algorithm [-v] [-k ...
0
votes
2answers
56 views
how to fgrep/egrep exact string in a file
I'm trying to search for an EXACT string match in a file. I know it can be done via "grep -w" but for some reason, i dont to do it with grep.
Already tried these and didnt work for me:
egrep '\< ...
0
votes
1answer
38 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.
...
2
votes
0answers
46 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 ...
1
vote
2answers
107 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
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 ...
0
votes
1answer
50 views
Solaris unix, c-shell, redirecting xargs executed command output
Have no choice about the c-shell. It's what we use here.
So I want to parse through current directory and all sub-directories looking for files of form *.utv and egrep each to look for a specific ...
0
votes
5answers
213 views
getting a previous date in bash/unix
I am looking to get previous date in unix / shell script .
I am using the following code
date -d ’1 day ago’ +’%Y/%m/%d’
But I am getting the following error.
date: illegal option -- d
As far as ...
0
votes
0answers
32 views
Treatment of results of archiving
There is a row of problem files logs in linux in case of which opening there are error messages
Cannot open remote file ...
-1
votes
1answer
70 views
malloc and snprintf bus core dump
Function which worked previously, suddenly refuses cooperation. More precisely this snippet:
//If not, add to UIDS
printf("line 78\n");
free(s2);
printf("line 82\n");
char * ss = ...
0
votes
1answer
63 views
Wrong value of UID in stat() and wrong pr_pid in psinfo_t
My function reads process list from /proc, then read process psinfo file into proper sturcture, as well as data about this file, and prints it.
The problem is, some of the data in those structures is ...
0
votes
1answer
84 views
Why does strftime uppercase flag '^' not work?
I have the following command $(perl -e 'use POSIX;print strftime "%d-%^b-%Y",localtime time-86400;') which works on Red Hat Linux box, but not on a Sun Solaris 9 box.
Question 1: From what I read ...
0
votes
1answer
127 views
How to install gdb on Solaris 10?
I've installed sun studio, but did not see gdb installed. I see gcc, gcore. Does it mean gdb is not part of sun studio, and should be installed separately?
0
votes
2answers
419 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
2answers
95 views
Creating a Unix user from an application
I'm working on a home-grown user database tied to a larger sustainment application.
The idea has been floated around to tie our users to system users, creating matching /etc/passwd entries each time ...
0
votes
1answer
82 views
Is there a way to find out which core each thread of an app is binding to?
Say, a multi-threading app runs on a 8-core Solaris. Is there a way to list the mapping between each thread and core #?
Thanks,
0
votes
0answers
443 views
Incomplete file sending using sftp UNIX bash script with expect statements
This is a bash script needs to be run on Solaris which takes files from dirlocal, copies to backupdir and sends them via SFTP. The problem is it sends ony 4-5MB of data and then it hangs (somewhere at ...
-1
votes
3answers
137 views
Persisting an environment variable on Solaris [closed]
I need to change an environment variable $NLS_LANG for Oracle encoding configurations.
I followed the steps:
Open /etc/profile file.
Added "export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P9" line into ...
1
vote
1answer
81 views
Simplifying BASH command
I'm finding myself having to do this every once in a while, and was wondering if there's a way to simplify this command?
In essence, all I'm doing is copying a file and re-naming it. The ...
0
votes
1answer
48 views
Command to see number of instance of process in solaris [closed]
In Solaris any command is there to find out dynamically how many instance of a process is created and killed. Like tail -f command logs are updated dynamically , can we find out about a number of ...
5
votes
2answers
127 views
What does the -b option do in SFTP
I'm looking at some old shell scripts and there is a line that I don't quite understand:
~]$ sftp -b /dev/fd/3 dropuser@targetftpserver.company.com
I can see from the man file that -b is for batch, ...
-1
votes
1answer
127 views
how to drop the file in linux [closed]
when i am dropping a file with root user iam getting
error :cannot remove `dc1-mysql001b.dc01.revsci.net.pid': Read-only file system
[root@001b:/var/lib/mysql]# rm ...
-1
votes
1answer
223 views
Replacing non-ASCII characters or specific ASCII character with a space in file
I want to replace non-ASCII characters or specific ASCII characters with a space in a file using shell scripting, sed or Perl.
First is to replace all non-ASCII characters with space in file. That I ...
0
votes
1answer
172 views
change solaris ip address using a script
I have always changed Solaris 10 ip address using the classic method by modifying /etc/inet/hosts and /etc/inet/inodes.
Is there a way to change the ip address using scripting??
0
votes
0answers
51 views
Looking for a reproducible test case for java.lang.UNIXProcess.forkAndExec(Native Method) hanging [closed]
I'm looking for a reproducible test case for a problem discussed in this thread:
Why is java.lang.UNIXProcess.forkAndExec(Native Method) hanging
-1
votes
2answers
78 views
Rsync Compatibility [closed]
I am having a dilemma using RSYNC - whilst I am trying to get to the root cause, but ensuring standardization of versions, I am hitting issues with compatibility between versions of RSYNC.
Should it ...
0
votes
0answers
77 views
Solaris 5.9 issue
Does someone know how can I fix the problem below? I'm not familiar with UNIX/Solaris in deep. I've googled it and I've found some information.
An unexpected exception has been detected in native ...
1
vote
1answer
221 views
process memory size solaris
Running perl script in solaris 10 machine. Know the RAM Size is 25 GB. Have two queries.
Normally How much RAM memory a solaris process is allocated. Is it a default value assigned to any script ...
0
votes
2answers
169 views
How to expand shell variables in a text file?
Consider a ASCII text file (lets say it contains code of a non-shell scripting language):
Text_File.msh:
spool on to '$LOG_FILE_PATH/logfile.log';
login 'username' 'password';
....
Now if this ...
0
votes
2answers
275 views
Shell script that calculates the previous Monday, Tuesday,… relative to today
I'm trying desperatly to find a bash or ksh routine that allows me to find for example the previous Monday,Tuesday,Wednesday,... preceding today's date. Additonal it has to work on plain vanilla ...
0
votes
1answer
318 views
compile/install gcc 4.1.2 on solaris 10 having gcc 3.4.3 already
I'm facing some issues on compiling gcc on solaris 10.
I downloaded the source code from "ftp://ftp.gwdg.de/pub/misc/gcc/releases/gcc-4.1.2/" and tried to compile it, by using configure and then ...
0
votes
1answer
197 views
Is there any AIX/Win equivalent command to Solaris pmap?
I am working on memory management in different OS like AIX, Win and Unix. The pmap command works fine for Solaris but I can't able to find the similar command for AIX.
Is pmap works in AIX or is ...
0
votes
2answers
202 views
sed regex replace on solaris
I have a file dummy.txt containing this:
"my_server"\1\"n9j7gd8kl4"
"widget"\1\"vnhck67hn"
"other_server"\1\"tbone"
"blah"\1\"n9j7gd8kl4"
"server_new"\1\"g54"
"genserver"\1\"vf45s"
...
1
vote
2answers
60 views
Evaluate Unix Variable with multiple parts
How can I do the following in Unix:
1) Variable xxx_yyy=12345
2) Variable aaa=yyy
How can I evaluate xxx_$aaa to give me 12345.
Please advise.
0
votes
0answers
166 views
How to execute a remote Windows Server program/process from a Solaris (Unix) machine?
I need to launch a Windows Server 2008 process (.bat) from a shell script located in a Solaris platform.
This remote execution should be done as close as possible the way you can perform a remote ...
1
vote
1answer
256 views
Environment variables to be used across multiple korn (ksh93) shell scripts (getter-setter)
I have a set of scripts that share some environment variables that are used as status flags.
Consider:
./script1.sh; ./script2.sh; # I execute 2 scripts within the same shell.
Now each of these ...
2
votes
1answer
223 views
Check if the current time falls within defined time range on UNIX
Consider the below code snippet:
#!/bin/ksh
rangeStartTime_hr=13
rangeStartTime_min=56
rangeEndTime_hr=15
rangeEndTime_min=05
getCurrentMinute() {
return `date +%M | sed -e 's/0*//'`;
# ...
0
votes
3answers
82 views
Perl swap command doesn't seem to work with output redirection
My input foo.txt is this:
Grull^Zn Hernand^Zz
where the ^Z resolves to the control character \x1a (verified with od -x on the file )
When I run the following Perl command:
perl -pe s/\x1a//g ...
4
votes
2answers
295 views
Using Erlang SSH Application to execute commands on remote UNIX Servers
I have always used the os:cmd/1 method to call operating system routines. Now, i know that erlang has an ssh application. I would like to know how i can use this module to ssh into a SOLARIS server, ...
2
votes
1answer
197 views
Tool for Library Dependency
I'm looking for the tool/command 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 ...
3
votes
2answers
79 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
114 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
3answers
224 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 ...
3
votes
1answer
154 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;
}
...
1
vote
2answers
501 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:
...
0
votes
3answers
244 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
2answers
83 views
Creation of.so of files
There is a set with - files with extension.с: avl_tree.c, buf_read.c, db_prep.c, file_process.c, global_header.c, traverser.c. Used include files are in folder/usr/gcc/4.4/bin/include except for ...
1
vote
4answers
281 views
Creating a simple gui in java for running a background process
Well, I had this question in mind for a long time.
Even though i have a complex requirement,i will keep it as simple as possible.
I have background process which takes two arguments which i use to ...

