1
0
Fork 0

Merging upstream version 0.0.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 15:21:10 +01:00
parent 5a3ffa62e4
commit cb2e838cdf
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
7 changed files with 41 additions and 21 deletions

View file

@ -23,10 +23,10 @@ Linking _debug/inotify-info...
```
## Install
You are free to copy the resulting executable to any suitable location in your `$PATH`.
```
cp _release/inotify-info /usr/local/bin/
```
The resulting executable will be at `_release/inotify-info`. You are free to
copy the resulting executable to any suitable location in your `$PATH` or run
`make install` to install to `/usr/local/bin`.
## Run (Prints Summary)
```
@ -154,13 +154,16 @@ Searching '/' for listed inodes... (8 threads)
94111468 [10304h] /home/mikesart/.cache/xfce4/xfce4-appfinder/
```
## Run on Docker
## Run on Docker/podman
```sh
docker build . -t inotify-info
docker run --rm --privileged -v /proc:/proc inotify-info
```
When running under [podman][podman] non-root mode, append `--ulimit
nofile=65535:65535` to the `podman build` command.
## Run on Nix(OS)
```
@ -176,3 +179,4 @@ nix run nixpkgs#inotify-info
[problem2]: https://unix.stackexchange.com/questions/15509/whos-consuming-my-inotify-resources
[lfqueue]: https://github.com/Taymindis/lfqueue
[bsd]: https://github.com/Taymindis/lfqueue/blob/master/LICENSE
[podman]: https://podman.io/