Problem 1 :Another app is currently holding the yum lock; waiting for it to exit..
solution 1:
Hit Ctrl-C; that's the key combination to kill any currently running process in a bash shell or terminal.
To find out what's locking up yum, try running:
# ps aux | grep yum
Note the PID number of the process and run this to kill the process:
# kill PID
Check to see if the process has been killed by rerunning:
# ps aux | grep yum
If not, rinse and repeat until the process is killed; some processes can be very stubborn.
Problem 2: gcc: Command not Found
Solution 2 :
yum install gcc
No comments:
Post a Comment