Index:
ps
kill
yum
rm
find
ps -aux / ps aux
kill -9 PID
yum install / sudo apt-get install
Kill yum:
very easy way:- wait until the first yum is finished doing it's stuff (could take some time)
easy way:- reboot the machine
hard way:- in the root: ps aux |grep yum, and then: kill -9 PID
rm -rf: delete directory
-r 就是向下递归,不管有多少级目录,一并删除, -f 就是直接强行删除,不作任何提示
find / -name "xulrunner" xulrunner是你要寻找的关键词