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 »

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
 
60%
+1 −0
Q&A Journalctl - how to restrict search to only certain boot IDs?

Not directly, no. The argument -b only accepts a single id and using it multiple times only results in the last one being used. You can however loop easily over the file and get the output of all ...

posted 10mo ago by GeraldS‭

Answer
60%
+1 −0
Q&A How do I customize the output format of `apt search`?

With some pipes and apt-cache(8) search you can do it: $ apt-cache search libbsd | grep '^[^ ]*libbsd' | tr "\t" " " | sed 's/ -/\t-/' | column -t -s$'\t' | sort libbsd-arc4random-perl - CPAN's ...

posted 10mo ago by alx‭  ·  edited 10mo ago by alx‭

Answer
60%
+1 −0
Q&A Change device name that shows up in pactl

I use pipewire. When I list devices with pactl, I see some ugly device.name values. Some of these I changed in the past, but forgot how. I want to change some more. How?

0 answers  ·  posted 10mo ago by matthewsnyder‭

Question audio pipewire
60%
+1 −0
Q&A Command to display remote certificate information

nmap can do this: $ nmap -p 443 --script ssl-cert codidact.com Starting Nmap 7.95 ( https://nmap.org ) at 2024-08-12 10:06 EEST Nmap scan report for codidact.com (104.26.0.18) Host is up (0.00...

posted 10mo ago by Iizuki‭

Answer
60%
+1 −0
Q&A How to forward SSH access of one machine, through another, to the rest of a network?

Grove's answer is likewise good, but OpenSSH introduced ProxyJump (-J) in 2016 with v7.3, making it even easier to chain SSH hosts together: ssh -J [email protected] [email protected]...

posted 1y ago by Michael‭  ·  edited 1y ago by Michael‭

Answer
60%
+1 −0
Q&A In i3wm, how do I tell which screen is which workspace?

I have multiple screens and I often connect and disconnect monitors while the system is running. i3 assigns a workspace to each monitor, but does so unpredictably. Both workspaces are highlighted a...

0 answers  ·  posted 1y ago by matthewsnyder‭

Question i3wm multiple-screens
60%
+1 −0
Q&A How to extract string from file, run filter, and replace in file with new value?

Both replies, at different points, provided the basis for this working script. Assuming that the 12th line of file has something like:     <p>HERE IS MY TITLE</p> where HERE... begi...

posted 1y ago by David‭  ·  edited 1y ago by David‭

Answer
60%
+1 −0
Q&A Is it safe to completely take over ~/.config/systemd/user?

~/.config/systemd/user intended purely for units created and managed by the user manually, or are there any automated processes that expect to control it? For example, do packages or programs ever...

0 answers  ·  posted 1y ago by matthewsnyder‭

Question systemd
60%
+1 −0
Q&A Can you put systemd units under a custom path?

The systemd manual gives a list of path where systemd looks for unit files. However, I want to isolate my units in a path of my own choosing. Is it possible to configure systemd to add some path t...

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by Cadence‭

Question configuration systemd
60%
+1 −0
Q&A In i3wm when moving windows, how do I also switch to the workspace if it's active?

Let's say I have workspaces 1, 2, 3 on screen A and 4, 5 on screen B. Currently workspaces 1 and 4 are active. With my current config, moving a window to another workspace never activates it. How...

0 answers  ·  posted 1y ago by matthewsnyder‭

Question i3wm multiple-screens
60%
+1 −0
Q&A Lynis says my /etc/issue is weak - how to strengthen?

It turns out, that Lynis test code lives in /usr/share/lynis/include/test_banners which gave me a way to find what banner is considered good. :-) In my case, it's to have 5 or more specific keyword...

posted 1y ago by LAFK‭

Answer
60%
+1 −0
Q&A In i3wm, how to create affinity between screens and workspaces?

I have multiple screens and I often connect and disconnect monitors while the system is running. i3 assigns a workspace to each monitor, but does so unpredictably. Sometimes my main monitor is work...

0 answers  ·  posted 1y ago by matthewsnyder‭

Question i3wm multiple-screens
60%
+1 −0
Q&A Lynis says my /etc/issue is weak - how to strengthen?

