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 Rhinorhino 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. lazyrunner50

    [java] versus java -Xms512M -Xmx... Linux ps problem

    I'm having a very strange problem with a package I just released. If I release the package under one directory, it shows [java] when I do ps, and if I release it in another directory it shows the regular process string (java -Xms512M -Xmx1048M...). At my company, we have our environment set up...
  2. lazyrunner50

    Kshell test function

    Ok, so this is a simple question, but I can't find any explanation on google. Anyway, what is the difference between [ and [[ for test conditions? For instance: if [[ -z $myVar ]] && [[ -z $myVar2 ]]; then do something fi and if [ -z $myVar ] && [ -z $myVar2 ]; then do something fi
  3. lazyrunner50

    Automounting home directories

    If I have an NFS server which is exporting several users home directories, and I want to be able to mount the home directories on another box on my LAN, do I need to put each similar to this: $cat /etc/auto.master /home auto.home $cat /etc/auto.home testUser nfsServer:/export/home/&...
  4. lazyrunner50

    Hosts/DNS/DHCP confusion

    I'm using CentOS 5 (2.6.18-53.1.6.el5) and trying to figure out how all the networking files work together. Ok, so I have a wireless router and have set it up as a DHCP server and I get DNS "automatically from ISP". I realize DNS would not have the hostnames for the computers on my LAN, so I'm...
  5. lazyrunner50

    Using IPP/SMB with CUPS to print to file

    Ok, so I'm trying to get more familiar with CUPS, and I've been trying to figure out how to print to a file, and what exactly that is in the first place. I know that when you print to a file, you're not actually printing a file on a printer, but creating a document. Outside of that, I don't...
  6. lazyrunner50

    Killed /var...now what?

    Ok, so I am trying to mount /var on a new hard drive I just set up. I had everything working fine (on my primary hard drive), and then I added a new hard drive. I set it up (fdisk, mkfs), and then I tried to set up /var on /dev/hdb2 (the second partition on my new drive). I did the following...
  7. lazyrunner50

    Installing RHEL over HTTP from Windows on local network

    I'm trying to install RHEL AS4 on a machine on my network. I am currently running a website from my Vista machine using IIS6. I have my website set up as follows: C:\inetpub\wwwroot\inst\RedHat C:\inetpub\wwwroot\inst\RedHat\base C:\inetpub\wwwroot\inst\RedHat\RPMS...
  8. lazyrunner50

    rpmbuild problems

    I'm trying to update some packages on my RHEL AS 4 machine, and for some reason I can't build several of the packages. I'd like to just download the pre-built rpms, but since I couldn't find them, I'm trying it myself. Anyway, as you can see below, I'm logged in as root, but it's still saying...
  9. lazyrunner50

    High pitched sound after several minutes of normal operation

    Ok, so I have had Vista Business up and running for about a month or so now, and it seems to work fine, but after about 30 minutes or so (sometimes after only about 10 minutes), a loud high pitched sound comes over my speakers. Usually I'll be watching a video or listening to music, and it will...
  10. lazyrunner50

    Simple WShell question

    Ok, I think I've almost worked out all the problems with my webpage, but right now, I'm trying to implement a counter for a slideshow which will wait for 5 seconds and then move to the next image. Basically what I'm doing is querying my database, getting the image names, and putting them into...
  11. lazyrunner50

    Force an array to accept variable in declaration

    I am trying to declare an array given the number of results in the resultset, but whenever I put any sort of variable in the declaration of the array, it gives me this error: Microsoft VBScript compilation error '800a0402' Expected integer constant I've tried numerous ways to do this, but...
  12. lazyrunner50

    Problems with GRUB

    I have installed Fedora Core 3 and WinXP SP2 on my machine, and they were working happily with eachother (except for the fact that I have not found all the RPMs for my Linux version...which is a whole other problem...). Anyway, I was messing around with the settings with my video card (X800 XT...
  13. lazyrunner50

    Using ssh to run multiple commands

    I am trying to use ssh to log in to several linux boxes, check if the processes are running on each, and if a process is down on any one of the boxes, shut down all the processes on all the boxes, and then bring them all back up again. Here's what I have so far: ssh userName@remoteBox...
  14. lazyrunner50

    Changing style attribute

    I have a table whose cells I want to be able to change when the user rolls over them. I keep getting errors, and seeing as how IE is so helpful explaining what the errors are, I can't figure it out!! Here's what I have so far: <a href="mySite.asp?somePassedVal=2"...
  15. lazyrunner50

    Telnet help - batch files

    Hey. Not sure if this is the right place to ask this, but I am trying to create a batch script that will open two windows (on an XP machine), log on to two Unix boxes using telnet, navigate to a directory and run a script I have created. I know I can create a cron to run these scripts, but...
  16. lazyrunner50

    DECLARE CURSOR must be the only statement in a query batch

    I am using a cursor at the top of a *.sql file to loop through the records of a table, and am inserting these values into a temporary table which I am using within the loop. While I am within this loop, I move through the records in the table to try to match up the current value with the one...
  17. lazyrunner50

    Form validation not working

    Hey. I am having a problem with my form submitting even though I do not want it to. I am using a script that checks to see if three radio buttons are selected. If they are all selected, it will go on to the processing page, otherwise it is supposed to alert the user and stay on the same page...

Part and Inventory Search

Back
Top