user648244
user648244

Reputation: 1278

Clearcase: cleartool mount vob in unix

Could someone provide me with an example on how to mount a vob (dynamic vob) onto a unix box. The view has already been created in windows.

Upvotes: 0

Views: 4182

Answers (1)

VonC
VonC

Reputation: 1324377

The simplest way is to use cleartool mount:

cleartool mount /vobs/aVob 

(as described in "To mount/activate VOBs")

Note that you don't have to start a dynamic view: you can mount vobs even without any view.

But once that vob is mounted, it will be visible for every started dynamic views, even the ones which doesn't use that vob (doesn't use because their config spec doesn't select anything from the mounted vob).

cleartool mount /vobs/aVob
/views/aView_1/vobs/aVob
/views/aView_2/vobs/aVob
/views/aView_3/vobs/aVob

Upvotes: 1

Related Questions