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 strongm 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. Marcel1958

    Savevg

    This is the script we daily run. The tape goes to another location. #!/usr/bin/ksh ########################################## # # # By Marcel Bogaard # # # # Make first an savevg of all your...
  2. Marcel1958

    Savevg

    Bill, When i run the command this is the result: # savevg -f /tmp/oravg1 -v -i -e oravg1 Creating information file for volume group oravg1. Creating list of files to back up.?*+ not preceded by valid expression. Backing up 6 filesBacking up to /tmp/oravg1. Cluster 51200 bytes (100 blocks)...
  3. Marcel1958

    Savevg

    This is what we do for disaster recovery To save the information about your vg use this command: savevg -f /tmp/xxxx -v -i -e xxxx The xxxx is the name off your vg. This saves only the information about the vg and not the data Then make an mksysb In case of an recovery you need to restore...
  4. Marcel1958

    Tar and zip

    I have to deliver a file what is tarred and zipped. Now i do first the tar and than gzip. The file extension is .gz but they want the extension .tgz In Linux i found the for the tar command the parameter -z to compress and tar but in AIX i cannot found this. How can i create the .tgz file in...
  5. Marcel1958

    What performance tools are available on AIX?

    Look with Google for nmon. It is free of charge and writen by Technical Support, IBM
  6. Marcel1958

    Logging a topas/monitor into a file

    NMONO must be NMON
  7. Marcel1958

    Logging a topas/monitor into a file

    NMONO is an not supported IBM tool. Look with Google for NMON and find more information about this tool. The tool writes information in an file. There is also an script to convert this to an excel file. For Excel there is an analyser tool witch creates graphics.
  8. Marcel1958

    4.3.3 to 5.2 TSM server

    We have upgraded from AIX 4.3.3. to AIX 5.2 We still use TSM 4.2 with no problems. This is however an unsupported situation.
  9. Marcel1958

    Disaster Recovery TSM Course?

    Try IBM
  10. Marcel1958

    problem with if and else

    The | was the problem. Thanks for your help
  11. Marcel1958

    problem with if and else

    Thanks PHV, but i get the message from the else statement : /dev/lvpsf is xx 89 % full and mounted on /var/psf while [ "$gebruik" -gt "50" ] && [ "$mounted" = "/var/psf" ] is true in the if statement
  12. Marcel1958

    problem with if and else

    Indeed. But why get i the line /dev/lvpsfs is xx 85 % full and mounted on /var/psf/segments
  13. Marcel1958

    problem with if and else

    I wrote the an script to check the file systems. df -k | tr -d "%" | grep dev | while read filesystem blocks free gebruik A1 iused mounted do if [ "$gebruik" -gt "50" ] && [ "$mounted" = "/var/psf" ] | [ "$gebruik" -gt "90" ] && [ "$mounted" =...
  14. Marcel1958

    mail command problem

    Thanks all. The solution of rzs0502 works ok
  15. Marcel1958

    mail command problem

    Thanks rzs0502. I have seen this FAQ but mij problem is that the script stops when i use the mailx command. If i run the script without this is works ok.
  16. Marcel1958

    uuencode problem

    I send an file as an attachment with the mail. The receiver gets the file not as an attachment but in incorporated in the mail. The text is also wrong. With an other file it works oke. The command is: uuencode /prt/$1/input.mail/Result2N.txt.130504-133640...
  17. Marcel1958

    mail command problem

    I need to monitor the disk space so i wrote this little script to send an email when the free space is to low. Problem is that when the first problem is found the script stops. When i do only the echo command it works ok. user0="root" user1="mg.bogaard@xxx.nl" user2="r.van_der.vliet@xxx.nl"...
  18. Marcel1958

    check if on position 1 in an cell is an character

    in an cell i have the value : v 8,00 now i have to check if there is an v in the first position and if so fill the new cell with 8,00 if there is another character then the new cell must be empty
  19. Marcel1958

    sed: 0602-404 Function s:\(.*\)\(.\):\1,\2: 738 0 canno

    Sorry, i was very short. I received the following message: sed: 0602-404 Function s:\(.*\)\(.\):\1,\2: 738 0 cannot be parsed. What i do is print the variable $DATUM Then som spaces folowed by "${GEMID01}" | sed -e 's:\(.*\)\(.\):\1,\2:' So the print command is...
  20. Marcel1958

    sed: 0602-404 Function s:\(.*\)\(.\):\1,\2: 738 0 canno

    The following line gives the error: print "$DATUM"" ""${GEMID01}" | sed -e 's:\(.*\)\(.\):\1,\2:'"$GEMID02"" ""$TELAANTAL" The problem is "$GEMID02"" ""$TELAANTAL" whithout this it works oke

Part and Inventory Search

Back
Top