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
 
71%
+3 −0
Q&A Adding new entries to Grub with alternate kernel parameters

I installed Grub in the normal way and now I have entries in the Grub menu for linux, linux-lts, and the fallback versions of them. I want to add more entries to this. For example, I want to add l...

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

Question grub
71%
+3 −0
Q&A Confused about what "Linux" means

I've heard people say that Linux is a misnomer. Supposedly, the operating system is not Linux, Linux is just a part of it called a kernel, and the operating system should be called something else. ...

2 answers  ·  posted 12mo ago by matthewsnyder‭  ·  last activity 12mo ago by Christa‭

Question linux terminology
71%
+3 −0
Q&A Clarifying terminology related to mounting

I understand that "mounting" in Linux refers to associating some "device" (usually some storage drive or a partition thereof, but it could be a region of RAM, some memory-mapped hardware, etc.) wit...

0 answers  ·  posted 12mo ago by Karl Knechtel‭

Question mount terminology
71%
+3 −0
Q&A Why don't LTS distros consistently use/offer LTS kernels?

I've noticed that the default kernel selection for Ubuntu 22.04, for example, is Linux 5.15.0. Ubuntu 22.04 is a LTS release, which is supposed to have standard support until April 2027, and Linux ...

0 answers  ·  posted 11mo ago by Karl Knechtel‭

Question kernel distributions release-cycle
71%
+3 −0
Q&A How to find all files not part of a package on Arch?

#!/bin/sh export LC_ALL=C # to make sorting not depend on locale # Ignore some well-known directories with many files find_args=' -path /usr/lib/modules -o -path /etc/ssl/certs -o -path ...

posted 11mo ago by Ordoviz‭  ·  edited 11mo ago by Michael‭

Answer
71%
+3 −0
Q&A Run programs of normal OS from a live USB

It sounds like what you want is: There is a program installed in the regular OS on my hard drive, but I am booted into a live OS. How do I run that program? The common way to do this is to us...

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

Answer
71%
+3 −0
Q&A Terminal: Continuously check mail, but not too often

watch will let you do what you want, yes. This can be easily demonstrated by running watch with a brief-running command and a delay, such as: $ watch -n2 'date; sleep 5' and observing that the ...

posted 11mo ago by Canina‭

Answer
71%
+3 −0
Q&A Can you tell Linux to ignore a device until it finished booting?

I have a crappy USB hub. I connect some devices to this, like a USB microphone, which don't matter at all until I've booted successfully. Sometimes these devices cause an issue and my boot gets stu...

0 answers  ·  posted 11mo ago by matthewsnyder‭

Question boot kernel systemd troubleshooting
71%
+3 −0
Q&A How to delay systemd unit at boot/login?

I have a systemd unit that runs hourly, but when the computer has just booted/logged in it will "catch up" on the previous run, so it ends up firing right after I log in. Is there a way to make it...

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

Question systemd
71%
+3 −0
Q&A How do you play Windows games on Linux?

A lot of games are made for Windows, and don't have an official Linux version. Can you play these on Linux? Asking specifically about games, not all programs, because games have a lot of additiona...

1 answer  ·  posted 11mo ago by matthewsnyder‭  ·  last activity 10mo ago by Kanaske‭

Question windows games
71%
+3 −0
Q&A Get notified when there are unmerged changes from origin

You can use the pre-commit hook for this. Example .git/hooks/pre-commit: #!/usr/bin/bash git fetch if [ $(git status -sb |grep -c behind) -gt 0 ]; then echo "ERROR: local repo is beh...

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

Answer
71%
+3 −0
Q&A How to stop terminal from handling `Super+.`

Super+comma and Super+period were mapped as emoji annotations. Run ibus-setup, go to the emoji tab, delete the bindings. Thanks to this SO post.

posted 10mo ago by mcp‭  ·  edited 10mo ago by Quasímodo‭

