Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mrn
  • Order by date
  1. mrn

    Using Esker Tun to connect with AIX

    Take a look at putty as an alternative. http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in...
  2. mrn

    AIX XL Compiler issue

    As an emergency work around you can /usr/vac/bin/xlc cgc.c The license for the Evaluation version of IBM XL C/C++ for AIX V11.1 compiler product has expired. Please send an email to compiler@ca.ibm.com for information on purchasing the product. The evaluation license can be extended to 74...
  3. mrn

    Why my ldap password is not expired when login into AIX

    Check out this, may be related. https://bugzilla.redhat.com/show_bug.cgi?id=235532 Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's characters."
  4. mrn

    what SAN is connected i.e. IBM or EMC etc....

    lscfg -vp hdisk*|grep "Machine Type and Model" Machine Type and Model......2107900 Bit in red is the type. E.g 2107 is a DS8000 2105 is ESS shark You'll have to google the code.... or post it here and I may just know what it is. Mike "Whenever I dwell for any length of time on my own...
  5. mrn

    j2pg process taken a lot of CPU%...

    This may be your problem. http://www-01.ibm.com/support/docview.wss?uid=isg1IY54392 Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's...
  6. mrn

    Is it possible to migrate from AIX 5.3 to AIX6.1 thr nimadm if Master running with version AIX7.1 ?

    All that's required is that the nim server be at the same or above the client version; so in your case 7.1 is fine..... remember do backup's before you start...... and take a look at alt_disk_migration for an easy way to recover back to your initial starting point. Mike "Whenever I dwell for...
  7. mrn

    PATH question

    PATH= is your original PATH PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/usr/java5/jre/bin:/usr export PATH=$PATH:/usr/sbin/cluster/utilities is just the same as saying PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/usr/java5/jre/bin:/usr:/usr/sbin/cluster/utilities...
  8. mrn

    alnum test

    #!/bin/sh # validalAlphaNum - Ensures that input only consists of alphabetical #              and numeric characters. validAlphaNum() {   # validate arg: returns 0 if all upper+lower+digits, 1 otherwise   # Remove all unacceptable chars   compressed="$(cat $1 | sed -e 's/[^[:alnum:]]//g')"  ...
  9. mrn

    /usr filesystem is 100% Full.

    cd /usr ls | xargs du -sk | sort -rn |head will show you the 10 biggest users of space 828144 lpp 621972 opt 311600 websm 257852 lib 102800 sbin 94088 openv 90268 java14 86956 dt 83636 mozilla 82308 java5_64 cd /lpp ls | xargs du -sk | sort -rn |head 174768 X11 121632...
  10. mrn

    HTML Code for excel type fixed column display

    So you want to truncate cells to say 8 chars or you want to expand cells to whatever the largest is? Guessing this is the problem you have? Text-Column1 Text-Column2 Int-Column3 data12345 data32 45 datxc fgtr56dfg4 56789 datxcfdfdfdfdfdfdfdf fddfdfdfdfdfdfdfgtr56dfg4...
  11. mrn

    HTML Code for excel type fixed column display

    awk -F"|" 'BEGIN {print "<table>"} ; { print "<tr><td>" $1 "</td><td>" $2 "</td><td>" $3 "</td><td>" $4 "</td></tr>"} ; END { print "</table>"}' data.txt Produces <table> <tr><td></td><td>Text-Column1 </td><td>Text-Column2 </td><td>Int-Column3</td><td>Float-Column4</td><td></td></tr>...
  12. mrn

    ftp creation of a new file - permissions of group

    You can set the ftp umask in /etc/inetd.conf ftp ... ftpd -l -u077 Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's characters."
  13. mrn

    output only unique lines, no duplicates

    sort -u filename Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's characters."
  14. mrn

    Port monitor script

    As an aside, I'd ask the tek-tips admin to remove your mail address from this post I now know that ####.org use AIX and have port 4446 open. Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at...
  15. mrn

    VIOS configuration capture

    If you can get it to work you could use the system planning tool http://www-947.ibm.com/systems/support/tools/systemplanningtool/ Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like...
  16. mrn

    Free Hard Drive Space

    Doesn't handle varied off vg's on disks, but I'm sure you can tinker with it. echo "Total MB | Free MB" for hdisk in `lspv |awk '{print $1}'` do lspv $hdisk|awk '/TOTAL|FREE PPs/'|awk '{print $3}'|xargs done Mike "Whenever I dwell for any length of time on my own shortcomings, they...
  17. mrn

    ASCII to Hex Conversion?

    From Shelldorado : ########################################################################## # Title : urlencode - encode URL data # Author : Heiner Steven (heiner.steven@odn.de) # Date : 2000-03-15 # Requires : awk # Categories : File Conversion, WWW, CGI # SCCS-Id. : @(#)...
  18. mrn

    FTP - no login prompt on AIX

    Is FTP running/enabled on the server? Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's characters."
  19. mrn

    AIX Training

    google for IBM Redbooks. Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's characters."
  20. mrn

    auditing file deletions

    tripwire should do the job. Mike "Whenever I dwell for any length of time on my own shortcomings, they gradually begin to seem mild, harmless, rather engaging little things, not at all like the staring defects in other people's characters."

Part and Inventory Search

Back
Top