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
 
66%
+2 −0
Q&A how to use %F in a file URI in a .desktop file

I'm trying to create a .desktop file which opens a file, either inside a Vim server named "VIM" if that server exists, or otherwise using the normal Vim .desktop file. My .desktop file is below. ...

1 answer  ·  posted 4mo ago by Trevor‭  ·  last activity 4mo ago by r~~‭

Question shell-scripting gtk desktop xdg uri
66%
+2 −0
Q&A how to create a clickable link to an executable in the terminal

My goal is to create a clickable link in the terminal that opens an executable. I'm trying to do this using thefile: URI. For example, I want to open Blender whose executable is /usr/bin/blender. I...

1 answer  ·  posted 4mo ago by Trevor‭  ·  last activity 4mo ago by Ordoviz‭

Question terminal uri executable link
66%
+2 −0
Q&A how to create a clickable link to an executable in the terminal

Since you are using GNOME, these links are probably handled by gio (as opposed to xdg-open or exo-open). GIO and xdg-open use ~/.config/mimeapps.list to figure out how to open a certain link. The f...

posted 4mo ago by Ordoviz‭

Answer
66%
+2 −0
Q&A How to identify which Docker container an overlay is for?

Docker stores data under directories like /var/lib/docker/overlay2/xyz123. These sometimes grow very large, and Docker does not provide good instructions for how to easily manage the space used by ...

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

Question docker
66%
+2 −0
Q&A How can I simply persist functions written in the current terminal session for later use?

Suppose I write a Bash function at the command line: $ hello-world() { echo "Hello, world!"; } and I revise (perhaps hitting up-arrow to retrieve it from command history and edit it) and test a...

2 answers  ·  posted 3mo ago by Karl Knechtel‭  ·  last activity 3mo ago by bgstack15‭

Question scripting bash-function automation
66%
+2 −0
Q&A How to get the kernel version?

How to get the version of the currently running Linux kernel? I'm looking for a commandline solution, but feel free to post GUI solutions as well.

2 answers  ·  posted 1mo ago by Iizuki‭  ·  last activity 1mo ago by GeraldS‭

Question kernel
66%
+2 −0
Q&A How to connect to Zigbee devices?

I think I finally found a topic the Arch wiki doesn't cover :) I have a Zigbee USB dongle and some Zigbee-capable wireless devices. The dongle is supposed to create a network to which the devices ...

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

Question arch-linux zigbee
66%
+2 −0
Q&A How to reset time in Ubuntu after replacing CMOS battery?

How to reset time in Ubuntu after replacing CMOS battery?

2 answers  ·  posted 3mo ago by victoriafl‭  ·  last activity 3mo ago by GeraldS‭

Question linux
66%
+2 −0
Q&A How to reset time in Ubuntu after replacing CMOS battery?

TL;DR BIOS Setup, not Operating System In most systems there is a user-accessible setup page that is part of the BIOS. This is accessed before starting Linux, Windows or any other operating system...

posted 3mo ago by manassehkatz‭

Answer
66%
+2 −0
Q&A How does the OOM Killer stop its victim process?

Suppose the machine is short on memory and the OOM Killer has selected a target process to shut down (in order to reclaim memory). How does the OOM killer actually kill the process? Is it done usi...

1 answer  ·  posted 5mo ago by Iizuki‭  ·  edited 5mo ago by Karl Knechtel‭

Question process resource-management
66%
+2 −0
Q&A How to reset time in Ubuntu after replacing CMOS battery?

By default modern Ubuntu versions run the service systemd-timesyncd in the background. It fetches the time at regular intervals and should automatically set your system time when an NTP server is r...

posted 3mo ago by GeraldS‭

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 1y ago by Michael‭  ·  edited 1y 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 1y ago by Michael‭  ·  edited 1y 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 1y ago by Iizuki‭  ·  last activity 1y 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 1y 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 1y ago by Karl Knechtel‭  ·  edited 1y 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 1y ago by matthewsnyder‭  ·  last activity 1y 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 1y 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 1y ago by Iizuki‭  ·  last activity 1y 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 1y ago by mr Tsjolder‭  ·  edited 1y ago by mr Tsjolder‭

Question debugging audio alsa jack
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 1y ago by Michael‭  ·  edited 1y 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 1y ago by Iizuki‭  ·  last activity 1y 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 1y 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 1y ago by tarhalda‭  ·  last activity 1y 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 1y ago by Karl Knechtel‭

Answer