Search Results

Search: Posts Made By: ssk250
10,446
Posted By ssk250
How to customize sender name in mailx command?
Hi,

Is there anyway to customize the sender name when sending a mail from solaris or linux or any other unix box using mailx command?

Thanks in advance.
2,697
Posted By ssk250
Yes the problem is I havent given the full path...
Yes the problem is I havent given the full path as I assumed that the script will check in the same path where it is present. Thats the reason why it worked when ran manually. But not in Cron.
...
2,697
Posted By ssk250
Pattern not working in Cron script
Hi,

I have written a shell script to list all the files with some pattern as below.
<CODE> ls *_20151201*.txt <CODE>

its working properly when ran manually. But when i tried to run by...
3,281
Posted By ssk250
Is it possible to send mail to a UNIX user id ?
Hi ,

I am trying to know the possibility of sending a mail to my unix user id from my gmail.

Is there any such possibility to send the same?

Please reply.

Thanks in advance.
Forum: HP-UX 02-15-2015
7,506
Posted By ssk250
How to find the used memory in HP-UX?
Hi all,

Can any please provide how to calculate the cpu and memory usage of HP-UX server.


Thanks in advance.
Forum: AIX 02-07-2015
8,261
Posted By ssk250
Thanks ... ggrep is working on Solaris.
Thanks ... ggrep is working on Solaris.
Forum: AIX 02-06-2015
8,261
Posted By ssk250
Hi All, Thanks All. The below script worked...
Hi All,

Thanks All. The below script worked for me

/usr/xpg4/bin/awk '$0 ~ PAT { N=LINES } (N--) > 0' LINES=5 PAT="ISEND" sqloutput1.log

Just want to know... In a similar way how the lines...
Forum: AIX 02-05-2015
8,261
Posted By ssk250
Hi Corona, Thanks for the reply. My system is...
Hi Corona,
Thanks for the reply. My system is Solaris . But i need this for AIX too
I am getting error when used with awk and no output when used with nawk as below


$ awk 'PAT ~ $0 { N=LINES }...
Forum: AIX 02-05-2015
8,261
Posted By ssk250
Grep a pattern and print following n lines
Hi all,

I am struck with the below requirement. I need to grep a particular pattern in a file and then print next n lines of it for further processing.
I have used the below code

grep -A 3...
Forum: AIX 02-05-2015
10,986
Posted By ssk250
Thanks Robin. I have used " sqlplus -silent...
Thanks Robin.

I have used " sqlplus -silent " instead of sqlplus -s and it worked fine.

But i will take your suggestion for adding username and password in the next line instead of in the 1st...
Forum: AIX 02-04-2015
10,986
Posted By ssk250
SQLPLUS -S option not working
Hi All,

I am using the following script to run some sql on database but i am not getting the result. When i tried the same by removing "-s" option it is working fine but getting other things as...
8,796
Posted By ssk250
When i tried the commands above I am getting the...
When i tried the commands above I am getting the below error

"cannot open <filename>"

Is it that there will be no permission to execute/open files using commands on remote server?
8,796
Posted By ssk250
How to run commands on remote server using ssh password less authentication?
Hi,

I need to run a script located in a directory on remote server by using ssh authentication from my local unix server. Can anyone help me in this.

I have tried the below command. It worked...
Forum: HP-UX 11-14-2014
9,100
Posted By ssk250
Yes the swapmem_on was set to 1 on other machines...
Yes the swapmem_on was set to 1 on other machines too.

It was last rebooted @224 days before

uptime
11:38am up 224 days, 5:44, 1 user, load average: 0.06, 0.05, 0.04

As I already asked...
Forum: HP-UX 11-13-2014
9,100
Posted By ssk250
I have checked other servers having the same...
I have checked other servers having the same OS,hardware and almost having same workload.Their buffer cache values are as below. Their utilizations are < 40%. So I hope this buffer cache may be the...
Forum: HP-UX 11-12-2014
9,100
Posted By ssk250
Will the memory assigned to Buffer...
Will the memory assigned to Buffer cache(dbc_max_pct) can be used by normal process when required or else it will be reserved only for Buffer Cache itself?

How to check the amount of actual memory...
Forum: HP-UX 11-11-2014
9,100
Posted By ssk250
model ; swlist -l bundle | grep -e QPK -e GOLD ...
model ; swlist -l bundle | grep -e QPK -e GOLD
9000/800/rp4440
GOLDAPPS11i B.11.11.0812.479 Applications Patches for HP-UX 11i v1, December 2008
GOLDBASE11i ...
Forum: HP-UX 11-10-2014
9,100
Posted By ssk250
Hi All, Below are the details you requested...
Hi All,

Below are the details you requested for:

1) swapinfo -a
2) vmstat 5
3) grep hysical /var/adm/syslog/syslog.log
4) echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm...
Forum: HP-UX 11-06-2014
9,100
Posted By ssk250
model 9000/800/rp4440 swapinfo -tam ...
model

9000/800/rp4440

swapinfo -tam

Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 16384 0 16384 ...
Forum: HP-UX 11-04-2014
9,100
Posted By ssk250
HP-UX server showing high memory utilization
Hi All,

I am using HP-UX 11i v1(B11.11) servers for my work and its memory (RAM) utilization is consistenly 80% for the last one year. Though I am not facing any issues with this high memory...
19,182
Posted By ssk250
How to create or convert to pdf files from csv files using shell script?
Hi,

Can anyone help me how to convert a .csv file to a .pdf file using shell script



Thanks
23,961
Posted By ssk250
From Singh's code I have learnt a few things like...
From Singh's code I have learnt a few things like OFS,ORS,NF,NR,FS

Thanks Singh.

@Bhaskar

In my previous code it is feasible if you have less number of columns. But what if you have more...
23,961
Posted By ssk250
I am not an expert in unix to tell the most...
I am not an expert in unix to tell the most effective way to get your result. But hope this will help you as a temporary fix. Try the below codeawk -F, '{print $1","$2","$3","$4$5}' <filename>

I...
Forum: Solaris 08-11-2014
5,427
Posted By ssk250
1. I have tried the sftp command in the below...
1. I have tried the sftp command in the below formatsftp username@<ipaddress>

2. It is just showing Connecting to <ipaddress>.... for a long time and is not returning any ouput or error

3. I am...
Forum: Solaris 08-11-2014
1,093
Posted By ssk250
Hi Robin, Thanks for the reply My OS...
Hi Robin,

Thanks for the reply

My OS level is as below

SunOS alps 5.10 Generic_125100-05 sun4v sparc SUNW,Sun-Fire-T200


and when i tried the rpm comand it is showing that "rpm:not...
Showing results 1 to 25 of 39

 
All times are GMT -4. The time now is 03:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy