Linux用户程序
hzpeterchen
hzpeterchen@gmail.com
cn.linkedin.com/in/hzpeterchen/
展开
-
udev建立设备节点的规则
1. 设备要在下面任一一组目录下/sys/subsystem/devices/sys/bus/devices, /sys/class/, /sys/block 2. 上面这些目录下面的设备目录里要有uevent子项, 当用户程序向uevent里写入add, kernel就会得到这个add事件,kernel将add事件发给udevd, udevd就会建立对应的设备节点.原创 2010-04-08 11:13:00 · 1183 阅读 · 0 评论 -
How do I erase my disk
Use the "shred" command: Suppose I want to erase all the data on my hard disk, then I boot using a LiveCD like Knoppix and open a shell and type the following command: shred -vfz -n 10 /dev/hda He转载 2012-06-18 21:18:14 · 673 阅读 · 0 评论 -
oprofile的使用方法
1. opcontrol --init2. opcontrol --no-vmlinux”3. opcontrol --start”4. ./your_app5. opcontrol --dump"6. opcontrol --stop "7. opreport -l ./your_app 在内核的编译选项了要选择oprofile, 同时要有oprofile的应用程原创 2010-04-16 09:22:00 · 122 阅读 · 0 评论