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 gkittelson 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. hronek

    Finding process writing to a ghost file?

    When I say ghost file it is a file that you can not see by ls but it is taking up inodes and space on a mount point.
  2. hronek

    Finding process writing to a ghost file?

    On this system there are 22 development and test databases with over 1000 processes running at any time. We did take an educated guess and killed a process that brought it from 50G at 100% being used to less than 20G being used. I want to resolve this issue easier next time and find out what...
  3. hronek

    Finding process writing to a ghost file?

    We do not know what the file name is because we can not see a file. Can you use fuser without knowing the filenames? We are assuming that there are a number of ghost files since the inodes are very high in the directory that we think the ghost file existed.
  4. hronek

    Finding process writing to a ghost file?

    I had a file that started filling up by Gbytes and could not find out the process that was doing it. Someone must have removed the file but it was still out there as a ghost file. I could not find it by du -sk or ls. How can I find this file and map an OS process to it?
  5. hronek

    mutex thresholds on high performance CPU's

    I am sorry. I forgot to metion that this is the mutex for 5 seconds.
  6. hronek

    Users unable to eject CD-ROM

    If your cdrom is mounted to be shared to other machines then you will need to unshare your cdrom: >unshare /cdrom/cdrom0 Even if you force the eject, if something is sharing it still will not eject. Also keep in mind that some Solaris system take a while before you can mount a new CD on that...
  7. hronek

    mutex thresholds on high performance CPU's

    I am taking a look at mpstat output and noticed that my smtx (mutex) seems high from what I am use to. In the past when this parameter was above 200 Iwas concerned about my CPU performance. This box has some of those SUN high performance CPUs on it and I am getting mutexs that are...
  8. hronek

    How do you capitilize in ksh scripts

    A friend just figured it out This is an example. > LSTR=abc;CSTR=`echo $LSTR | tr '[:lower:]' '[:upper:]' `;echo $CSTR >ABC
  9. hronek

    How do you capitilize in ksh scripts

    I am trying to capitilize a string in a ksh script and can not figure out how to do so. Can anyone help me? Thank you, Steven Hronek
  10. hronek

    Sun Blade Spins CDrom

    I have a sun blade and when someone telnets into my box or I rsh out of it the cdrom light turns on and locks me from doing anything on it for about 3 secounds. I do not have anything in the CDrom. Is there a way to keep it from doing this?
  11. hronek

    Need a command to find out what ports are being used.

    I need some way of finding out what port numbers are being used. Is there some command that can do this?
  12. hronek

    pass oracle variables to shell script variables

    There are a number of ways you can do input and output from sqlplus from a UNIX shell script. sqlplus scott/tiger@db << EOF > output_file sqlplus ... ${SHELL_VAR} ... EOF or sqlplus scott/tiger@db @sqlfile.sql ${SHELL_VAR} > output_file The sqlfile.sql would be your sqlplus code in a file...
  13. hronek

    max number of processes

    How can you find out the max number of processes for a system and user acount?
  14. hronek

    mapping devices from sar -d

    I am trying to map the devices I get from sar -d to actual file drives. The systems are raid 5. So far I can take the device number that I get from sar -d and map it more than one file drive in my vfstab or df -k. i.e. sar -d gives me: device (sd77), (sd77,a), (sd77,b)…(sd77,h) grep &quot...

Part and Inventory Search

Back
Top