Subsequently, I can only open schematics/layout files in the "Read-
Only" mode. All write permission are denied.
There is a webpage which documents this file-locking problem:
http://www-bsac.eecs.berkeley.edu/~cadence/tools/file_lock.html
In short, type "clsAdminTool" at the terminal command. Type "ale ." to
find out what the locks are. and Type "asre <filename>" to release the
relevant lock. The following is an example log:
clsAdminTool
> help
Commands:
system <commandName>
- execute shell command
ale <directoryHierarchy>
- List all Edit Locks in directoryHierarchy
aple <directoryHierarchy> <hostname> [pid [processCreationTime]]
- List all Edit Locks of process pid in directoryHierarchy
are <directoryHierarchy>
- Release all Edit Locks in directoryHierarchy
apre <directoryHierarchy> <hostname> <pid> <processCreationTime>
- Release all Edit Locks of process pid in directoryHierarchy
asre <filePath>
- Release Edit Lock on the file specified by filePath
force
- Set force mode to remove old style locks with simple host names
exit
- exit with last status
help
- This output
quit
- quit (with good status (0))
>
> ale .
BEGIN: Edit Locks List
./ece453/lab2_CSCD_pc357/schematic/sch.cdb
linuxpool-10.ece.cornell.edu 14507 1 189894821
END: Edit Locks List
SUMMARY: Only one Edit Lock was found in the directory hierarchy: .
> asre ./ece453/lab2_CSCD_pc357/schematic/sch.cdb
BEGIN: Release One Edit Lock.
./ece453/lab2_CSCD_pc357/schematic/sch.cdb
END: Release One Edit Lock.
SUMMARY: Successfully released the Edit Lock
>
Hope this helps, in case anyone else runs into the same problem.
--Peter