Answer
71%
+3 −0
Q&A Is it a bad idea to pipe a script from curl to your shell?

I won’t repeat the points mentioned in Ordoviz’s answer, but there’s another important aspect which is often forgotten: when you pipe a script to a shell (or pass it as an argument to -c), whatever...

posted 10mo ago by Stephen Kitt‭  ·  edited 10mo ago by Stephen Kitt‭

Answer
71%
+3 −0
Q&A How to find your public IP address from command-line?

ip a command will conveniently show the addresses assigned to your network interfaces, but oftentimes this is not what the internet sees your machine as. So how to find your public IP address from...

3 answers  ·  posted 1y ago by Iizuki‭  ·  last activity 1y ago by Michael‭

Question networking ip-address
71%
+3 −0
Q&A How do you remap mouse buttons?

How can I remap buttons on my mouse, especially for more exotic ones like MMO mice?

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

Question hardware mouse
71%
+3 −0
Q&A init process play a role in the booting of Linux

Init is starting all other processes. It's first process started by kernel. After that init uses init scripts to start all other needed functionality to boot up system, like mounting volumes, daem...

posted 1y ago by brew‭

Answer
71%
+3 −0
Q&A How to count the lines of a file?

How to get the number of lines in a file? I.e. for a file like this: Line one Line 2 Final line I would like to do something like this: $ count-lines /path/to/the/file/above 3

2 answers  ·  posted 1y ago by Iizuki‭  ·  last activity 1y ago by Michael‭

Question shell file
71%
+3 −0
Q&A How do I diagnose TLS errors?

For reasons of my own, I have services on my LAN which use HTTPS and I create my own certificates for these. Over the years, the usage of TLS has evolved considerably. Many features that were once...

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

Question home-server tls
71%
+3 −0
Q&A NetworkManager can't open certificate file when trying to connect to VPN

I want to connect to my university network via OpenVPN under Fedora GNOME. I imported the openvpn configuration provided by the university in the Network Manager GUI and specified the user certifi...

0 answers  ·  posted 1y ago by adonias‭  ·  edited 1y ago by Quasímodo‭

Question openvpn NetworkManager openssl
71%
+3 −0
Q&A Prettify XML in a shell

xmllint from xmllib2 can do this: $ output-dirty-xml | xmllint --format - The dash in the end tells xmllint to read from stdin instead of a file. Source: manpage

posted 1y ago by Iizuki‭

Answer
71%
+3 −0
Q&A What are non-POSIX shells and what's the point of them?

I've been learning some Linux and I finally feel like I can find my way around the command line. But now I hear people say there are other, "non-POSIX" kinds of shell, with different semantics. Wha...

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

Question shell posix cli
71%
+3 −0
Q&A How do you generate arbitrary random numbers from /dev/random?

You want shuf. shuf -n1 -i 534-876874

posted 1y ago by r~~‭

Answer
71%
+3 −0
Q&A Can a malicious party add false recipients (who are listed but can't really decrypt) to an encrypted GPG message?

In gpg(1), one normally adds recipients of an encrypted message with --recipient. Those recipients will be able to decrypt the message, and their key ID will appear unencrypted, so anyone will kno...

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

Question GPG
71%
+3 −0
Q&A Why/how can distro support lifetimes exceed the lifetime of their dependencies (such as Python)?

Motivating example: my Mint 20.3 distribution offers long-term support until April 2025, which matches the "standard support" offered for the upstream Ubuntu (20.04 "Jammy Jellyfish"). However, the...

2 answers  ·  posted 1y ago by Karl Knechtel‭  ·  last activity 1y ago by matthewsnyder‭

Question distributions release-cycle
71%
+3 −0
Q&A Why/how can distro support lifetimes exceed the lifetime of their dependencies (such as Python)?

When an upstream project stops supporting a version (e.g., Python stops supporting 3.8), the maintainers of the distribution do the job of supporting those components, applying security patches as ...

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

Answer