Sponsored Content
Full Discussion: please help
Top Forums UNIX for Dummies Questions & Answers please help Post 12875 by knarayan on Tuesday 8th of January 2002 11:32:00 AM
Old 01-08-2002
please help

I have newly joined here and there is no Unix/Network Administrator here. SO I need to figure all of this myself. Please help me if you know anything about the following:
Is it that veritas volume manager is only used for disk arrays etc?
This is a part from the output of df -k on my Sun box

/dev/vx/dsk/rootvol /
/dev/vx/dsk/usr /usr
/proc /proc
fd /dev/fd
mnttab /etc/mnttab
/dev/vx/dsk/var /var
swap /var/run
swap /tmp
/dev/vx/dsk/opt /opt
/dev/vx/dsk/oracledg/ora01 /ora_install

/dev/vx/dsk/oracledg/ora02 /ora_system

/dev/vx/dsk/oracledg/ora04 /ora_temp

/dev/vx/dsk/oracledg/ora03 /ora_redo

/dev/vx/dsk/oracledg/ora05 /ora_data

/dev/vx/dsk/oracledg/ora06 /ora_indx

/dev/vx/dsk/oracledg/ora07 /ora_lob

/dev/vx/dsk/oracledg/ora08 /ora_rbs

/dev/vx/dsk/oracledg/ora09 /ora_export

/dev/vx/dsk/oracledg/ora10 /ora_arch

How do I find out the filesystems are from the A1000 disk array or local disks.

Thanx a lot for any info.

Regards
 
ADDLOFIG(3)						       MBK LOGICAL FUNCTIONS						       ADDLOFIG(3)

NAME
addlofig - create a new structural cell model ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mlo.h" lofig_list *addlofig(figname) char *figname; PARAMETER
figname Name of the figure to be created DESCRIPTION
addlofig creates a new figure called figname and adds it to the list of figure in memory. The new figure is added in front of the list, and becomes itself the list head. No check is performed to see if a figure with the figname exists on disk. If it is the case, the preexisting file will be erased while saving. The fields LOCON, LOINS, LOSIG, BKSIG, LOPAR LOTRS and USER are set to NULL. The field MODE is set to 'A'. The field NEXT points to the previous head of list. RETURN VALUE
addlofig returns a pointer to the newly created figure. ERRORS
"*** mbk error *** illegal addlofig figure figname already exists" There is already a logical figure called figname in memory, so it's impossible to give this name to a cell to be created. EXAMPLE
#include "mlo.h" lofig_list *get_the_fig(name) char *name; { lofig_list *pt, *fill_fig(/* lofig_list * */); /* scan figure list */ for (pt = HEAD_LOFIG; pt; pt = pt->NEXT) if (!strcmp(pt->NAME, figname)) break; return pt ? pt : fill_fig(addlofig(figname)); } SEE ALSO
mbk(1), lofig(3), getlofig(3), dellofig(3), loadlofig(3), savelofig(3), flattenlofig(3), rflattenlofig(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 ADDLOFIG(3)
All times are GMT -4. The time now is 08:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy