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

  • Users: vptl
  • Content: Threads
  • Order by date
  1. vptl

    What is wrong with this script...going no where....

    Hello, Can you please tell me where I am missing something... The error stats that $file is not initialised while reading instruction for opening DATA. Thanks. #!/usr/bin/perl -w use strict; use diagnostics; my $count=0; open STREAM, "/bin/ls /var/tmp/*SED |" or die "Could not do ls" ...
  2. vptl

    What is the port called where we connect RA cable on MCData switch ?

    Hi, Do we have to use any special convention in naeming the port which connects to RA link ? Thanks. Vimal.
  3. vptl

    When I use my $file ..can I still do chomp($file) ?

    my $file=q(/tmp/fs_list_).$date; chomp($file); if ( -f $file) { trying to understand if I use my <variable> is that the final I canot change it ?
  4. vptl

    What is wrong with this lines

    my $date=`/bin/date| sed -e s/" "/_/g |sed -e s/:/_/g`; my $file=q(/tmp/fs_list_$date); Thanks,
  5. vptl

    Command to find out ZONE info.

    Hello, I know not a lot of SA use CLI for McData switches. I am interested in finding the cli to dump all the zones info to a text file , in perticular I am looking for... 1. ZONE Status (Active / In-Active ?) 2. DIR/PORT INFO for each zone. 3. isl PORTS. Thanks in advance.
  6. vptl

    More interesting q's....

    Morning all, Yes me again...still long way to go....I did tried to figure it out..but got no where... Here is what I want to do. I am doing in a while loop. while ( $fs = <FS_LIST> ) { chomp ($fs); $line=`/nas/bin/fs_replicate -info $fs |egrep current_delta` ; print "$fs.$line\n" ; } close...
  7. vptl

    How do I assigne a variable for output value from my command.

    I know ..I am asking to many questions but hopefully I am not bothering you...and again I value all your help. What I want to do here is to assigne a variable to my output form the command. Thanks
  8. vptl

    How can I send output of the command to my tty ?

    Again....all. Within the same code....I want to see the output of my command on the screen... here is the code.. system(q!/nas/bin/nas_fs -list | egrep -v 'root|name' | awk '{print $6}'|sed '/^$/d' > /tmp/fs_list!); open (FS_LIST, "fs_list"); while ( $fs = <FS_LIST> ) { chomp ($fs) ; print...
  9. vptl

    How do I execute unix commands in perl script.?

    Hi, I am a new to perl...starting to learn. I am looking for alternative to exec unix shell command in perl script,. for example...I use to do in ksh.. 'ls -l |awk '{print $4}' >> /tmp/o' Thanks. V
  10. vptl

    what is my replication frequency on celera ?

    I am seeing savevole create time in fs_replicate -info output...how do I findout what is the freq ?
  11. vptl

    Celerra File systems

    Anyone can explain how the slice volume,disk volume,volume,strip volume,meta volume and file systems are related.... is it similer to sd,plex,volume,file system concept of veritas ? if so why do we have disk volume on top of disk sslice ? Are the disk slice and disk volume diffrent ? Are the...
  12. vptl

    Is there a simple way to map celera disks (or luns) to file systems

    In other words if I want to find out wich disk/s has my data for file system a what do I do instead of mapping meta-strip-slice and disk volumes ? Thanks,
  13. vptl

    What should be the value of scan-down in lpfc.conf

    EOM. Thanks.
  14. vptl

    What is this error means from Solaris.

    Hi, I am getting this error on one of our solaris server. Can you please explain what would cause this .... Thanks, V
  15. vptl

    How can I define ruls for my FA parameters ? /Is it possible ?

    Hello, Yesterday I ran a script to map my devices to lun # 100 (Hex!!) and surprisinglly it did not complain..I know may be that can be a feature for ISCSI tech...but for now with Fiber Protocol how can I limit so that symconfigure will not accept any mapping beyond lun # ff hex. I am kind of...
  16. vptl

    Installing McData 3232 - Some questions..

    I recentlly installed a McData 3232 switch I did not understand following things... 1. What is the feature keys ? What is the noticable diff w/o those keys ? 2. What is commadelim in maint mode ? 3. When I install the switch I did not have to enable web access is that by default ? or I did...
  17. vptl

    Any suggestions for this type of work...

    Hello, I tried to use KSH I am not great at perl...But please suggest if I cannot do this in KSH... Hi, Can you pls suggest something for this... I have a file Serial ID : 3HY0RV8R # Vol Emulation Dev Type Mirror Status Cap(MB) 1 1 FBA...
  18. vptl

    What is SID LOCKDOWN ? When to use it ?

    Please shade some light on this... Thanks.
  19. vptl

    Please explaine the symdisk command.

    Hi, I see following with my symdisk command. I have few questions with it. Appriciate the help. Director : DF-1A Interface : C Target ID : 0 Disk Group Number : 1 Vendor ID : SEAGATE Product ID...
  20. vptl

    Any one using hardware raid on V440 ?

    Hi, I would like to know the goods and bads as compare to ODS. Also is there a special procedure to configure it ? Appreciate your comments in regard to my questions. Thanks.

Part and Inventory Search

Back
Top