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 gkittelson 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. gjandrews35

    Solaris DiskSuite, boot from detached disk

    How do you.. "write the bootblock to the second disk to make it bootable."
  2. gjandrews35

    VBA Function Decimal back to IP

    PHV has a great function to convert an IP to its decimal equivalent. Public Function ip2num(ip) Dim i, a, n a = Split(ip, ".") n = CDbl(0) For i = 0 To UBound(a) n = n * 256 + a(i) Next i ip2num = n End Function Works like a charm, now I am looking for a similar function to convert a decimal...
  3. gjandrews35

    VBA Function to Convert IP to Decimal

    Excellent. I knew there was a more elegant way of doing this :) The decimal (IP) makes for quick and easy sorting of a list containing IP's. My next task will be to "nslookup" the IP and get its FQDN.
  4. gjandrews35

    VBA Function to Convert IP to Decimal

    I have been scouring the web looking for a VBA function to use in Excel to convert an IP address to its decimal representation. I did not find any "open source" functions that would accomplish what I am looking for. So I hacked together this function as a starting point. I am looking for...
  5. gjandrews35

    init (1M) Error on startup.

    Ah well I had hoped that I would not have to do that. [cannon] Thats so Windoze... In any case the re-install is under way.. How would I find out the dependencies of "init" ? ie what files/libraries etc.. make up init ? GJA
  6. gjandrews35

    init (1M) Error on startup.

    I have checked both /var/adm/messages[.0-1] and dmesg. Neither reveal anything, messages just shows the host going down on a signal 15. dmesg just reports a date/time stamp. I have looked at init on the host and the one on the CD. They are both the same 48,984. Would it help if I...
  7. gjandrews35

    init (1M) Error on startup.

    It does not get very far in the boot process. It gets as far as .. Initializing Memory Rebooting with command: boot -s Boot device: .... SunOS Release 5.10 .... Use it subject to license terms. And thats it before the unceasing WARNING. No it will not boot with either 'boot' or 'boot -s'...
  8. gjandrews35

    init (1M) Error on startup.

    I am getting this error upon boot up of a Ultra60 running Solaris10. WARNING: init (1M) exited on fatal signal 9: restarting automatically and it never gets beyond that. It just keeps displaying that error over and over.... I can boot from a CD with no problem. But then I don't know what...
  9. gjandrews35

    Dotted decimal to hex

    I am trying to convert dotted decimal strings into their hex equivalent and vice versa... For example 0.0.244.175.197.51 to 00.00.F4.AF.C5.33 or 0000f4afc533 or 00:00:F4:AF:C5:33 any ideas ? I know that you can print decimals as hex with "%x".. I am writing a perl program to map switch ports.
  10. gjandrews35

    Convert IP to Hostname

    I didn't mean to imply I wanted to run the program 'nslookup'. I was just using that name as the name of a possible function as an example ;-)
  11. gjandrews35

    Convert IP to Hostname

    I am looking for an Excel function/VB that will take an IP and return a hostname and vice/versa. Example A1 216.45.19.33 B1 =nslookup(A1) www.tek-tips.com would be in Cell B1 A1 www.tek-tips.com B1 =nslookup(A1) 216.45.19.33
  12. gjandrews35

    Solaris 10

    Has anyone 'deployed' Solaris 10 ? I have setup a test server to try it out and the one thing I found is that you seem to need a working Solaris 9 box and upgrade to 10 ontop of it. The 'beta' 10 I got was missing alot of libraries/compilers etc.... So I had to burn a set of '9' cd's and do...
  13. gjandrews35

    sudo how do I get it working on Solaris?

    You can find sudo here on sunfreeware http://sunfreeware.secsup.org/programlistsparc8.html#sudo as a package for Solaris8 for Solaris9 http://sunfreeware.secsup.org/programlistsparc9.html#sudo Glenn.
  14. gjandrews35

    Display port on Set

    Is there a way to display the port a set is on, on the sets display ?
  15. gjandrews35

    Busy Verify button

    In the Avaya Definity Little instruction book there is a feature called 'Busy Verify' but I can't seem to find out how to add it ? Any ideas ? They mention ACA and Security Violations button, Cover message retrieval button, major/minor alarm buttons, Trunk ID buttons & Verify button.

Part and Inventory Search

Back
Top