Sponsored Content
Full Discussion: ssh question
Top Forums UNIX for Dummies Questions & Answers ssh question Post 302204099 by mcraul on Tuesday 10th of June 2008 02:59:45 PM
Old 06-10-2008
bump

thanks
 

8 More Discussions You Might Find Interesting

1. Cybersecurity

Casual Question regarding ssh

I have openssh installed on the Unix machines. I have also set the syslog level to auth.debug so that the all the ssh entries are logged. I have this vague message which in no way affects my ssh session but still i am curious Whenever i log in it gives this error pam_secretd: error... (5 Replies)
Discussion started by: DPAI
5 Replies

2. UNIX for Dummies Questions & Answers

ssh question

Dear all, I have a question regarding the remote access a server without login using "ssh". I'm thinking if there is anyway to send a certificate pass to ssh command. For example, I need write a script for a user who doesn't have access to any server but running this script. Within the... (1 Reply)
Discussion started by: ting123
1 Replies

3. Solaris

Silly question regarding SSH.

Hi Guys, I have installed SSH package on server as well as clients. I think I need to these steps next. Login as root on the server. 1) ssh-keygen -b 1024 -t rsa -f /etc/ssh_hosts_key.pub -N " " Login to root as the user. 2)ssh_keygen -b 1024 -t rsa Enter the phrase Basically this... (3 Replies)
Discussion started by: nitinkgoud
3 Replies

4. Cybersecurity

ssh question

I have a query on ssh. /home/user1/ # ssh remote_host When the fingerprint created and saved in /home/user1/.ssh/known_hosts file, is the fingerprint the public key of remote_host? (2 Replies)
Discussion started by: ij_2005
2 Replies

5. UNIX for Advanced & Expert Users

SSH and alias question...

