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: *

  1. Draxenato

    Need a product (Linux/FreeBSD) similar to www.iisworks.com/fileman

    Might be a bit of overkill for your needs but Webmin (www.webmin.com) has an integrated file manager (Java based) that's pretty nifty. Of course webmin comes with a shedload of other very powerful features too, but these can be restricted if you need this for your users.
  2. Draxenato

    loop problems

    Not an elegant solution I know, but what about having the script rerun itself in the last line ?
  3. Draxenato

    FTP and TELNET restrict the number of connections

    AIX 4.3 doesn't have any native mechanisms to do what you want. Your best bet is to upgrade inetd to xinted (http://www.xinetd.org/) it'll do everything you want and more, it really is a vast improvement over inetd, highly recommended. Alternatively you could replace the stock ftpd with wu-ftpd...
  4. Draxenato

    Menu Program

    I think it kinda depends on what those batch files run from NMENU actually do. I'm guessing they perform various housekeeping tasks, prolly on the Netware volumes, which won't map to Linux filesystems. Taking a look at those batch files, working out what they do and replicating them as shell...
  5. Draxenato

    Help moving data.

    Personally I'd script it, #!/path/to/shell find /home -name badmail | while read file do mv $file $file.old done
  6. Draxenato

    Is korn shell available for Red Hat

    I think bash would be the preferred choice, it has (AFAIK) more korn-type functionality than pdksh. Out of interest, why do you need the korn shell ? Just curious.
  7. Draxenato

    No space left on device?

    Is /var/run softlinked to another filesystem maybe ? Have you tried creating the file manually ? touch /var/run/crond.pid
  8. Draxenato

    sending internet email via mailx

    Can your machine resolve hostnames correctly ? ie `nslookup www.cnn.com` If that works then your machine can deliver on it's own. Make sure you've got sendmail running as a daemon, `sendmail -bd -q15m` if it isn't. In this case the DS macro can be null. If the nslookup command bombs then you'll...

Part and Inventory Search

Back
Top