Activity for jimbobmcgeeâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #285740 |
My initial thought is to mark ingress connections for the edge interface, and use that mark to target a particular routing table.
Something like (but probably not exactly):
```
nft add table netdev t1
nft add chain netdev t1 cInFilt { type filter hook ingress device eth0 priority 0\; }
nft a... (more) |
— | over 1 year ago |
Comment | Post #288453 |
Yes, that is true. I did make the assumption that the *.part* file would be specifically be a *sibling* to the files that were being deleted, which is not guaranteed by the question. (more) |
— | over 1 year ago |
Edit | Post #288480 | Initial revision | — | over 1 year ago |
Answer | — |
A: Dynamic IP & lease loss - "callback" mechanism? It depends on a couple of factors: 1. Whether the interface is directly connected to the internet, or is behind a separate firewall which is forwarding on to your machine 2. What you are using to assign your dynamic address If your machine is behind a separate firewall, that device is one wh... (more) |
— | over 1 year ago |
Comment | Post #288318 |
It depends if you can afford for the game's network traffic to actually reach home.
For capturing outbound network traffic, I'd use `tshark` or `tcpdump` to write a pcap file, then examine it in Wireshark. I'd be looking for the differences between network traffic when I was sandboxed vs when I... (more) |
— | over 1 year ago |
Edit | Post #288453 |
Post edited: |
— | over 1 year ago |
Edit | Post #288453 |
Post edited: |
— | over 1 year ago |
Edit | Post #288453 |
Post edited: |
— | over 1 year ago |
Edit | Post #288453 |
Post edited: |
— | over 1 year ago |
Edit | Post #288453 | Initial revision | — | over 1 year ago |
Answer | — |
A: Recursively remove files with the same name as the ones that end in `.part` I might be inclined to try... ``` find . -type f -name '.part' -exec sh -c ' [ -f "${1%.part}" ] && rm -i -- "${1%.part}"; for f in "${1%.part}".; do [ -f "$f" ] && rm -i -- "$f"; done ' -- {} \; ``` (newlines for readability; can be elided if one-liner means something to yo... (more) |
— | over 1 year ago |
Comment | Post #288318 |
Am going to *guess* the resulting sandbox reports that network is *connected*, but has no route to whatever DRM/anti-cheat/always-online endpoint is embedded in the Windows game.
As opposed to network reporting *disconnected* if you turn off your networking with `nmcli`.
I'd guess the logic for... (more) |
— | over 1 year ago |
Edit | Post #288446 |
Post edited: |
— | over 1 year ago |
Edit | Post #288446 | Initial revision | — | over 1 year ago |
Answer | — |
A: How to automatically change to the first matching directory using fuzzy search and cd? Possibly `-f "$dir"` not `-q "$dir"`. According to man: > -q, --query=STR > > Start the finder with the given query > > ... > > -f, --filter=STR > > Filter mode. Do not start interactive finder. When used with --no-sort, > fzf becomes a fuzzy-version of grep. If `--select-1` doesn't t... (more) |
— | over 1 year ago |
Comment | Post #288329 |
> I have no idea what the syntax for fish
If memory serves, `(command | psub)` but, ironically, I think it just creates temp files under the hood... (more) |
— | over 1 year ago |