关于 find grep xargs 命令总结
摘要: exp:
find /opt/public/upload/images/ -name *._*.* |xargs rm -f
阅读全文
posted @
2017-09-26 17:22 聂文龙 阅读(242) |
评论 (0) 编辑
linux c学习笔记----文件的创建与读写(open,read,write)
摘要: linux c学习笔记----文件的创建与读写(open,read,write)
阅读全文
posted @
2015-05-03 23:35 聂文龙 阅读(602) |
评论 (0) 编辑
debian系统root用户登录和root用户自动登录
摘要:
Debian默认不允许root登录,所以修改之。
(1)让Debian以root登录
1)、首先修改gdm3的设定文件(/etc/gdm3/deamon.conf),在[security]字段后面追加如下一行:
AllowRoot = ture
2)、最后修改gdm3的登录pam文件
#vi /etc/pam.d/gdm3
将auth required pam_succeed_if.so user != root quiet_success注释掉 //本行前加#
(2)让Debian以root自动登录。
1)、首先修改gdm3的设定文件(/etc/gdm3/deamon.conf),在[daemon]字段后面追加如下两行:
AutomaticLogin = false //改为true
AutomaticLogin = root //以root自动登录
如果想等几秒再登录
阅读全文
posted @
2014-08-06 14:41 聂文龙 阅读(2078) |
评论 (0) 编辑