i regularly login to servers that I donot control. On many of these servers I do not have home dir. I need to set aliases from my host to the remote machine when I ssh in. for example from when I go from hosta --> hostb. I want all my aliases from hosta to be present in hostb once I login. ( i... (5 Replies)
Discussion started by: vijayrajah
5 Replies

6. Red Hat

ssh daemon question

Hi, I'm trying to connect from one server to another via ssh, the server that I'm connecting from only has openssh installed. The server that I'm connecting to has the following packages installed: ssh-3.2.9.1-ML_RHEL4 openssh-3.9p1-8.RHEL4.12 openssh-clients-3.9p1-8.RHEL4.12... (0 Replies)
Discussion started by: newb1000
0 Replies

7. Shell Programming and Scripting

Question about parameters in ssh

Hello where I can find or can anybody send me a full list with parameters of ssh. I hope to understand what I mean. For exam -xpvf (tar -xpvf file.tar.gz) -x -p -v -f what do any of these parameters I have command for extract tar.gz file but I want to do this without folder but I don't know what... (2 Replies)
Discussion started by: gladiator6
2 Replies

8. UNIX for Advanced & Expert Users

Ssh tunnel question

Hi all I have a suite of scripts that ssh to remote servers within a cluster and run some tests. This is done from a central server so that all of the test results can be captured in one location. Problem is I now have 509 tests and the number is growing. The scripts work by establishing a... (2 Replies)
Discussion started by: steadyonabix
2 Replies
SoBumpMapCoordinate(3)						       Coin						    SoBumpMapCoordinate(3)

NAME
SoBumpMapCoordinate - The SoBumpMapCoordinate class is a node for providing bump map coordinates to shape nodes. When encountering nodes of this type during traversal, the coordinates it contains will be put on the state stack for later use by shape nodes. The bump map coordinates can be used to specify explicit coordinates for a bump map. The SoBumpMap node is used to specify a bump map for the shape nodes. SYNOPSIS
#include <Inventor/nodes/SoBumpMapCoordinate.h> Inherits SoNode. Public Member Functions virtual SoType getTypeId (void) const SoBumpMapCoordinate (void) virtual void doAction (SoAction *action) virtual void GLRender (SoGLRenderAction *action) virtual void callback (SoCallbackAction *action) virtual void pick (SoPickAction *action) Static Public Member Functions static SoType getClassTypeId (void) static void initClass (void) Public Attributes SoMFVec2f point Protected Member Functions virtual const SoFieldData * getFieldData (void) const virtual ~SoBumpMapCoordinate () Static Protected Member Functions static const SoFieldData ** getFieldDataPtr (void) Additional Inherited Members Detailed Description The SoBumpMapCoordinate class is a node for providing bump map coordinates to shape nodes. When encountering nodes of this type during traversal, the coordinates it contains will be put on the state stack for later use by shape nodes. The bump map coordinates can be used to specify explicit coordinates for a bump map. The SoBumpMap node is used to specify a bump map for the shape nodes. Note that an SoBumpMapCoordinate node will replace the bump map coordinates already present in the state (if any). Also note that since the indexed shape nodes have no bumpMapCoordIndex field, the textureCoordIndex field will be used for selecting bump map coordinate indices. You can set the bump map coordinate binding using the SoTextureCoordinateBinding node. Bump map coordinates must therefore have the same binding as the texture coordinates for texture unit 0. If you supply no bump map coordinates for a shape, the texture coordinates for texture unit 0 will be used. FILE FORMAT/DEFAULTS: BumpMapCoordinate { point [ ] } Since: Coin 2.2 Constructor &; Destructor Documentation SoBumpMapCoordinate::SoBumpMapCoordinate (void) Constructor. SoBumpMapCoordinate::~SoBumpMapCoordinate () [protected], [virtual] Destructor. Member Function Documentation SoType SoBumpMapCoordinate::getClassTypeId (void) [static] This static method returns the SoType object associated with objects of this class. Reimplemented from SoNode. SoType SoBumpMapCoordinate::getTypeId (void) const [virtual] Returns the type identification of an object derived from a class inheriting SoBase. This is used for run-time type checking and 'downward' casting. Usage example: void foo(SoNode * node) { if (node->getTypeId() == SoFile::getClassTypeId()) { SoFile * filenode = (SoFile *)node; // safe downward cast, knows the type } } For application programmers wanting to extend the library with new nodes, engines, nodekits, draggers or others: this method needs to be overridden in all subclasses. This is typically done as part of setting up the full type system for extension classes, which is usually accomplished by using the pre-defined macros available through for instance Inventor/nodes/SoSubNode.h (SO_NODE_INIT_CLASS and SO_NODE_CONSTRUCTOR for node classes), Inventor/engines/SoSubEngine.h (for engine classes) and so on. For more information on writing Coin extensions, see the class documentation of the toplevel superclasses for the various class groups. Implements SoBase. const SoFieldData ** SoBumpMapCoordinate::getFieldDataPtr (void) [static], [protected] This API member is considered internal to the library, as it is not likely to be of interest to the application programmer. Reimplemented from SoNode. const SoFieldData * SoBumpMapCoordinate::getFieldData (void) const [protected], [virtual] Returns a pointer to the class-wide field data storage object for this instance. If no fields are present, returns NULL. Reimplemented from SoFieldContainer. void SoBumpMapCoordinate::initClass (void) [static] Sets up initialization for data common to all instances of this class, like submitting necessary information to the Coin type system. Reimplemented from SoNode. void SoBumpMapCoordinate::doAction (SoAction *action) [virtual] This function performs the typical operation of a node for any action. Reimplemented from SoNode. void SoBumpMapCoordinate::GLRender (SoGLRenderAction *action) [virtual] Action method for the SoGLRenderAction. This is called during rendering traversals. Nodes influencing the rendering state in any way or who wants to throw geometry primitives at OpenGL overrides this method. Reimplemented from SoNode. void SoBumpMapCoordinate::callback (SoCallbackAction *action) [virtual] Action method for SoCallbackAction. Simply updates the state according to how the node behaves for the render action, so the application programmer can use the SoCallbackAction for extracting information about the scene graph. Reimplemented from SoNode. void SoBumpMapCoordinate::pick (SoPickAction *action) [virtual] Action method for SoPickAction. Does common processing for SoPickAction action instances. Reimplemented from SoNode. Member Data Documentation SoMFVec3f SoBumpMapCoordinate::point Set of 2D points. Contains no points by default. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoBumpMapCoordinate(3)
All times are GMT -4. The time now is 06:40 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy