Benjamin_Loison commented on issue Benjamin_Loison/overleaf#62 2026-09-17 10:43:01 +02:00
Can't horizontally scroll panes and *...* buttons on Fennec

Desktop site does not seem to change anything.

image.png

image.png

Benjamin_Loison opened issue Benjamin_Loison/overleaf#62 2026-09-17 10:39:29 +02:00
Can't horizontally scroll panes and *...* buttons on Fennec
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:33:02 +02:00
Run a given command once another given command starts running

Could inotifywait the created file or print as Mistral propose and grep -m 1 on it maybe.

Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:32:31 +02:00
Run a given command once another given command starts running
cat -A /proc/$(pidof sleep)/cmdline
sleep␀7297␀
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:32:09 +02:00
Run a given command once another given command starts running
ls -l /proc/$(pidof sleep)/task/$(pidof sleep)/cmdline
-r--r--r-- 1 ubuntu ubuntu 0 Sep 13 22:31 /proc/8111/task/8111/cmdline
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:31:41 +02:00
Run a given command once another given command starts running
grep -rw 7297 /proc/$(pidof sleep)/
Output:
grep: /proc/8111/task/8111/net/rpc/auth.unix.ip/flush: Permission denied
grep: /proc/8111/task/8111…
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:30:30 +02:00
Run a given command once another given command starts running
ls -l /proc/$(pidof sleep)/cmdline
-r--r--r-- 1 ubuntu ubuntu 0 Sep 13 22:30 /proc/8089/cmdline
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:30:02 +02:00
Run a given command once another given command starts running
tree /proc/$(pidof sleep)/
Output:
/proc/8075/
├── attr
│   ├── apparmor
│   │   ├── current
│   │   ├── exec
│   │  …
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:27:53 +02:00
Run a given command once another given command starts running

https://chat.mistral.ai/chat/a63abce1-2e77-4752-928a-698503c0875d

Bash script:
sudo bpftrace --unsafe -e '
tracepoint:syscalls:sys_enter_execve
/str(a…
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:25:43 +02:00
Run a given command once another given command starts running

DuckDuckGo and Google search "is an unsafe function being used in safe mode".

Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-14 00:25:29 +02:00
Run a given command once another given command starts running
Bash script:
sudo bpftrace -e '
tracepoint:syscalls:sys_enter_execve
/str(args.filename) == "/usr/bin/sleep"/
{
    system("/usr/bin/touch /home/ubuntu…
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-13 18:15:56 +02:00
Run a given command once another given command starts running

Could investigate Using auditd.

Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-13 18:13:10 +02:00
Run a given command once another given command starts running

Listening to given program invocations, then investigate command line arguments would be fine.

Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-13 18:08:25 +02:00
Run a given command once another given command starts running
cat /proc/sys/fs/inotify/max_user_watches
65536
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-13 18:08:10 +02:00
Run a given command once another given command starts running
inotifywait --recursive --monitor /proc/
Output:
Setting up watches.  Beware: since -r was given, this may take a while!
Failed to watch…
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-13 18:07:59 +02:00
Run a given command once another given command starts running
inotifywait --monitor /proc/
Output:
Setting up watches.
Watches established.
/proc/ OPEN meminfo
/proc/ ACCESS meminfo
/proc/ CLOSE_NOWRITE…
Benjamin_Loison commented on issue Benjamin_Loison/linux#106 2026-09-13 17:58:12 +02:00
Run a given command once another given command starts running

I assume that the command that should be detected if not polled, should last enough to ask its command line arguments.