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: *

  1. bdw238

    NIM Network Routes

    Hello All, Find it - In /etc/objerespos Brian
  2. bdw238

    NIM Network Routes

    Hello All, Can anyone time me the location where nim stores user defined NIM Network Routes (i.e. The location of the text file)? Here is my "/etc/niminfo" file for reference: #------------------ Network Install Manager --------------- # warning - this file contains NIM configuration...
  3. bdw238

    5.2 to 5.3 upgrade

    Hello, The command below nimadm –l 5304lpp_res –c seahawk –s 5304spot_res –j rootvg –d <disk removed in step 10 - e.g. hdisk1) -Y Tells the nim server to use lpp source 5304lpp_res (Think Installation CDS!), install to server seahawk, spot 5304spot_res (Defines a type of NIM resouce...
  4. bdw238

    5.2 to 5.3 upgrade

    Hello, If you have access to a NIM Server and the rootvg of the client server is on 2 hard disks, I would use NIM Migration Installation. It works really well! Here are some rough instructions. 1. Backup Data and application files 2. Backup /etc/sendmail.cf file 3. Backup /etc/inetd.conf...
  5. bdw238

    Identifying performance problems

    Hello, Just over 6 months ago we had a few pseries servers with Oracle 9 and 10 rebooting themself's and asked IBM( via Aix Software support) to looking into. They recommanded the following settings, which seemed to do the trick lru_file_repage = 0 strict_maxperm = 0 strict_maxclient = 1...
  6. bdw238

    Traiing course IBAU18GB

    I agree with Andy61, as IBM are automaticly defaulting as many recommend memory,io, etc settings in Aix 6.1 now as part of the install process. Brian
  7. bdw238

    High Availability Nim

    Hello All, I am looking into using NIM to create a standard opearting Environment for are Aix Servers. Are Company has two nim servers on different subnets and my plan is to setup one server as the master and other server as an Alternate Master. The master server will control Spots...
  8. bdw238

    global enviroment setting?

    What about /etc/profile? What type of settings? Brian
  9. bdw238

    Pattern Matching in Bash

    Hello, Can someone advise me how to pattern match like the following bit of perl code in BASH $message="There has been an error detected"; $pattern="error"; if ($message =~ m/$pattern/i) { print "Found error\n"; } elsif { # Do nothing } Brian
  10. bdw238

    Changing Password on Multiple LPARs

    Try - rpm -ql expect-5.34-8 |grep `passmass` on one of you Aix servers. It should be located in `/opt/freeware/bin/`. Then vi this file. No need to c code now. Brian
  11. bdw238

    Changing Password on Multiple LPARs

    Khalid, To compile a program use gcc -o <Program Name> <Source file(s)> i.e. gcc -o test test.c Before going down the `c` route, please consider the following future problems. 1. Loosing source code, as once this has a occurred it very difficult to change the functionality of the program...
  12. bdw238

    determine if a file is corrupt

    Also, use Use `chksum` to check the checksum of file. Then use the checksum to check against a `good` copy file which I assmuing you have backed up or on a another system. Brian
  13. bdw238

    crontab for log monitor

    Hello, What I would do is setup a script as UNIX Daemon that loops for ever and searchs for the timestamp pattern. Something like this psudeocode: Open alert file Goto EOF mark of alert file Reset EOF marker while (1) { Read Alert File if NOT (End of Alert file) if line ==...
  14. bdw238

    firmware

    Hello chomca, First, What type of firmware, system , Fibre, Disk, LTO Tape Drive, etc? Normally if use the IBM Micocode Discover Service, (google it!) there will be link to required firmware and a README file with the instructions! Brian
  15. bdw238

    File type and magic

    Thanks Stevexff, I discovered the IP:Compress::Gzip function last night. I have test this morning and seems to done the trick. Thanks for the help Brian
  16. bdw238

    File type and magic

    The code is as follows: sub gzip_file { my $file = $_[0]; my $gzfile = $file.".gz"; my $buf; open (FILE, $file); binmode FILE; my $gz = gzopen($gzfile, "wb"); if (! $gz) { print "Unable to write $gzfile $!\n"...
  17. bdw238

    File type and magic

    Yes, the file command is used on Aix and linux. The reason I ask on perl form is to find out how to write the correct file signture to a perl produced gzip file. Brian
  18. bdw238

    File type and magic

    Silly me, How do I get the compress:zlib produced files to return /oraachieve/dag_t # file dag_t_1_1099_615050359.arc.gz: gzip (.gz) compressed data instead of /dag_t # file dag_t_1_1099_615050359.arc.gz dag_t_1_1099_615050359.arc.gz: data or International Language text from the file...
  19. bdw238

    File type and magic

    I using the compress::zlib library to gzip files in perl, which I have working. However, if use the `file` command on a perl procduced gzip file I get /dag_t # file dag_t_1_1099_615050359.arc.gz dag_t_1_1099_615050359.arc.gz: data or International Language text istead of (using gzip command)...
  20. bdw238

    ZOS Question

    Is it possible to run Unix cksum and sum checksums on the zOS operating System? Thanks Brian

Part and Inventory Search

Back
Top