cleartool protected -chmod 770;错误
此命令不起作用:
cleartool protect -chmod 770 <vob-tag-name>
我收到以下错误:
cleartool> protect -chmod 770 vob-tag-name
cleartool: Error: Unable to access "vob-tag-name": ClearCase object not found.
VOB 标记有效并指向正确的 VOB 位置。
我做错了什么?
This command does not work:
cleartool protect -chmod 770 <vob-tag-name>
I get the following error:
cleartool> protect -chmod 770 vob-tag-name
cleartool: Error: Unable to access "vob-tag-name": ClearCase object not found.
The VOB tag is valid and points to the correct VOB location.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在上面的命令中,您应该使用类似
protect -chmod 770 /vobs/vobname/dir/file.txt
的路径要保护 VOB,您应该使用 Protectvob 命令。
In above command, you should be using path like
protect -chmod 770 /vobs/vobname/dir/file.txt
To protect the VOB you should use the protectvob command.
保护 VOB 对象(元素(文件/目录/..)、元类型(分支/...)、)的更改权限/所有权。
Protect changes permissions/ownership of a VOB objects (element(file/directory/..), meta type (branch/...),).
运行
ct setview <视图名称>
然后 cd 到 VOB
cd
然后运行 /usr/atria/bin/cleartool protected -chmod 770 -recurse
run
ct setview <view-name>
then cd to the VOB
cd <vob-tag>
Then run
/usr/atria/bin/cleartool protect -chmod 770 -recurse <vob-tag>