Sponsored Content
Special Forums IP Networking IP Addressing with Digital Unix Post 8213 by lavelyj on Monday 8th of October 2001 11:20:00 AM
Old 10-08-2001
IP Addressing with Digital Unix

I'm trying to set up an IP address on a Digital Unix box. I would like to know the commands in order to do so.

thanks
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Digital Unix OSFI problem

Hi guyes ,,,, One particular server (Operating system is Digital Unix OSFI) only responds to http requestes by Internet Explorer, and display empty page when the same page is hit through Netscape Navigator :) any help ? good luck (2 Replies)
Discussion started by: t_zone
2 Replies

2. Programming

Addressing UDP datagrams in UNIX

I am having troble to send a UNIX datagram to a NT machine. I didn`t realize yet how to define the destination address on the sendto() function call.Simply writing "xxx.zz.yy.pp" for the IP and xxxx for the socket doesn´t work!!! Can anyone help me with that? Thanks (4 Replies)
Discussion started by: psilva
4 Replies

3. UNIX for Advanced & Expert Users

Commands on Digital Unix equivalent to for "top" and "sar" on other Unix flavour

Hi, We have a DEC Alpha 4100 Server with OSF1 Digital Unix 4.0. Can any one tell me, if there are any commands on this Unix which are equivalent to "top" and "sar" on HP-UX or Sun Solaris ? I am particularly interested in knowing the CPU Load, what process is running on which CPU, etc. ... (1 Reply)
Discussion started by: sameerdes
1 Replies

4. UNIX for Dummies Questions & Answers

RAM size in Digital unix

Hi All Im currntly working on a digital unix machine and must know what is the amount of MB\GB instaled ( i do not have physical access to the machine). can anyone help me here? 10x!!!!!!!!!!!!!!! (1 Reply)
Discussion started by: dindan100
1 Replies

5. UNIX for Dummies Questions & Answers

What is meant by Kernel Parameter "dflssiz" in Digital Unix (OSF)

Hi, We have a Digital Unix Server with OSF. There's a Kernel Parameter "dflssiz" on this server. I just want to know, what it means. Thanks (2 Replies)
Discussion started by: sameerdes
2 Replies

6. UNIX for Dummies Questions & Answers

Proxy server on Digital UNIX V4.0E ?

Hello everyone, im searching an proxy server for Digital UNIX V4.0E... someone got an idea ? (pre-compiled package would be the best :p) (0 Replies)
Discussion started by: alvoryx
0 Replies

7. HP-UX

digital unix vdump restore in hp ux11i

Could you pls give a solution how to resotore the backup taken from digital unix using vdump to hp ux11i. (1 Reply)
Discussion started by: jestinabel
1 Replies

8. UNIX for Dummies Questions & Answers

Modem setup under Digital Unix

Hi All, I am trying to set up a modem (using SLIP) on a Digital (well it used to be) AlphaStation running Digital Unix V7E. I assume that I have to put an entry into /remote but can anyone suggest the contents and formatting. Apologies for being so naive but I'm an ex VMS person. Thanks and... (1 Reply)
Discussion started by: Roslynlea
1 Replies

9. UNIX for Dummies Questions & Answers

run digital unix 4.0 in vmware?

Hi, I need to know if it is possible to install a Digital Unix 4.0 in a vmware. Is this possible at all? thank you trstn (1 Reply)
Discussion started by: trstn
1 Replies

10. UNIX for Advanced & Expert Users

dd using Digital Unix Tru64

Hi I am posting this in this area because I couldn't find a better place. I am trying to make exact copies of my disk that I use in an old DEC3000. I loaded the one disk then used dd dd if=/dev/rrz0c of=/dev/rrz1c I started this a 6pm last night here in Wales. It is now 2pm the next day,... (4 Replies)
Discussion started by: mndavies
4 Replies
GLSCISSOR(3G)															     GLSCISSOR(3G)

NAME
glScissor - define the scissor box C SPECIFICATION
void glScissor( GLint x, GLint y, GLsizei width, GLsizei height ) PARAMETERS
x, y Specify the lower left corner of the scissor box. Initially (0, 0). width, height Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window. DESCRIPTION
glScissor defines a rectangle, called the scissor box, in window coordinates. The first two arguments, x and y, specify the lower left corner of the box. width and height specify the width and height of the box. To enable and disable the scissor test, call glEnable and glDisable with argument GL_SCISSOR_TEST. The test is initially disabled. While the test is enabled, only pixels that lie within the scissor box can be modified by drawing commands. Window coordinates have integer val- ues at the shared corners of frame buffer pixels. glScissor(0,0,1,1) allows modification of only the lower left pixel in the window, and glScissor(0,0,0,0) doesn't allow modification of any pixels in the window. When the scissor test is disabled, it is as though the scissor box includes the entire window. ERRORS
GL_INVALID_VALUE is generated if either width or height is negative. GL_INVALID_OPERATION is generated if glScissor is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGet with argument GL_SCISSOR_BOX glIsEnabled with argument GL_SCISSOR_TEST SEE ALSO
glEnable, glViewport GLSCISSOR(3G)
All times are GMT -4. The time now is 08:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy