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
760 posts
 
60%
+1 −0
Q&A What are the most active distros without systemd?

Ever since systemd was adopted by mainstream distros, there's been many reactive projects aiming to provide a distro without systemd. I've often had the impression that a lot of these were motivat...

2 answers  ·  posted 5mo ago by matthewsnyder‭  ·  last activity 5mo ago by matthewsnyder‭

60%
+1 −0
Q&A Dual booting without rebooting

Suppose you have two Linux distributions installed in a dual boot situation. One issue that can happen is when you need to frequently switch. Rebooting is disruptive if you have a bunch of things ...

2 answers  ·  posted 5mo ago by matthewsnyder‭  ·  last activity 5mo ago by bgstack15‭

60%
+1 −0
Q&A What are the most active distros without systemd?

Devuan GNU+Linux is still around. It's boring, just like the Debian it's based on, because it's without the added drama of systemd and whatever systemd has supplanted. That will become a bigger pro...

posted 5mo ago by bgstack15‭

Answer
60%
+1 −0
Q&A What are the most active distros without systemd?

I can't answer this question fully, but I'll try my best. A reasonably comprehensive list of non-systemd distros can be found at https://nosystemd.org/. There might be some which are not on that l...

posted 5mo ago by matthewsnyder‭  ·  edited 5mo ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A Adding new entries to Grub with alternate kernel parameters

On Ubuntu and Debian (and their derivates) you can use the file /etc/grub.d/40_custom which is intended exactly for this: Content of /etc/grub.d/40_custom: #!/bin/sh exec tail -n +3 $0 # This f...

posted 5mo ago by GeraldS‭  ·  edited 5mo ago by GeraldS‭

Answer
60%
+1 −0
Q&A Dual booting without rebooting

I don't see any way to implement this. XenDesktop would have been the closest thing I can think of, but it's been discontinued years ago, and it involved VMs, which you don't want. It mapped hardw...

posted 5mo ago by GeraldS‭

Answer
60%
+1 −0
Q&A Can you reuse your home directory while distro hopping?

Permission wise you generally shouldn't have problems. Ownership in Linux/Unix uses numerical IDs, and on every major distribution the UIDs for regular users start at 1000, meaning the first user t...

posted 5mo ago by GeraldS‭

Answer
60%
+1 −0
Q&A How can I fill out PDF forms?

LibreOffice Draw (MPL-2.0) does that. It's hardly ideal, because unless you have all the standard Windows fonts (not actually tested!), almost all PDFs will have their text get rendered oddly inclu...

posted 5mo ago by bgstack15‭

Answer
60%
+1 −0
Q&A Dual booting without rebooting

Wild idea (NOT TESTED): This would not be for booting a whole second kernel, so it might fail badly if the distros were on wildly different kernel levels. For a graphical environment for X11, try ...

posted 5mo ago by bgstack15‭

Answer
60%
+1 −0
Q&A Confused about what "Linux" means

The term "Linux" means the kernel but is often used as shorthand for "Unix-style operating system running on Linux (the kernel)". The reason this is significant is that the kernel is by far the m...

posted 5mo ago by Christa‭

Answer
60%
+1 −0
Q&A Basic GPU usage monitoring

This doesn't really answer the question as posed, but IMO it's a useful footnote: If the primary interest is to monitor GPU usage specifically during a 3D application that uses Vulkan, MangoHud ca...

posted 5mo ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A Mute sound on boot

When I boot my computer, I want the sound to start out muted, even if it wasn't before. For bonus points: It should also reduce volume to 0% This should also happen when coming out of hibernat...

0 answers  ·  posted 5mo ago by matthewsnyder‭

60%
+1 −0
Q&A How to clean up junk files in my home directory?

After many years of using Arch, and many applications, my home directory is completely cluttered with junk. Of course, much of this is useful and needed for the normal operation of programs. For ex...

0 answers  ·  posted 5mo ago by matthewsnyder‭  ·  edited 5mo ago by matthewsnyder‭

60%
+1 −0
Q&A Reliably set a wallpaper in i3

Currently I set my wallpaper by having a call to feh in my i3 config. This does set the wallpaper, but it seems buggy. Whenever my monitor configuration changes, the wallpaper gets moved partially ...

0 answers  ·  posted 4mo ago by matthewsnyder‭

Question arch-linux i3wm xorg
60%
+1 −0
Q&A Forbid concurrent runs of a process

Make a lock file or env variable and alias the CLI command to test for the lock before it starts the real command.

posted 4mo ago by Michael‭

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

It seems like systemd labels every boot with some ID. Suppose I have some sporadic issue that happens only on some boots. I want to search logs for only the boots that have the issue, not all boot...

1 answer  ·  posted 4mo ago by matthewsnyder‭  ·  last activity 4mo ago by GeraldS‭

Question systemd journalctl
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 4mo 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 4mo ago by alx‭  ·  edited 4mo 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 4mo 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 3mo ago by Iizuki‭

Answer
60%
+1 −0
Q&A Increase incorrect login attempts before locking account

This appears to be set by the option deny in /etc/security/faillock.conf.

posted 1y ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A How to create systemd unit that depends on a website being up?

I'm going to write some systemd services. All of these can only be run if a certain website is up. I thought I could create a ~/.config/systemd/user/website.service this: [Unit] Description=Confi...

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

Question systemd
60%
+1 −0
Q&A Ergonomic way to search man pages

You often have to read man pages to use Linux/Unix software. However, many man pages are not easy to read. They are very long, not always conveniently arranged, and man does not appear to have any ...

3 answers  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by alx‭

Question man-page
60%
+1 −0
Q&A Ergonomic way to search man pages

Not a real answer, but these days there are some nice LLM models and they're good at summarizing text. If you have the CLI scripts to interact with them, you can submit the man page as the "system ...

posted 1y ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A GUI apps stop working until next boot after some system upgrades

Typically it is recommended to reboot your machine after a kernel update (because of the issues you mentioned). If you really do not want to reboot, there is a workaround by means of the kexec sys...

posted 1y ago by mr Tsjolder‭  ·  edited 1y ago by mr Tsjolder‭

Answer