0
votes
How do I figure out which /dev is a USB device?
ls -l /dev/disk/by-id/usb*
Under the default udev rules, that will show you most usb devices and it will show you the symlink to their block-device name on the system.
If that doesn …
2
votes
how could I intercept linux sys calls?
Why can't you / don't want to use the LD_PRELOAD trick?
Example code here:
/*
* File: soft_atimes.c
* Author: D.J. Capelis
*
* Compile:
* gcc -fPIC -c -o soft_atimes.o …
2
votes
how could I intercept linux sys calls?
I don't have the syntax to do this gracefully with an LKM offhand, but this article provides a good overview of what you'd need to do: …
