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
575 posts
 
66%
+2 −0
Q&A Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock'

For Debian, Manjaro, Arch-Linux (those distributions which doesn’t have service) sudo systemctl enable mysql You can use start instead of enable. Note : Some distributions don't have mysql. Th...

posted 3y ago by deleted user  ·  edited 3y ago by Kevin M. Mansour‭

Answer
66%
+2 −0
Q&A Your Ruby version is 2.7.0, but your Gemfile specified 2.6.6.

In my Ruby project, when I try bundle install, I got: Your Ruby version is 2.7.0, but your Gemfile specified 2.6.6 I don't know how to solve it. I am using Windows Subsystem for Linux (WSL) U...

2 answers  ·  posted 3y ago by Kevin M. Mansour‭  ·  edited 3y ago by deleted user

Question ruby ubuntu
66%
+2 −0
Q&A Is it possible to install .deb file on arch-based Linux?

It is almost always a very bad idea to install a package meant for one distribution on another. It doesn't really matter if they use the same package format or not, but different package formats d...

posted 3y ago by Grove‭

Answer
66%
+2 −0
Meta Tag/category suggestions

I have some suggestions for categories, or perhaps tags, here. kernel distribution-specific daemon application server laptop desktop phone/device hardware

1 answer  ·  posted 3y ago by dsr‭  ·  edited 3y ago by deleted user

66%
+2 −0
Q&A With a V4L2-compatible webcam, how to see its video feed for the purpose of adjusting aiming?

I routinely use MPV for that. mpv --profile=low-latency --untimed av://v4l2:/dev/video0 You may need to try other devices, as listed by ls /dev/video*. Thanks to Canina for suggesting the two ...

posted 2y ago by Quasímodo‭  ·  edited 2y ago by Quasímodo‭

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

There are probably myriad services for echoing your IP back over HTTP. Here are a couple: curl https://api.ipify.org curl https://ip.me curl https://icanhazip.com

posted 5mo ago by Michael‭  ·  edited 3mo ago by Michael‭

Answer
66%
+2 −0
Q&A How do I safely replace brew on Big Sur?

If you just want the minimal set of top-level packages to install on your new system, brew leaves is less verbose than CodeFarmer's brew deps --installed. You get a nice concise list of the packag...

posted 4mo ago by Michael‭  ·  edited 4mo ago by Michael‭

Answer
66%
+2 −0
Q&A Show a timestamp on the right side of prompt when executing a command in ZSH

How to configure ZSH shell to print a timestamp on the right hand side of the prompt line when executing a command? I don't want to display the time prior to executing a command. Here's about how ...

1 answer  ·  posted 4mo ago by Iizuki‭  ·  last activity 4mo ago by Iizuki‭

Question zsh
66%
+2 −0
Q&A Show a timestamp on the right side of prompt when executing a command in ZSH

The preexec function is called right before executing commands, so it's the place to do this sorta things. This solution is adapted from Dan Berindei's original answer (CC BY-SA 3.0) to a related ...

posted 4mo ago by Iizuki‭

Answer
66%
+2 −0
Q&A Can rsync handle moves and renames?

Suppose I have a directory structure like ├── src │   ├── folder_a │   │   ├── file_w │   │   └── file_x │   ├── folder_b │   │   ├── file_y │   │   └── file_z and I back it up using rsyn...

1 answer  ·  posted 4mo ago by Karl Knechtel‭  ·  edited 4mo ago by Karl Knechtel‭

Question filesystem rsync
66%
+2 −0
Q&A What is synchronization in Wine?

Wine has options for "Synchronization", like "Esync" or "Fsync". What do these actually do? What is the purpose of such an option? What is the impact to normal usage of a Windows program in Wine?

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

Question wine
66%
+2 −0
Q&A An alternative to pacman sudo nag?

