Vertias


 
Thread Tools Search this Thread
Contact Us Post Here to Contact Site Administrators and Moderators Vertias
# 1  
Old 11-16-2007
Vertias

Admins,

I found this site is really helpful for all the Unix Admins also those who required scripting. My suggesstions is if you add some documents, commands and examples/sceanarios of Vertias Volume Manager or Veritas Cluster it will be useful for us.

Thanks a lot

Sridhar SSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Solaris

vertias volume manager

hi all I want to practice on veritas volume manager. Is there any trial version for solaris 5.10 sparc version. If it is there, please give me the link? (1 Reply)
Discussion started by: kingston
1 Replies

2. Solaris

Vertias disk list

OS Version: Solaris 10 Veritas Version: 4.1 Running vxdisk list gives me this: DEVICE TYPE DISK GROUP STATUS c0t0d0s2 auto:none - - online invalid c1t10d0s2 auto:sliced disk01 rootdg online c1t11d0s2 ... (2 Replies)
Discussion started by: RTM
2 Replies

3. UNIX for Dummies Questions & Answers

Vertias (physical disks monitoring)

Can anyone tell me what Vertias is? Is it free? What is it used for exactly? Thank you in advance. (1 Reply)
Discussion started by: VeroL
1 Replies
Login or Register to Ask a Question
volmgt_root(3VOLMGT)					Volume Management Library Functions				      volmgt_root(3VOLMGT)

NAME
volmgt_root - return the Volume Management root directory SYNOPSIS
cc [ flag ... ] file ... -lvolmgt [ library ... ] #include <volmgt.h> const char *volmgt_root(void); DESCRIPTION
The volmgt_root() function returns the current Volume Management root directory, which by default is /vol but can be configured to be in a different location. RETURN VALUES
The volmgt_root() function returns pointer to a static string containing the root directory for Volume Management. ERRORS
This function may fail if an open() of /dev/volctl fails. If this occurs a pointer to the default Volume Management root directory is returned. EXAMPLES
Example 1: Finding the Volume Management root directory. To find out where the Volume Management root directory is: if ((path = volmgt_root()) != NULL) { (void) printf("Volume Management root dir=%s ", path); } else { (void) printf("can't find Volume Management root dir "); } FILES
/vol default location for the Volume Management root directory ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
cc(1B), vold(1M), open(2), volmgt_check(3VOLMGT), volmgt_inuse(3VOLMGT), volmgt_running(3VOLMGT), attributes(5), volfs(7FS) NOTES
This function returns the default root directory location even when Volume Management is not running. SunOS 5.10 1 Feb 2001 volmgt_root(3VOLMGT)