Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

help me to kill the process (cadence)

Status
Not open for further replies.

birdiee470

Junior Member level 3
Joined
Oct 28, 2005
Messages
27
Helped
4
Reputation
8
Reaction score
0
Trophy points
1,281
Activity points
1,428
cadence + kill

can anyone help me..i cannot edit my design (cadence) after my pc is hang,, after restart my pc i cannot edit my design,,anyone can help me what is the command for kill this process..i`ve try kill -9 PID but it cannot work..
 

kill cadence process icfb

Do you mean your design can only be opened with read-only mode? You don't need to kill some process. It is because the lock file is not be deleted automatically before. Go to the directory of your design. For example, if your design is "myLib top schematic", cd to the top/schematic directory under myLib's path. Then delete the "*.cdslck" file.

Alternatively, you can use find command to delete all "*.cdslck" file:

find myLib -name '*.cdslck' -exec rm {} \;

where myLib is the path of your lib.
 

kill cadence

use to list all your process first: ps -ef |grep [name]

next kill the process: kill -9 [process_name]

Hope this helps
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top