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 Auto-enable FN-toggling for the first N FN keys

It is true that Fn combinations are usually implemented in hardware, but in X11 (not Wayland of course!) you can circumvent this issue for most or all your keys.[1] For example, my F3 -> F3 and...

posted 1y ago by Quasímodo‭  ·  edited 1y ago by Michael‭

Answer
66%
+2 −0
Q&A List remote container tags

How to list tags of a container in container registry using CLI tools? Kinda like you would browse them visually in dockerhub.

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

Question container
66%
+2 −0
Q&A Why doesn't System Monitor see Firefox as an application, unlike Chrome?

I use Kubuntu 24.04.1 LTS. Firefox is running: System Monitor see Firefox as a process: But not as an application: Why doesn't System Monitor see Firefox as an application, unlike Chrome? ...

1 answer  ·  posted 2mo ago by Franck Dernoncourt‭  ·  last activity 5d ago by InfiniteDissent‭

Question SystemMonitor firefox kubuntu
66%
+2 −0
Q&A greedy capture with sed

The b\+ part of the regex is already greedy. In sed, all repetitions are greedy. Your problem is that the initial .* is also greedy, and so that's gobbling up both the a and as many bs as it can. F...

posted 2d ago by r~~‭

Answer
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 5mo ago by GeraldS‭

Answer
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 5mo ago by Karl Knechtel‭  ·  last activity 5mo ago by bgstack15‭

Question scripting bash-function automation
66%
+2 −0
Q&A how to use %F in a file URI in a .desktop file

From the Desktop Entry Specification: A command line may contain at most one %f, %u, %F or %U field code. Try storing %F in a local variable and reusing the variable. Also, take care: %F wil...

posted 6mo ago by r~~‭

Answer
66%
+2 −0
Q&A Why is my Firefox window appearing underneath the application sidebar after unlocking my device?

Perhaps unsurprisingly, this turned out to be a Nvidia driver issue. Switching from the "X.Org X server - Nouveau display driver from xserver-xorg-video-nouveau" driver to the "NVIDIA driver (open ...

posted 2mo ago by Mithical‭

Answer
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 5mo ago by matthewsnyder‭  ·  last activity 2mo 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 5mo ago by victoriafl‭  ·  last activity 5mo 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 5mo ago by manassehkatz‭

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 7mo ago by matthewsnyder‭  ·  last activity 7mo ago by GeraldS‭

Question docker
66%
+2 −0
Q&A Why is my Firefox window appearing underneath the application sidebar after unlocking my device?

After running software updates on Ubuntu 22.04.05, my Firefox (137.0) window is suddenly behaving strangely; after I lock and unlock my computer, the window for some reason appears behind my applic...

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

Question ubuntu firefox
66%
+2 −0
Q&A How can I efficiently create a collage of video thumbnails on Linux?

Of course, being a swiss army knife ffmpeg already has this capability builtin: ffmpeg -i Example.mp4 -vf "select=not(mod(n\,20)),scale=200:-1,tile=5x4:padding=2:color=white" -vsync 0 -frames:v 1 ...

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

Answer
66%
+2 −0
Q&A How to find big files and directories?

If you want to go with command-line tools, the first step might be to run a du -h --max-depth=1 | sort -h -k 1 -r in your root directory. This will give you a list of the sub-directories sorted...

posted 8mo ago by AdminBee‭  ·  edited 8mo ago by AdminBee‭

Answer
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 6mo ago by Trevor‭  ·  last activity 6mo 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 6mo ago by Ordoviz‭

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 7mo ago by Iizuki‭  ·  edited 7mo ago by Karl Knechtel‭

Question process resource-management
62%
+3 −1
Q&A How to find big files and directories?

You've just run df -h and are shocked how little disk space you got left. You'd like to find where all the space has gone. How to find big(est) files and directories on your system? (So that you c...

3 answers  ·  posted 8mo ago by Iizuki‭  ·  edited 8mo ago by Iizuki‭

Question disk-usage maintenance
62%
+3 −1
Meta Decomposing compound questions

The basis of the Unix philosophy is to decompose complex tasks into simple sub-tasks, so that one can easily choose a combination of simple Unix tools to solve the problem in an intuitive way. Oft...

0 answers  ·  posted 2y ago by matthewsnyder‭

Question discussion
62%
+3 −1
Meta sum of received votes (up minus down)

I saw @dsr's user card. As you can see his sum of received votes is 1. But, if you visit his profile than it will show you that he has a question and answer, both of which have 1+1=2 upvotes. He...

0 answers  ·  posted 4y ago by deleted user  ·  edited 3y ago by Trilarion‭

Question bug status-completed vote
62%
+3 −1
Q&A How to edit file from less

MWE touch d less d # jump to editing d without leaving less Question Is there a way to edit a file from viewing it in less? Jumping straight into Vim would be preferred, but an answer for e...

1 answer  ·  posted 3y ago by mcp‭  ·  last activity 3y ago by celtschk‭

Question less edit vim editor emacs
60%
+1 −0
Q&A Preserve the sources extracted by dpkg-source so as to save time

It takes a long time to build even the source package for a PPA of a huge project, and while the build isn't finished my computer is under heavy load so I can barely navigate a browser. The frustra...

1 answer  ·  posted 2y ago by Quasímodo‭  ·  last activity 2y ago by Quasímodo‭

Question .deb dpkg
60%
+1 −0
Q&A Running `bashcompinit` in zsh to enable use of bash completion specifications gives "command not found"

I'd like to use the answers in this post while using zsh: compgen -c # will list all the commands you could run. compgen -a # will list all the aliases you could run. compgen -b # will list a...

0 answers  ·  posted 3y ago by mcp‭  ·  edited 3y ago by Canina‭

Question zsh
60%
+1 −0
Q&A How to make vi-mode bindings in terminal copy to clipboard

I don't know if this is universal or specific to my setup (zsh, GNOME Terminal, Xorg), but using "+yy (double quote, plus, Y, Y) instead of just yy works for me. Note this is the same command used...

posted 3y ago by deleted user

Answer