linux杀死进程报错问题

本地创建了两个账号,text和text1

现在欲删除text1用户,执行如下

[[email protected] /]$ su text

Password: 

[[email protected] /]$ su 

Password: 

[[email protected] /]# userdel text1

userdel: user text1 is currently used by process 55462

出现了报错,提示text1有程序正在运行,无法删除此用户

那就结束这个用户的所有进程吧

[[email protected] /]# killall -u text1

Session terminated, killing shell...

Session terminated, killing shell...

Session terminated, killing shell...[[email protected] /]#  ...killed.

 ...killed.

 ...killed.

You have new mail in /var/spool/mail/root

[[email protected] root]$ [[email protected] /]$ [[email protected] Desktop]$ 

[[email protected] /]# 

这里本来以为结束成功,于是就进行了下一步,继续删除用户

[[email protected] /]# userdel text1

userdel: user text1 is currently used by process 55462

[[email protected] /]# exit

依旧报错,看来还是没有结束text1用户的进程

刚才不是执行结束进程的命令了吗?仔细回去查了一下返回的信息,发现应该是没有成功

注意到中间有一句话:You have new mail in /var/spool/mail/root

查询资料找到了解决办法,切换到root输入

[[email protected] Desktop]# echo "unset MAILCHECK">> /etc/profile

那么继续

[[email protected] Desktop]# killall -u text1

[[email protected] Desktop]# userdel text1

[[email protected] Desktop]# su text

[[email protected] Desktop]$ su

Password: 

[[email protected] Desktop]# su text1

su: user text1 does not exist

大功告成~


时间: 2024-11-08 07:05:45

linux杀死进程报错问题的相关文章

Linux 格式化分区 报错Could not stat --- No such file or directory 和 partprobe 命令

分区的过程正常: [[email protected] /]# fdisk -l Disk /dev/sda: 21.4 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot      Start         End      Blocks   Id  System /dev/sda1   *

linux + eclipse + cdt 报错undefined reference......好麻烦的,这位大牛给出的方法可行,特此MARK!!!!

http://bbs.csdn.net/topics/390239632 kerosun kerosun 等级: 结帖率:96.92% 楼主 发表于: 2012-10-11 12:00:51 比如有一个tools工程,提供给其他工程通用的工具函数. 我现在的做法就只能是ctrl+c|ctrl+v一旦工具函数发生变化,还需要在用到这些函数的工程中更新,比较麻烦. 看到eclipse工程属性设置中有Project References,但是一直不会用.那位好心人能说说怎样实现我的需求. 更多0分享到

一看便知linux下mysql报错ERROR 1044: Access denied for user: '@localhost' to database 'mysql'

错误信息:ERROR 1044: Access denied for user: '@localhost' to database 'mysql' linux下解决方案: mysql> use mysql ERROR 1044 (42000): Access denied for user 'root'@'localhost' to database 'mysql' mysql> exit Bye [[email protected] ~]# service mysqld stop如果该命令不

linux mysql启动报错Can't open and lock privilege tables: Table 'mysql.host' doesn't exist

vi /etc/my.cnf  查看日志文件路径: log-error=/var/log/mysqld.log 查看报错日志: 之前的服务器被别人拿了,所以自己买了台美国vps,根据笔记安装完启动mysql,又启动不了. 查看了错误日志 引用 090321 18:55:03 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data /usr/local/mysql/libexec/mysqld: Ta

将windows上面的项目拷贝到Linux环境下报错不能够找到对应的表com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'puyang.ServiceType' doesn't exist

将一模一样的项目从win迁移到到linux上报错: 一开始还是以为是linux不能识别hql语句,查找资料发现是因为Liunx服务器上mysql是区分大小写的,而本地是不区分的如:代码是这样写的 @Entity@Table(name = "users") 数据库建的表名称是Users,那么就会出现以上异常. 将windows上面的项目拷贝到Linux环境下报错不能够找到对应的表com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorExcepti

linux安装软件报错: Can't locate ExtUtils/Embed.pm in @INC...

安装snmp服务, 中间报错: Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .).BEGIN failed--compilation aborted. 到网上

linux杀死进程命令

转自http://blog.csdn.net/andy572633/article/details/7211546 首先,用ps查看进程,方法如下: $ ps -ef ……smx       1822     1  0 11:38 ?        00:00:49 gnome-terminalsmx       1823  1822  0 11:38 ?        00:00:00 gnome-pty-helpersmx       1824  1822  0 11:38 pts/0   

SUSE Linux ntp 升级报错(MAKE [1]:*** 【all】Error 2)

NTP升级,升级REDHAT时很顺利,升级完成后会默认覆盖掉原有文件,重启服务后,使用ntpd --version查看验证上即可,可在升级SUSE Linux时却发现错误频频,以下是我再升级时遇到的一些问题,小结之后希望有和我遇到同样错误的亲们可以作为参考: 一. 由于NTP包有漏洞,需下载4.2.7之后版本,网络下ntp-dev-4.2.7p26.tar.gz 1.解压#  tar –zxf  ntp-dev-4.2.7p26.tar.gz –C /usr/src 2.编译#  cd/usr/

linux上项目报错找不到主机名解决办法

项目报错找不到主机名解决办法 有时候我们的项目在本地运行没问题,但部署到linux服务器上就出错了. 报错:java.net.UnknownHostException: 主机名: 主机名  找不到主机名. 解决方法: 修改服务器上/etc/hosts文件 127.0.0.1  localhost  localhost.localdomain 添加所需的主机名称 或者 127.0.0.1  localhost  localhost.localdomain 127.0.0.1  添加所需的主机名称