Sponsored Content
Full Discussion: ISCSI best practice question
Operating Systems Solaris ISCSI best practice question Post 302859151 by blackrageous on Wednesday 2nd of October 2013 12:43:56 PM
Old 10-02-2013
I would approach this from the big picture view down to the technical detail. It seems clear you're providing for redundancy and performance and I think that some of those issues have to work themselves out over time. One question what underlying device or devices comprise the 4X3TB Raidz pool?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Samba Practice

I have a dual boot machine with both "Windoze ME" and Redhat Linux 7.2. I want to know if it is possible to practice with the Samba Suite on a dual boot machine if I was able to incorporate using IP addresses. I was thinking if your able to ping yourself why wouldn't you be able to administer... (3 Replies)
Discussion started by: bilal_aa
3 Replies

2. Shell Programming and Scripting

Simple grep question, but I'm out of practice

Never mind, I did more research, and now am using grep -v './temp/', dumping it into a new text file, then using mv -f to make that the original file. Thanks for reading! --------------- Hi folks, I haven't done any scripting in years, and now I have a problem. Our backup tapes are filling... (0 Replies)
Discussion started by: citygov
0 Replies

3. Shell Programming and Scripting

What is the best practice?

I'm playing the shell game of moving and deleting files to make room for current DB backup. A set of files gets moved to serverB when serverA threshold is exceeded. I created two scripts one for serverA and one for serverB. Both scripts are run by cron entry. There is a difference of 12 minutes... (4 Replies)
Discussion started by: BigSky
4 Replies

4. OS X (Apple)

iSCSI

I have configured iSCSI on server with linux running on it . On APPLE I have downloaded gloablSAN. When globalSAN is started ,it asks for target IP . I have given target IP . It has detected the disks . But when i use "disk utilities " , here the ISCSI disk are not displayed. except the... (0 Replies)
Discussion started by: pradeepreddy
0 Replies

5. Shell Programming and Scripting

best practice please

I have a data file that I tail and dump the data into a new file at midnight. To work I had to use tail -n2 livefile.csv >> storefile.csv. This is ging me 2 or 3 entries at a time into the storefile.csv. if I continue this then I will have to run a second pass on the file to remove the... (4 Replies)
Discussion started by: Mikey
4 Replies

6. UNIX for Dummies Questions & Answers

How to change ethernet cable of iscsi initiator (iscsi client)?

how to change ethernet cable of iscsi initiator (iscsi client) (0 Replies)
Discussion started by: pankajd
0 Replies

7. Programming

how to practice my c++ skill

Hi all, I'v already read some basic books about c++ such as <c++ primer>,<The C++ standard library> etc.,and as we know,knowledge is easy to forget without practicing,so i wanna know some ways to practice my skill with programming.First,i know some ACM sites,however,solving problems on those sites... (4 Replies)
Discussion started by: homeboy
4 Replies

8. UNIX for Dummies Questions & Answers

hp ux practice

hi i am new in unix.i have installed linux in my pc,but i want to practice and be expatise in hp ux.but i have no hp server for do it.how could i practice hp ux?please help and give suggestion. (1 Reply)
Discussion started by: dipanjan123
1 Replies

9. UNIX for Dummies Questions & Answers

practice scripting

Is there any sites out there that have examples of things they want you to go and script for practice? I have looked around but have came up empty handed. I have been writing scripts for things I need on my nix box but have am wanting more challenging things to keep me learning. I would prefer... (3 Replies)
Discussion started by: linuxn00b
3 Replies

10. AIX

AIX practice

Dears, Kindly as preparing to get AIX certification I'd like to have your guide & support where can I find dump or exam forms for below :- Test 000-103: AIX 6.1 Basic Operations Test 000-221: AIX 7 Administration I want to look at real questions and try to solve it , is it possible to... (1 Reply)
Discussion started by: arm
1 Replies
VWRAYS(1)						      General Commands Manual							 VWRAYS(1)

NAME
vwrays - compute rays for a given picture or view SYNOPSIS
vwrays [ -i -u -f{a|f|d} | -d ] { view opts .. | picture [zbuf] } DESCRIPTION
Vwrays takes a picture or view specification and computes the ray origin and direction corresponding to each pixel in the image. This information may then be passed to rtrace(1) to perform other calculations. If a given pixel has no corresponding ray (because it is out- side the legal view boundaries), then six zero values are sent instead. The -i option may be used to specify desired pixel positions on the standard input rather than generating all the pixels for a given view. If the -u option is also given, output will be unbuffered. The -f option may be used to set the record format to something other than the default ASCII. Using raw float or double records for exam- ple can reduce the time requirements of transferring and interpreting information in rtrace. View options may be any combination of standard view parameters described in the rpict(1) manual page, including input from a view file with the -vf option. Additionally, the target X and Y dimensions may be specified with -x and -y options, and the pixel aspect ratio may be given with -pa. The default dimensions are 512x512, with a pixel aspect ratio of 1.0. Just as in rpict, the X or the Y dimension will be reduced if necessary to best match the specified pixel aspect ratio, unless this ratio is set to zero. The -pj option may be used to jitter samples. The default value of 0 turns off ray jittering. If the -d option is given, then vwrays just prints the computed image dimensions, which are based on the view aspect and the pixel aspect ratio just described. The -ld switch will also be printed, with -ld+ if the view file has an aft clipping plane, and -ld- otherwise. This is useful for passing options to the rtrace command line. (See below.) If the view contains an aft clipping plane (-va option), then the magnitudes of the ray directions will equal the maximum distance for each pixel, which will be interpreted correctly by rtrace with the -ld+ option. Note that this option should not be given unless there is an aft clipping plane, since the ray direction vectors will be normalized otherwise, which would produce a uniform clipping distance of 1. If a picture is given on the command line rather than a set of view options, then the view and image dimensions are taken from the picture file, and the reported ray origins and directions will match the center of each pixel in the picture (plus optional jitter). If a depth buffer file is given as well, then vwrays computes the intersection point of each pixel ray (equal to the ray origin plus the depth times the ray direction), and reports this instead of the ray origin. The reported ray direction will also be reversed. The inter- pretation of this data is an image of origins and directions for light rays leaving the scene surfaces to strike each pixel. EXAMPLES
To compute the ray intersection points and returned directions corresponding to a picture and its depth buffer: vwrays scene_v2.hdr scene_v2.zbf > scene_v2.pts To determine what the dimensions of a given view would be: vwrays -d -vf myview.vf -x 2048 -y 2048 To generate a RADIANCE picture using rtrace instead of rpict: vwrays -ff -vf view1.vf -x 1024 -y 1024 | rtrace `vwrays -d -vf view1.vf -x 1024 -y 1024` -ffc scene.oct > view1.hdr AUTHOR
Greg Ward Larson ACKNOWLEDGMENT
This work was supported by Silicon Graphics, Inc. BUGS
Although vwrays can reproduce any pixel ordering (i.e., any image orientation) when given a rendered picture, it will only produce standard scanline-ordered rays when given a set of view parameters. SEE ALSO
rcalc(1), rpict(1), rtcontrib(1), rtrace(1) RADIANCE
1/15/99 VWRAYS(1)
All times are GMT -4. The time now is 06:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy