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!

Search results for query: *

  • Users: womp
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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...
  4. 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?
  5. 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 =~...
  6. 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...
  7. 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...
  8. 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?
  9. 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...
  10. 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) {...
  11. 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?
  12. 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?
  13. 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)...
  14. womp

    Opening a link gives error that I do not understand

    On suse linux 10.0 I open a document which has a link to a web site. Clicking on that link gives me the message: There was an error launching the default action command associated with this location We have opened this text doc. by using cat <document name> from a terminal window on the linux...
  15. womp

    Installing software into other than the default location

    Under yast in SLES9 can you install software under a different location. Example: I want to install apache under /opt instead of where is by default would go Can this be done??
  16. womp

    Installing apache into another location

    I have SLES9 and wish to insert the disk and install apache on this server. The question I have is: Under SLES9 can you tell yast to install an application under /opt instead of it's default location? If so how?? Thanks
  17. womp

    Bind on Sles 9

    Hello, I am having problems with updating the slave dns server the serial on the master server is 2006011000 the serial on the slave server(same zone) is 2005121400 I have set the refresh on the slave server to 5 minutes The options on the slave server is: Options { forwarders {...
  18. womp

    snmpwalk

    Everytime I use snmpwalk x.x.x.x public it times out I am on a suse box and cannot pinpoint what would be causing this timeout issue. Any one know?
  19. womp

    redirecting information in an array to a file

    Hello, I am trying to redirect information in an array to a file which looks like this: open(FINAL_USER, "print @Final_user | > /tmp/Deleted_Users "); I keep receiving "Unsuccessful open on filename containing newline at ./delete.pl line 107, <STDIN> line 5. Deleted_Users: No such file or...
  20. womp

    settings of a nic card

    I am running redhat 9.0 Everytime I reboot the server the nic card defaults back to autoneg and 10HD Where do I make the settings I want stay even after a reboot?

Part and Inventory Search

Back
Top