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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by womp

  1. womp

    Accessing files from remote server

    What I am looking to do is: Create a Java Interactive program on Server A that will allow me to Add, Find or Delete employees from our Unix server. This server (Server A) has other applications on it requiring me to open and close those applications in order to add or delete people as they are...
  2. womp

    Accessing files from remote server

    I am totally new to the whole Java programming bit so point me in the correct direction if my question does not fit this forum. I wish to create a java applet (I think) on our primary server which I want to access through a browser on my desktop system several miles away and look at the...
  3. womp

    dns.log timestamp

    Hello, We are running bind 9.3.4 and I have anything dns going to it's own log file. When opening the log file though, I have no timestamps of when things happened. How do I put the timestamps for every line in the dns.log file? SLES 10
  4. womp

    Getting information from other HPUX machines

    Hello, I need to obtain free disk space information from other HPUX machines and report to the boss. I was hoping to write a script to do this but I was hoping I did not need to use rexec among other type of unsecure commands. Is there a way, a script, can login into another system, do a bdf...
  5. womp

    converting various Linux commands to HTML

    Hello, Is there a script, book, genius, that can tell me how to take various command output from linux (For example "cat /proc/cpuinfo") and create a HTML web page?? I want to do many commands, pipe it to another script and format the information in HTML?
  6. womp

    I do not get this

    I have an interactive perl script. The script Adds, Finds or Deletes a user from a Unix system. print "Add, Find, Delete, or Exit (AFDE)? "; $answer = <STDIN>; chomp $answer; while ($answer ne /^E\b/i) { find_user(); }elsif ($answer =~...
  7. womp

    Wiping out externel HD holding NTFS

    Folks, I have a drive that is hooked up to one of those enclosures that house several harddrives and is used, in my case, for storage of information. The drives I have in this enclosure has information from other systems they used to be hooked to. The one I am having problems with was once part...
  8. womp

    Wiping out externel HD holding NTFS

    Hello, when I try to wipe out the contents of a harddrive holding Dell fs and utilities, with a rm -rf command I am told that the files are read-only. So I change the permissions, as root, and try again, only to receive the same message. I then tried fdisk but that also did not wipe out this...
  9. womp

    interactive shell script case insensitivity

    Hello, I am trying to create a bash shell script that is interactive. A question is asked and an answer (Y or N) is required from the user. How can I make it so the answer given can either be a Y or N or a y or n? Here is the snippet I am having difficulties on: echo "Do you want to add users...
  10. womp

    Adding sums from two spread sheets and putting answer someplace else

    If you have 3 columns of numbers on one spread sheet and two columns of numbers on the second spread sheet What, if any, formula, could you have, to add all the numbers up on both sheets and put the answer on the third spread sheet?
  11. womp

    Starting Apache when booting up opensuse linux

    I have a script to start apache when my opensuse 10.2 boots up But after the booting is complete I log in as root, do a ps -ef | grep httpd and nothing shows Here is the script: #!/bin/bash # # apache # # chkconfig: # description: Start up the Apache web server. # Source function library...
  12. womp

    Testing and copying

    Hello, I am going through a large web file. Separating files from directories. Then I wish to check the permissions and ownership on each file/directory. I have started this script: #!/usr/bin/perl -w use File::Copy; $dirs=""; $files=""; @array=qx(ls -R /web/); foreach $files(@array) {...
  13. womp

    sshd with umask

    Does anyone know how to sftp files/directories from a Windows box to a Linux box keeping the permissions of the files/directories to: files 660 directories 770? That is, without, having to write a script changing permissions seperately?
  14. womp

    Sending only to those in aliases file

    Is there a way to configure sendmail emails to only send to those listed in aliases.db and anything else that comes to the site will simply be dropped?
  15. womp

    $ORIGIN

    I have two bind servers. One is the primary and the other is the slave. I am running bind 9.2.3. When named is restarted on the secondary it looks for updates from the primary. But when I look at the main domain zone my.site.com.zone, the first line in the file show $ORIGIN . (note the dot)...

Part and Inventory Search

Back
Top