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

  • Users: rraj
  • Order by date
  1. rraj

    Can't seem to kill a process

    How the process was started? If it is started by inittab remove it from there or check you RC scripts.
  2. rraj

    get execution date or / and time

    What is the difference between updated and modified ? How to know when the file was created ? Thanks. Raj.
  3. rraj

    A user deleted several files from t

    Just give the entry from /etc/passwd file of that user.
  4. rraj

    Flush all I/O's to disk

    Execute "sync" command twice or thrice
  5. rraj

    how to list only directories

    ls -l | grep '^d'
  6. rraj

    looking for help with Automated FTP problem

    Why don't you try like the following. Write a script and call it by cron. ftp -i -n fserv << END quote user raj quote pass raj123 lcd user2 bin cd chci mput *.chci bye END Note : 1. at raj123 you have to give the real password. 2. use absoulte path name at cd & lcd. Ex: lcd /home/user2...
  7. rraj

    logging reboots

    The very simple method, I follow is last shutdown | sed -n 1,1p last reboot | sed -n 1,1p execute the above two commands as script. Most of the time it works. ( I have to calculate the hours and minutes, Calculating inside a script is a big headache(!) Raj.
  8. rraj

    Similar to VNC

    I think this is not the answer for your query. Just a point. Use &quot;Audit&quot; facility of AIX. But I am sure that you'll be tired to monitor all the events.
  9. rraj

    move/rename script

    hello, use this script if you are comfortable. ext=`date +%d%m%C%y` for i in /home/* do fn=`echo $i | cut -f4 -d '/'` mv $i /home/aaa/$fn.$ext done Note: it will move all the files from the home directory. If you want to move only specific files, give it in the &quot;for loop&quot; or store...
  10. rraj

    Problems with Installing AIX 4.3.3

    Hi, Just boot the system with the 1st AIX installation CD. It'll take you to &quot;Welcome to Base Operating System Installation and Maintenance&quot;

Part and Inventory Search

Back
Top