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: tumichaelf
  • Content: Threads
  • Order by date
  1. tumichaelf

    Script for checking if a service is running, and starting it, if it is not

    Hello, Thanks-in-advance first off for reading this. I need a windows script, that will run on Windows Server 2008 R2 Standard Edition, that will check if 2 processes (vpxd.exe and tomcat6.ext) are running. If they are not running, I need the script to start either one (or both). I have 0...
  2. tumichaelf

    Lenovo T410 with a Dock and 2 External Monitors

    Hello All, While I think I already know the answer to this, I have a Lenovo T410 with a dock (1 VGA & 1 DVI output) and 2 external 22" monitors. I successfully have the external monitors running, but I cannot get the laptop monitor to work in conjunction with both external monitors. Is there...
  3. tumichaelf

    Outlook 2007 - Cannot Delete Items - Cannot Expand Folders

    Hello All, I am connected to an exchange server at work, but I accidentally dragged a parent folder into a child folder (and yes, it let me). Even though I hit cancel very quickly it nested thousands upon thousands of folders into each other. The problem I have is that the hard limit for...
  4. tumichaelf

    Configure Logging for OpenLDAP on SLES

    I run OpenLDAP on a SLES10 box and as it uses "syslog-ng.conf" rather than "syslog.conf" I am having difficulty configuring ldap to log. If this were a "syslog.conf" file I would simply add local4.* /var/log/ldap.log, but as it is not, how do I add this to "syslog-ng.conf
  5. tumichaelf

    script to find a missing pattern and add text

    I am writing script to read through a bunch of data, the script is below #!/bin/bash rm -f output.out files=`find -name hgrc` for file in $files ; do srch=`grep -iq "[hooks]" $file` if [ "$srch" == "0" ] ; then echo $file >> output.out fi done essentially, it is looking through the hgrc...
  6. tumichaelf

    BIND: Overriding DNS for certain Servers

    Hello, I have RHEL 5.7 running BIND in my environment and I need assistance in configuring a new change. Currently "domain.com" is us, and our IP Schema is 10.28.140.x. I have been asked to override a few servers that belong to "otherdomain.com" and use the IP Schema 10.96.13.x. Our...
  7. tumichaelf

    Does yum remove obsolete packages (RHEL)

    Hello, When I run "yum update", does this remove the obsolete packages as it upgrades to newer versions? I ask because the Information Security group at my company has shown that the servers I manage have an older kernel package on them, even though they have been completely upgraded, and...
  8. tumichaelf

    convert a sed 1 liner to an awk 1 liner

    I have am trying to learn awk, and what I want to do is covert sed -i 's/check_disk\ \-w\ 20\%/check_disk\ \-w\ 15\%/g' /var/tmp/nrpe.cfg into an awk 1 liner similar to awk '/^command\[check_disk\]=/&&!/-x \/boot/{$0=$0 " -x /boot"}1' /var/tmp/nrpe.cfg > /var/tmp/nrpe.cfg.new (written by feherke...
  9. tumichaelf

    awk script to add text to a file

    Hello, I am new to awk, and while I can do using other scripting tools, I really want to learn how to properly use awk. I have a file (/var/tmp/nrpe.config) that has a line "command[check_disk]=/usr/local/nagios/libexec/check_disk -w 20% -c 10% -x /shared -x /software" that I need to add text...
  10. tumichaelf

    Display Unused Disk Space

    I have an HPUX instance attached to a SAN. Supposedly there is 7.5TB split between this and 1 other HPUX server. I am using the bdfmegs script to get free space and all I see is File-System Gbytes Used Avail %Used Mounted on /dev/vg00/lvol3 20 0 19 2% /...
  11. tumichaelf

    Convert MIPS to gHz

    All, This is the closest board on this forum for this topic, as we are using RHEL and we have some mainframes (I have never touched or seen them though). My question is, does anyone have a way to convert MIPS to gHz? I realize there is no straightforward answer, and before I get IBM, HP or...

Part and Inventory Search

Back
Top