Recent content by SteveM

The friendliest place on the web for anyone with an interest in aquariums or fish keeping!
If you have answers, please help by responding to the unanswered posts.
  1. Plants

    Plants

  2. S

    Quick Linux question

    That's probably a reasonable way to execute a command for each username. for i in /home/* ; do echo passwd -e `basename $i` ;done hmmm - when I do passwd -e to an account on my debian system I can't log in at all (using ssh). You might want to test its effect on your system before you hit...
  3. S

    Quick Linux question

    Yeah - I guess "rof" didn't look cool enough. :) Try 'help if' and 'help for' in bash to get an explanation of those commands ('info bash' if you've got a few hours to kill). 'man test' or 'info test' will explain the many functions it can do.
  4. S

    Quick Linux question

    "test -f" checks to see if $j is a file. This is to avoid trying to copy "." and ".." from /etc/skel. If you have any directories in /etc/skel that you want copied, then this will be a problem. And as bzbee said, the fi is end if (if spelled backwards). Before you change the echo's it is...
  5. S

    Test Kits

    I have that kit, and I bought it for the same reason you described. It has the same reagents/color charts as the individual hagen tests, so it's not any less accurate than other test kits I've used. I think Bigals also sells the individual reagent refills too, so you can replace only what you...
  6. S

    Quick Linux question

    Try this - for i in /home/* ; do (for j in /etc/skel/.* ; do if test -f $j;then echo $j $i;echo `basename $i` $i/`basename $j`;fi;done);done if it looks right to you, then change the first echo to cp, and the second echo to chown
  7. S

    Quick Linux question

    You can't copy the files at all or you want to copy them all at once?
  8. S

    3rd Party Goldfish disaster

    Maybe something in the sand? If it's from the LFS you'd think it'd be OK, but you never know. I think I'd be skeptical of the pH reading until I tested it myself. If I used a decent test kit to measure someone's pH I don't think I'd tell them "6ish" was the result. ;) I know my LFS uses test...
  9. S

    3rd Party Goldfish disaster

    "6ish" pH might be the cause itself - if it is really near 6 that's well off the preferred range for GF. http://www.koivet.com/html/articles/articles_details.php?article_id=60&category=12&name=Water%20Quality First, if the pH is too low, a condition within the fish called "Acidosis" results...
  10. S

    I need EMERGENCY help

    Here is a link that explains how to measure your CO2: http://www.csd.net/~cgadd/aqua/art_plant_co2chart.htm I have no direct experience, but I think you are asking for trouble to put CO2 into a tank with that low KH. Sorry but I have to run to work now, see the following for more...
  11. S

    What is the best temperature for my tank?

    Whatever it is set to now is probably right :) I think in most cases a stable temperature is more important than the "right" temperature. And with that many different kinds of fish I can't imagine there is a "right" temperature for all of them.
  12. S

    LFS water params

    I just picked up a blue gourami from my lfs, and while patiently letting the temperature equalize before starting to acclimate him, I figured why not test the water from the bag. It's pretty bad when testing someone elses water seems like a good way to kill some time :oops: Anyway, here's...
  13. S

    Testing tank parameters?

    5ppm nitrite is pretty bad - if the fish doesn't seem stressed I wouldn't panic, but 25 to 50% water changes would probably be a good idea for a few days to see if you can get that level down. I think I've seen one or two of the ammo-lock type chemicals that claim to handle nitrite also, but...
  14. S

    milky water???

    I think mattrox is right - between the 100% substrate change and 85% water change (if I read your post right), I'd say you probably upset your biofilter just a bit. :) If your filter was not running for a few hours while you did all that work on your tank it may have upset the bacteria in there...
Back
Top Bottom