When hardening my system with Lynis I had information about /etc/issue and /etc/issue.net being found weak. Lynis redirects me to Enterprise, which is a paid product and a bit overkill for my home...

1 answer  ·  posted 1y ago by LAFK‭  ·  last activity 1y ago by LAFK‭

Question Lynis hardening
60%
+1 −0
Q&A Modern and practical way to schedule tasks on a Linux machine that is not always on

Historically, cron was the main way to schedule tasks on Linux. Briefly, there will be some file like /etc/crontab which will contain one line for each task. The line starts with a schedule string ...

posted 1y ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A Looking for a way to sync dotfile content between different machines without introducing security issues

A first quick solution I hacked up was to sync via NAS. Synology NAS served as a synchro point. I synced via git repo. etckeeper was used to sync machine config, pass was used to sync passwords. S...

posted 1y ago by LAFK‭

Answer
60%
+1 −0
Q&A Modern and practical way to schedule tasks on a Linux machine that is not always on

The standard way to schedule tasks in most Linux systems nowadays is to use systemd timers. This requires writing a systemd timer config file, which has syntax similar to INI. This is summarized i...

posted 1y ago by matthewsnyder‭  ·  edited 1y ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A In i3wm, how do I move a workspace with its windows to another screen?

In i3, is there a way to move an entire workspace to another monitor, including all windows it contains?

0 answers  ·  posted 1y ago by matthewsnyder‭

Question i3wm multiple-screens
60%
+1 −0
Q&A How to prevent keyboard layout modifications from affecting external keyboards

Using For the console: /etc/vconsole.conf ---- KEYMAP=dvorak For X Session: .xinitrc ---- setxkbmap -layout us -variant dvorak & Problem For the console, it applies the dvorak lay...

0 answers  ·  posted 1y ago by mcp‭  ·  edited 1y ago by mcp‭

Question arch-linux console x11 x-session
60%
+1 −0
Q&A How does the root user locate executables?

A little while ago I was helping someone with running Python in a virtual environment, as root, for some specific purpose. I determined easily enough that this requires explicitly specifying the pa...

1 answer  ·  posted 1y ago by Karl Knechtel‭  ·  last activity 1y ago by r~~‭

Question path which root-user
60%
+1 −0
Q&A How to identify and separate standalone applications from libraries in Linux package lists?

I want to generate a list of trending Arch/AUR packages that focuses on user-facing applications rather than background libraries and dependencies. I wrote a script that uses the data from pkgstat...

1 answer  ·  posted 1y ago by ShadowsRanger‭  ·  last activity 1y ago by alx‭

Question arch-linux packages
60%
+1 −0
Q&A How to bypass SSH destination host key fingerprint check?

When you first connect to a host, ssh asks you about saving its fingerprint. If you do, on subsequent connections it will check the fingerprint and refuse to connect if it changed. I get that this...

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by Canina‭

Question ssh
60%
+1 −0
Q&A Rename multiple files which have a variable suffix

I compressed some JPEGs with curtail it messed up the filenames. It was supposed to only add -min at the end but ended up adding a random string after the extension 😠: prs@PC:/DOWNLOADS/Pictures$ ...

3 answers  ·  posted 1y ago by Pr. Sunflower‭  ·  edited 1y ago by matthewsnyder‭

Question renaming
60%
+1 −0
Q&A Rename multiple files which have a variable suffix

find . -type f -print0 \ | grep -z -- '-min.jpg-[[:alnum:]]*$' \ | while IFS= read -r -d '' f; do find "$f" -print0 \ | sed -z 's/-min.jpg-[[:alnum:]]*$/-min.jpg/' \ | xargs -0 mv ...

posted 1y ago by alx‭  ·  edited 1y ago by alx‭

Answer
60%
+1 −0
Q&A How to tile multiple small page PDFs on a single standard size PDF?

Suppose I have a PDF which is 2x3 in. I want to create a PDF with a single page, which has multiple copies of this. For example, if the small pieces are in landscape, and the large page is in portr...

0 answers  ·  posted 1y ago by matthewsnyder‭

Question pdf
60%
+1 −0
Q&A How to open a port in firewalld?

How to open a port when using firewalld as the system firewall?

1 answer  ·  posted 1y ago by Iizuki‭  ·  last activity 1y ago by Iizuki‭

Question firewall firewalld