TL;DR When pacman bugs you for sudo, in bash or zsh (and possibly others but I haven't verified that), run sudo !! Full Answer As I see it you have 2 options: command substitution or an alias (o...

posted 3mo ago by TowerOfTurtles‭

Answer
66%
+2 −0
Q&A Find out which process is using a port

Sometimes your programs fail because the network port they are trying to use is already in use by some other process. How to find out what this other process is?

1 answer  ·  posted 3mo ago by Iizuki‭  ·  last activity 3mo ago by Canina‭

Question port process
66%
+2 −0
Q&A How to debug audio issues with JACK on Linux

I am trying to debug an issue with audio playback in MuseScore. During this process, I realised that I had/have no clue about audio playback in Linux (or in general for that matter). I already le...

0 answers  ·  posted 3mo ago by mr Tsjolder‭  ·  edited 3mo ago by mr Tsjolder‭

66%
+2 −0
Q&A How do I diagnose TLS errors?

Over some period of time, I have used a couple tools for local TLS scans and diagnostics. One of them may include pointers for whatever situation you have. Tool Description From Current? ...

posted 2mo ago by Michael‭  ·  edited 2mo ago by Michael‭

Answer
66%
+2 −0
Q&A What are the %U and %u parameters in desktop files?

Desktop files always have either %u or %U as an argument for the program being launched. E.g. here's a line from my firefox.desktop: Exec=/usr/lib/firefox/firefox %u What does it mean?

1 answer  ·  posted 2mo ago by Iizuki‭  ·  last activity 2mo ago by Iizuki‭

Question desktop xdg
66%
+2 −0
Q&A What are the %U and %u parameters in desktop files?

They are defined in the Desktop Entry Specification. In fact there are also %f and %F options. They tell the desktop manager how the program handles multiple files. Like if I select a bunch of fil...

posted 2mo ago by Iizuki‭

Answer
66%
+2 −0
Q&A Solr crashes on startup with segmentation fault

I am trying to run Solr 9.5.0 on Windows Subsystem For Linux 2. It crashes with a Segmentation Fault and does not start. I can run it on Windows without an issue. Java version on WSL2: 17 Java ve...

1 answer  ·  posted 2mo ago by tarhalda‭  ·  last activity 2mo ago by tarhalda‭

Question ubuntu wsl2
66%
+2 −0
Q&A Is there a way to automatically normalize paths when extracting RARs?

If all else fails, you could create a wrapper shell function to check the output of unrar l (probably by piping to wc -l) and proceed accordingly.

posted 2mo ago by Karl Knechtel‭

Answer
66%
+2 −0
Q&A How do you remap mouse buttons?

Wayland, ideally If you are on Wayland, the blessed way is to use the configuration for your desktop environment (DE) to map mouse keys and other input devices, except for a couple well-known opti...

posted 2mo ago by Michael‭  ·  edited 2mo ago by Michael‭

Answer
66%
+2 −0
Q&A How do you generate arbitrary random numbers from /dev/random?

Suppose I want to get random numbers from /dev/random with basic CLI tools. Is there a way to do it, that's easier to type and read than python -c 'import random; print(100 + 200*random.random())'?...

1 answer  ·  posted 2mo ago by matthewsnyder‭  ·  last activity 2mo ago by r~~‭

Question cli random
66%
+2 −0
Q&A What are non-POSIX shells and what's the point of them?

From the average user's perspective: Back in the day when people were figuring out how to do shells, there were as many shell syntaxes as shells. Everyone made up their own little language to go w...

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

Answer
66%
+2 −0
Q&A ==> WARNING: Possibly missing firmware for module: 'foo'

When I create the initramfs, I sometimes see messages like: ==> WARNING: Possibly missing firmware for module: 'xhci_pci' I get many for different modules. What do they mean? Should I in...

1 answer  ·  posted 2mo ago by matthewsnyder‭  ·  last activity 1mo ago by Iizuki‭

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

When PSF says Python 3.8 is not supported, they are simply saying they will no longer bother fixing bugs in or adding stuff to that version. It's not like Python 3.8 will start automatically explod...

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

Answer
66%
+2 −0
Q&A How to convert json to yaml?

With yq: $ yq --output-format yaml . file.json > file.yaml . is a filter which is applied to the data, but since . just stands for the document root, this means that the data is passed throu...

posted 1mo ago by Iizuki‭  ·  edited 19d ago by Iizuki‭

Answer