仅列出标题 列出摘要
2013年1月17日

linux中禁用USB接口

摘要: 最简单的办法就是删除usb模块,或者可以用udev策略来实现插入U盘不相应事件。禁用:mv /lib/modules/`uname -r`/kernel/drivers/usb/storage/usb-storage.ko /lib/modules/`uname -r`/kernel/drivers/usb/storage/usb-storage.ko.bakreboot开启mv /lib/modules/`uname -r`/kernel/drivers/usb/storage/usb-storage.ko.bak /lib/modules/`uname -r`/kernel/drivers 阅读全文
posted @ 2013-01-17 14:53 baoyiluo 阅读(3949) 评论(0) 推荐(0) 编辑

linux 可终断复制

摘要: rsync -av test/ 192.168.8.1:/root/ 当网络中断后在获取链接可继续复制 阅读全文
posted @ 2013-01-17 11:15 baoyiluo 阅读(150) 评论(0) 推荐(0) 编辑

linux 非交互普通用户修改密码

摘要: 1 import pexpect 2 newpasswd = 'www.baoyiluo.com' 3 oldpasswd = 'www.longgeek.com' 4 child = pexpect.spawn('passwd') 5 child.expect('(current).*:') 6 print 'old over' 7 child.sendline(oldpasswd) 8 child.expect('New password.*:') 9 child.sendline(newpas 阅读全文
posted @ 2013-01-17 11:09 baoyiluo 阅读(409) 评论(1) 推荐(0) 编辑