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 SkipVought 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. perda04

    UX:ftp: ERROR: Login failed.

    Do you have a user 'ftp' defined in /etc/passwd ? I don't believe it will affect your current problem but it should be there.
  2. perda04

    testing help and running program

    You could check certain directories that might not be in your $PATH first, then look at 'whereis', 'type' or the other variants listed above. if [ -x /sbin/swapadd ] ; then SWAPADD=/sbin/swapadd else SWAPADD=`which swapadd` fi
  3. perda04

    DROPDOWN LISTS FROM ARRAYS HELP

    Have a look at the documentation for CGI.pm at http://stein.cshl.org/WWW/software/CGI/#scrolling_list To change the example to use an array, add 'scalar' ahead of scrolling list scrolling_list( -name=>'list_name', -values=>['eenie','meenie','minie','moe'], -default=>['eenie','moe']...
  4. perda04

    new to Unix

    http://distrowatch.com/dwres.php?resource=major http://www.tldp.org If you want to buy books, look at O'Reilly. http://linux.oreilly.com/
  5. perda04

    Automatically import the web logs into the database

    If you are using apache, the httpd.conf file will tell you the format of the log file. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent # # The...
  6. perda04

    Date Manipulation Using Bourne Script

    WilliamRobertson did fine work on this here http://www.williamrobertson.pwp.blueyonder.co.uk/code/shift_date.awk.txt As mentioned here http://www.computing.net/unix/wwwboard/forum/6225.html
  7. perda04

    AutoExpect - Automate Telnet Scripting and other programs

    Autoexpect is included with the expect package. The script it will generate will probably replicate your keystrokes and movements similar to winrunner but will most likely require cleanup. From a dos prompt type autoexpect followed by the commands you want to executed and see if creates a script...
  8. perda04

    How to figure out the diskspace used?

    #!/bin/ksh MAILTO="user@host.com" echo "df -k output for `date` `uname -a`" > /tmp/df.out case `uname -s` in SunOS | Linux | OSF1 | UNIX_SV | FreeBSD ) if [ -s "/etc/redhat-release" ] ; then cat /etc/redhat-release >> /tmp/df.out ; fi set -- `df -k | sed -e 's/%//g' | awk '/^\/dev/ {...
  9. perda04

    script to check a dynamic ip

    http://www.computing.net/solaris/wwwboard/forum/4287.html
  10. perda04

    Sendmail command line How to add headers

    Have a look at the command mail. echo "This is a test" | mail -s "subject" user@hostname.tld
  11. perda04

    Solaris - Format Utility - Multi Disk Formatting

    Based on a disk scrubbing script from Solaris, this won't make it faster but will automate multiple disks. --David Perry #!/usr/bin/ksh # set -x # scrubbing disks with Solaris # reboot -- -r # touch /reconfigure ; reboot echo "devfsadm -v" devfsadm -C devfsadm -v DISKLIST="/tmp/scrub$$" touch...
  12. perda04

    FTP / UNIX

    You can script the MS ftp client. http://www.support.microsoft.com/?scid=96269
  13. perda04

    swinstall

    swinstall -s /usr/tmp/TIVsmCap.depot

Part and Inventory Search

Back
Top