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 TouchToneTommy 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. stanhubble

    Smart Array controller on HP ML350 G6

    We gave up on bare metal for 5.0.7 with the G5. Mostly switched to linux but did have some sco installs as vm's. 5.0.7 works just fine as vm as long as you don't use the vmotion options in a larger vmware installation.
  2. stanhubble

    Does FTP have Auth SSL option?

    if you know the path and filename that you want to retrieve, curl is a good option to script a ftps session
  3. stanhubble

    Trimming nohup.out files periodically

    If you want any of the data copy the file to somewhere else. on the original file: > nohup.out this will clear out the file and leave the original file handles in place, so the original service will still append to it.
  4. stanhubble

    access second partiton on array

    what filesystem "type" did you try to create. some of them have size limitations.
  5. stanhubble

    Any way to parse awk to just show me the host_name of a path?

    you could just add -> cut -d":" -f1 to the end of your line #ypcat -k auto.home | grep -w ireland5 | awk '{print $2}'| cut -d":" -f1 or you can get into substr and index within the awk statement
  6. stanhubble

    Renaming a file using a wild card

    Hey a basic one that even i can answer: for i in *.content ; do mv $i `basename $i`.pdf ; done
  7. stanhubble

    perl script problem

    if firefox is asking to save the page as a file, it has not recognized the "mime" type. it is either a type that firefox does not know how to handle or the http header is misformed or missing. you can use wget with the --save-headers option to see what is actually being returned.
  8. stanhubble

    at daemon wierdness....

    Again thanks for the help. I found a workaround, which is to force the timezone to gmt, schedule the at job, and restore the original timezone. TMPTZ=$TZ;TZ=GMT at 11:00 am < /usr/bin/startsrv TZ=$TMPTZ 'at' serves a different purpose than cron. with 'at' you are able to schedule an event...
  9. stanhubble

    Century Parameter

    yes just change the client scripts, it's just a startup parameter.
  10. stanhubble

    at daemon wierdness....

    Thanks the effort Laurie, I don't know what version of linux/unix that site is catering to but it is not any of the posix compliant distros. (debian, redhat, suse) all the systems i am trying to get this to run on are SLES, opensuse or sco openserver 5.
  11. stanhubble

    at daemon wierdness....

    no the -t flag would force the time format to match the touch format [[CC]YY]MMDDhhmm[.ss] my assumptions are that at 11:00 am GMT/UTC it is: 3:00 am in PST (-8) (not 18:00 which is +7) 6:00 am in EST (-5) (not 15:00 which is +4) 7:30 am in NST (-3.5) (not 13:30 which is +2.5) which is...
  12. stanhubble

    at daemon wierdness....

    1 - No time is kept properly (ntpd), but the machines are in multiple timezones (time differences in examples is just the difference of when i ran the commands). 2 - not possible because the machines are in different timezones and i want them all to run at 11:00 am GMT or 6:00am EST ...
  13. stanhubble

    at daemon wierdness....

    Maybe i have been staring at this too long but it doesn't make sense. I have servers across the continent that i wish an "at" job to run on at the same time. sounds simple just use the UTC option in the "at" statement, but it doesn't look right to me. srv001:~ # date Tue Feb 21 10:19:27 PST...
  14. stanhubble

    Problem starting Samba

    which version of samba? where is the config file (smb.conf)? normally it would be started with: /etc/init.d/samba {start|stop|restart|enable|disable} or /etc/init.d/smb {start|stop|restart|enable|disable} either one of these calls the bin file: $SAMBADIR/sbin/smbd -D -s /etc/samba.d/smb.conf
  15. stanhubble

    Mount NFS Openserver 6 from ubuntu 10 to

    For root equivalency, on the sco box in /etc/exports, on a single line: /u/zfile -root=ubuntu generically (man exports): directory [ -option[, option ]] ...
  16. stanhubble

    Mount NFS Openserver 6 from ubuntu 10 to

    i have found that you must tell linux that sco is specifically version 2. I have also had the most success when keeping the block size down. mount -o nfsvers=2,rsize=1024,wsize=1024 192.168.10.103:/u/zfile /mnt/unix
  17. stanhubble

    Unable to delete print job

    i have found the worst culprit with remote printing to be sco itself. if you are using sysv and not cups for remote printing make very sure that the :ex option is NOT in the /etc/printcap entry for the printer.
  18. stanhubble

    Help setting up a VPN on Cisco 1800 series...

    ok..but then you still need to define the tunnel interface Tunnel0 ip address 10.99.99.1 255.255.255.0 tunnel source <insertlocalexternalip> tunnel destination <insertremoteexternalip> ! and on the router interface Tunnel0 ip address 10.99.99.2 255.255.255.0 tunnel source...
  19. stanhubble

    Help setting up a VPN on Cisco 1800 series...

    I will assume that the routers can't ping each other because of an addressing issue not a filter. If the 2 routers can't ping each other you can't setup a vpn tunnel. you have to tie each end of the tunnel to an addressable interface.
  20. stanhubble

    Adding SCSI drive

    sorry been a long time since i ran mkdev hd..... use mkdev .scsi instead

Part and Inventory Search

Back
Top