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

  • Users: yai
  • Order by date
  1. yai

    Read I/O on a mirrored pair

    do you have glance installed? glance will show reads/writes separately. Did you verify that all primary paths are going to the EVA? Swap paths with pvchange if necessary.
  2. yai

    Retrieving hardware serial and model

    look at /sys/devices/virtual/dmi/id/*
  3. yai

    Ignite Cleanup

    make_net_recovery -n num_archives -> Specifies the number of archives to be saved on the server
  4. yai

    CHATR - embedded path

    Hi, chatr +b does not work on an ELF (64bit pa-risc) file. perhaps the +s flag works, or try setting the SHLIB_PATH environment variable correctly. HTH
  5. yai

    rp3440 install query

    install hpux over the network with igniteUX or from an external SCSI dvd drive
  6. yai

    Command to show video driver info ?

    lspci -v also, check /sys/devices ...
  7. yai

    need command to view linux info ?

    try hwinfo and lspci
  8. yai

    linux cluster rconsole error

    set your display variable, something like export DISPLAY=<your.pcs.ip.address>:0
  9. yai

    Single User Mode and Console doesnt accept input

    Normally, in maintenance mode there should be not nfs, so no nfs problem either. Try to boot from another medium, e.g. cd, boot tape, ignite image on an ignite server.
  10. yai

    Single User Mode and Console doesnt accept input

    Hi, any error (even typing error) in netconf will cause the system not to configure your network card correctly, so you will get the error you reported. You can boot into maintenance mode (hpux -im) and correct your configuration. HTH, yai
  11. yai

    FIle Handling

    the first one: #!/opt/perl5/bin/perl use strict; use warnings; my $string; open(FH, "< test.txt"); while (<FH>) {chomp; $string .= $_ . " "} close FH; $string .= "\n"; print $string; the second one: #!/opt/perl5/bin/perl use strict; use warnings; my @files = glob "*"; my $string; for (@files)...
  12. yai

    csh and &quot;@&quot;

    MS SQL on HPUX?
  13. yai

    Perl Subroutine Question Involving Arrays...

    Hi, you don't modify @juliandate, and you don't return @juliandate. You only return 3 scalar values. So what do you expect? Anyway, making an array a global variable is in general not a good idea. Try to pass the array as an array reference to your sub, then modify it, and you have to return...
  14. yai

    Validate IP address

    I don't know the context from which you took this sub. I suppose it can be used with a object reference as first paramter and a value as the second OR with only a value. In the first case, the object reference is simply ignored. HTH, yai
  15. yai

    shell compiler

    >> Sounds like SOx-speak to me. Am I right? No, it's BSI, as we are located in germany (BSI = Bundesamt für Sicherheit in der Informationstechnik, something like federal office for security in information techniology). Seems like we found an interesting topic: 15 postings in 2 days. Wow...
  16. yai

    shell compiler

    just to get the terms right: do you mean root or god? Just joking. But if you have a complex tiered environment with a OS-tier, database-tier, application-tier etc. then you should keep rights (and responsibilites) to the respective administrators. root should not be oracle user and sap* at the...
  17. yai

    shell compiler

    In general, it is not a bad idea to hide passwords from root. I am root all the time, but why i should have knowledge of passwords of other people?. It's bad enough to see all these pop3 passwords in wireshark (the bad thing about it is that people continue to use insecure protocolls). yai
  18. yai

    shell compiler

    why hide your code? ashamed of it? make it GPL.
  19. yai

    ssh to server and change directories

    why don't you use the syslog mechanism and let them all log to a central syslog server.
  20. yai

    Using Grub, boot problem

    the following is from grub.pdf: "11.1 How to specify devices The device syntax is like this: (device[,part-num][,bsd-subpart-letter]) ‘[]’ means the parameter is optional. device should be either ‘fd’ or ‘hd’ followed by a digit, like ‘fd0’. But you can also set device to a hexadecimal or a...

Part and Inventory Search

Back
Top