Search Results

Search: Posts Made By: newtoaixos
Forum: AIX 11-01-2013
2,049
Posted By ibmtech
Live Partition Mobility
Hello All,
I recently did LPM at one of my client site, and thought of sharing it with the forum.

I hope you find it helpful.
Forum: AIX 02-01-2013
4,174
Posted By bakunin
Moderative Interlude
First of all, I'd like to thank everybody who has tried to help. In fact this is why we write here and UNIX wouldn't be UNIX without the long-standing tradition of one helping the other and constant...
Forum: AIX 01-17-2013
11,153
Posted By bakunin
Same here. In the overwhelming majority of cases...
Same here. In the overwhelming majority of cases this is safe, historically there were only a few TL/MLs that had problems.

I remember 5.3 ML8 (or ML9? not sure) having a problem if updating from...
Forum: AIX 11-14-2012
1,398
Posted By bakunin
I have no idea what a "IBM R2"(?) server is. You...
I have no idea what a "IBM R2"(?) server is. You mean IBM R/6000?

"tpchkauth" is an Oracle function and has nothing to do with the OS, so perhaps best to consult some database administrator.
...
Forum: AIX 09-20-2012
1,056
Posted By bakunin
Probably you won't be able to avoid a complete...
Probably you won't be able to avoid a complete restore.

First thing: calm down. Nobody shaking for fear should be allowed anywhere near a system. Go out of the office for five minutes, smoke a...
Forum: AIX 08-28-2012
2,071
Posted By funksen
if you manually export DISPLAY to point to your...
if you manually export DISPLAY to point to your desktop ip, then ssh has nothing to do with it

try

telnet yourdesktopip 6000


(port 6000 is for display 0.0, if you use display 10.0, telnet...
Forum: AIX 08-27-2012
2,071
Posted By Corona688
Did you restart the ssh daemon after making the...
Did you restart the ssh daemon after making the change?
Forum: AIX 08-24-2012
61,723
Posted By bakunin
Ahem... This is the AIX forum! What...
Ahem...



This is the AIX forum! What you have suggested works on Linux (more precisely it works with the widely-used Vixie-cron), but not the AIX cron.


From the crontab man page...
Forum: AIX 08-16-2012
4,289
Posted By bakunin
AIX maintains several parallel command frontends...
AIX maintains several parallel command frontends (Sys-V-like, BSD-like, AIX-own) to the printing system and you can use any of them. See the man page of (my personal favourite) qadm for how to...
Forum: AIX 08-16-2012
4,289
Posted By bakunin
Most probably (and hopefully!) editing the...
Most probably (and hopefully!) editing the /etc/qconfig file will "impact anything" because otherwise the file would be superfluous, no?

Edit the file, then stop and empty all the queues. Restart...
Forum: AIX 08-07-2012
1,399
Posted By itkamaraj
yes. the files remain after you delete the user...
yes. the files remain after you delete the user also.
Forum: AIX 07-25-2012
2,570
Posted By kah00na
You need to find the parent device of the CD...
You need to find the parent device of the CD drive (vscsi0), then find vscsi0's slot number, then query your HMC to find that slot number. I use a "lshwres" command in this example. You could also...
5,367
Posted By muralikrishna
while : do FSUSAGE=$(df -k|grep...
while :
do
FSUSAGE=$(df -k|grep '/sybase'|awk '{print $6}'|tr -d %)
if [ $FSUSAGE -ge 94 ]; then
rm -r /sybase/logs/*
fi
#sleep 2
done

Uncomment sleep command if you need that...
5,367
Posted By jayan_jay
one liner .. $ df -h /sybase | nawk...
one liner ..

$ df -h /sybase | nawk '/%/{sub(/%/,"");if($5>=94)print "rm -r /sybase/logs/*" }' | sh
5,367
Posted By mirni
This should do the trick: #!/bin/bash ...
This should do the trick:

#!/bin/bash
use=`df | grep /sybase | awk '{print $(NF-1)}'` #get the percentage use
use=${use%*%} #get rid of the trailing '%'
if [ $use -gt 94 ] ; then
rm -r...
Forum: AIX 01-05-2012
24,442
Posted By methyl
Don't forget to search for the most dangerous...
Don't forget to search for the most dangerous ones:
2777 (sgid) and 4777 (suid) and 6777 (sgid and suid).
Forum: AIX 01-05-2012
24,442
Posted By Rksiva
Try this, find . -user root -perm 777
Try this,

find . -user root -perm 777
19,982
Posted By Skrynesaver
you have no instruction inside the if...fi group ...
you have no instruction inside the if...fi group

frappa was fairly clear in saying that the hostname list was a seperate file which was sent to the new file thus saving the following as checker.sh...
19,982
Posted By Skrynesaver
What is the problem exactly, ping takes a -c...
What is the problem exactly, ping takes a -c <count> modifier to exit after count packets so if you have a file with all the hostnames in it.

for host in $(cat network_hosts);do
if [ ! "$(...
19,982
Posted By frappa
Hi, first thing that comes to mind is to use...
Hi,

first thing that comes to mind is to use a simple configuration file that contains the name of all the servers to be pinged, one per line.

Then you could write a script that reads each line...
Forum: AIX 11-29-2011
28,613
Posted By verdepollo
Nevermind, I found the solution: migratepv...
Nevermind, I found the solution:

migratepv -l myLV hdisk2 hdisk1

You can mark this thread as [SOLVED]. :)
Forum: AIX 11-17-2011
3,141
Posted By funksen
assuming you configured your system to send mails...
assuming you configured your system to send mails from command line:


ps -ef | grep "[/]usr/sbin/syslogd" >/dev/null 2>&1 || echo "syslog down on host $(hostname)" | mail -s "syslog down"...
Forum: AIX 10-30-2011
3,569
Posted By zxmaus
Hi, try following on all gpfs nodes: ...
Hi,

try following on all gpfs nodes:
mmumount all -N nodename
mmshutdown -N nodename
mmfsenv -u
installp -u gpfs
regards
zxmaus
Forum: AIX 10-21-2011
1,796
Posted By jayan_jay
try this .. $ ls -ld */ | nawk '/ Oct 7 /...
try this ..

$ ls -ld */ | nawk '/ Oct 7 / {print "rm -rf "$9}' | sh
Forum: Solaris 08-23-2011
2,585
Posted By bartus11
Are you suspecting that after reboot the...
Are you suspecting that after reboot the configuration might change? Unless you did some changes to the system without making them persistent it shouldn't be a problem.
Showing results 1 to 25 of 28

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