Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for Matthias Braun‭

Type On... Excerpt Status Date
Edit Post #288926 Post edited:
grammar
4 months ago
Edit Post #288926 Post edited:
fix typos, try to improve wording
4 months ago
Edit Post #288926 Post edited:
Extend explanations, add screenshot of example session
9 months ago
Edit Post #288930 Post edited:
fix grammar in script
10 months ago
Edit Post #288929 Post edited:
grammar
10 months ago
Edit Post #288930 Post edited:
fix path
10 months ago
Edit Post #288930 Post edited:
fix wording
10 months ago
Edit Post #288930 Post edited:
Fix path to NetworkManager's secret key file
10 months ago
Edit Post #288930 Post edited:
fix typos
10 months ago
Edit Post #288930 Post edited:
fix spelling
10 months ago
Edit Post #288930 Initial revision 10 months ago
Answer A: How is the IPv6 link-local address calculated?
It's NetworkManager that sets the IPv6 link-local address and per default it doesn't use the conversion from MAC to IPv6 address of that converter, called modified EUI-64. As mentioned in the linked Wikipedia article, EUI-64 is deprecated for privacy and security reasons. Instead of EUI-64, Networ...
(more)
10 months ago
Edit Post #288929 Initial revision 10 months ago
Question How is the IPv6 link-local address calculated?
I was told that an IPv6 link-local address — typically starting with `fe80::` — is derived from the interface's MAC address. Here are some instruction on how to do the conversion. But the conversion result doesn't match my actual IPv6 link-local address according to `ip a`. My IPv6 link-local addr...
(more)
10 months ago
Edit Post #288926 Post edited:
Remove mysterious parentheses at end of post
10 months ago
Edit Post #288926 Post edited:
spelling
10 months ago
Edit Post #288926 Post edited:
fix section title, fix formatting
10 months ago
Edit Post #288926 Initial revision 10 months ago
Answer A: Debug NetworkManager with GDB
Note that if you want to debug the currently installed version of NetworkManager, you don't have to compile NetworkManager yourself. Instead, make GDB download symbol files via `debuginfod`. You can skip to section "Debug NetworkManager with GDB" of this answer to see how. Clone, configure, and co...
(more)
10 months ago
Edit Post #288925 Initial revision 10 months ago
Question Debug NetworkManager with GDB
I'd like to debug NetworkManager by stepping through it using GDB. I assume I'll have to compile NetworkManager from source to get debug symbols since `file /usr/bin/NetworkManager` indicates that the binary is stripped, having no debug symbols. I'm on Arch Linux and I can see that systemd starts ...
(more)
10 months ago
Comment Post #288009 I'd use `find` to visit all files, calling [`file --mime-type`](https://stackoverflow.com/questions/2227182/how-can-i-find-out-a-files-mime-type-content-type) to get the file type and then aggregate the data with `awk` as shown [here](https://askubuntu.com/questions/558979/how-to-display-disk-usage-b...
(more)
10 months ago
Edit Post #282891 Post edited:
trying to improve grammar
over 2 years ago
Edit Post #284556 Post edited:
spelling, grammar
over 2 years ago
Edit Post #284556 Initial revision over 2 years ago
Answer A: Close all desktop notifications
While there doesn't seem to be a general command like `notify-send` to hide all notifications, we can use features of our specific notification daemon, like mako in this case, to hide all notifications: makoctl dismiss --all []()
(more)
over 2 years ago
Edit Post #284555 Initial revision over 2 years ago
Question Close all desktop notifications
I'd like to hide/dismiss/remove all the notifications that applications like Signal have created. I know I can create notifications with, for example, `notify-send -t 10000 "🤖 Here goes my message"`. But is there an opposite command, that removes notifications? I read about `org.freedesktop.Not...
(more)
over 2 years ago
Suggested Edit Post #282891 Suggested edit:
trying to improve grammar
(more)
helpful over 2 years ago
Edit Post #283879 Post edited:
fix post
over 2 years ago
Edit Post #283879 Initial revision over 2 years ago
Question Reverse shell with named pipe and netcat
This blog post describes a privilege escalation, exploiting `tar`'s `--checkpoint-action` option. The privilege escalation is used to solve a TryHackMe challenge. The root user calls `tar` via `cron` which causes a script with the following content to run (I adapted the script a bit): rm /...
(more)
over 2 years ago
Edit Post #282817 Post edited:
wording
over 2 years ago
Edit Post #282818 Post edited:
improve grammar, remove leftovers of a markdown link
over 2 years ago
Edit Post #282818 Post edited:
over 2 years ago
Edit Post #282818 Post edited:
explain |&
over 2 years ago
Edit Post #282818 Initial revision over 2 years ago
Answer A: Get current server of pacman
with `pacman --debug` We can display the mirrors that pacman uses with the `--debug` option. For example, when running `pacman --debug -Sy`, pacman will write lines like these to standard error: debug: core.db: url is http://mirrors.kernel.org/archlinux/core/os/x8664/core.db We can ...
(more)
over 2 years ago
Edit Post #282817 Initial revision over 2 years ago
Question Get current server of pacman
How do I get the URL of the remote repository that pacman uses to download packages? I know that I can tell pacman which server to use by editing `/etc/pacman.d/mirrorlist`. But in my case, all of the lines are commented out and given that a command like `pacman -Syu` still works, I'm wondering wh...
(more)
over 2 years ago