2、下次如果仿真时间太久,有可能进程死掉了。建议你杀掉进程再注销重启,如果本机无法 *** 作就远程上去。
3、不知你的CDS什么版本,不建议你用最新的Linux,软件跑不好的。
linux注销登录用户如下:
进入根用户
su 或者 su - root
查看当前在线用户
w 或者 who -a
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
chtty7 :0 08:442:30m 12:09 0.16s gnome-session
chpts/0:0.0 09:091:33m 45.22s 44.89s gedit messages
chpts/2:0.0 10:24 49:16 11.61s 11.44s stardict
testpts/3:0.0 10:250.00s 0.62s 24.39s gnome-terminal
注销用户 test
pkill -kill -t pts/3
-t 后面连接终端的名称 《Linux就该这么学》更多linux 知识一起来学习。
userdel -r test
发现test 还在登录
只能查看用户test的所有进程:
ps -eLf | grep 'test'
kill -9 3276
3276 是查看到的用户的进程的pid
再执行
userdel -r test
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)