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: mihab
  • Order by date
  1. mihab

    Backup IBM DB2 with TSM

    you can backup db2 with the help of db2 control center first you have to configure the database recovery parameters : ts_password, tsm_nodename, tsm_mgmtclass
  2. mihab

    eServer p5 520 - CD Boot

    bootlist -m normal cd0 reboot the machine man bootlist
  3. mihab

    how to log any ftp or telnet session

    it is man ftpd
  4. mihab

    rcp changed after we upgraded to AIX 5.1

    you can use the rsh to change ownership or modes of files on remot system The aix documentation for rcp Flags -p Preserves the modification times and modes of the source files in the copies sent to the destination only if the user has root authority or is the owner of the destination...
  5. mihab

    Identify Individual CPU Usage

    there is a free tool to analyze AIX performance : nmon look at the http://www-128.ibm.com/developerworks/eserver/articles/nmon.html
  6. mihab

    rlogin question

    also take a look at /etc/hosts.equiv This file, along with a local user's $HOME/.rhosts file, defines which users on foreign hosts are permitted to remotely execute commands on your host. The rshd, rlogind, lpd, and srcmstr programs all use this file to determine remote user access.
  7. mihab

    Mirror disks

    You can use smitty to acomplish this. smitty storage and smitty install. It would also be wise to take a look System management guide : topic Physical and Logical Volume Storage Management Tasks
  8. mihab

    Echo Question

    maybe a small script like this : var="Object=\"new\"" while read -r line do if [[ $line = $var ]] then echo $line exit fi done < input.file
  9. mihab

    [b]XCOM from Unix box to share drive[/b]

    You could do something like this mv file1 file1.$(date +'%m%d%y') then mv again to the shared drive
  10. mihab

    date in format 31/10/2004

    date +"%m/%d/%Y" like var1=$(date +"%m/%d/%Y") echo $var1
  11. mihab

    A new pseries 7028-6E4

    try with smit; like smitty mirrorvg
  12. mihab

    Is it possible to suppress 0653-436 errors?

    or you could redirect errors to a separate file
  13. mihab

    Is it possible to suppress 0653-436 errors?

    try redirecting errors to /dev/null
  14. mihab

    commenting the same line in multiple files

    use sed ; something like this : sed 's/export SERVER=`hostname`/#export SERVER=`hostname`/' .profile

Part and Inventory Search

Back
Top