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
 
80%
+6 −0
Q&A Why is Pause/Break key is immediately released? Can that be fixed?

Since the Pause key is useless, I tried to map it to a modifier key. What is straightforward for other keys turned out not to work fine for Pause. By inspecting the output of xev -event keyboard |...

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

Question keyboard-event
77%
+5 −0
Q&A Capture separate _and_ combined stdout/stderr

Using BASH, how can I redirect stdout and stderr each, to two separate files, simultaneously? That's a mouthful, let me clarify a little: I have a hypothetical script that may/will generate outpu...

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

Question shell bash
77%
+5 −0
Q&A Installing Ruby on MacOS 12.2 (or 11.6) produces compilation errors in the downloaded source; how do I fix?

A project I want to work on requires Ruby. I was directed to RVM or rbenv. I tried rbenv first because it has Mac instructions, ran into failures, uninstalled it and installed RVM, and still ran ...

1 answer  ·  posted 3y ago by Monica Cellio‭  ·  edited 3y ago by Monica Cellio‭

Question ruby macos-11 macos-12
77%
+5 −0
Q&A How do I safely replace brew on Big Sur?

I'm still trying to solve my problem with installing Ruby on a new Mac, and some discussions are saying that I need to reinstall brew because of the change from the old chipset to the M1. (I'm jus...

4 answers  ·  posted 3y ago by Monica Cellio‭  ·  last activity 1y ago by matthewsnyder‭

Question macos-11
77%
+5 −0
Q&A How do I deal with a "pending update to "snap-store" snap, close the app to avoid disruption" notification in Ubuntu 22.04?

If snap-store itself is preventing the update, it's straightforward: snap-store --quit sudo snap refresh snap-store But sometimes it might be something else, in which case the above solution w...

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

Answer
77%
+5 −0
Q&A In a bash shell script, how to filter the command line argument list to unique entries only, for processing each?

The solution is to use an associative array to store what you've already seen: #!/bin/bash unset seen declare -A seen for arg in "$@" do if [[ -z "${seen[$arg]}" ]] then ...

posted 3y ago by celtschk‭

Answer
77%
+5 −0
Q&A How to figure out the licenses of files installed from packages?

On a Linux system, a lot of files are installed from packages, many of which have different licenses (and sometimes different licenses for different files in the package). If I want to figure out ...

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

Question .deb licensing
77%
+5 −0
Q&A In a bash shell script, how to filter the command line argument list to unique entries only, for processing each?

Here's an alternative that is a one-liner drop-in for your existing script: eval set -- $(printf "%q\n" "$@" | sort -u) It works by escaping the initial arguments, piping the escaped arguments ...

posted 3y ago by r~~‭  ·  edited 3y ago by r~~‭

Answer
77%
+5 −0
Q&A How to convert a markdown file to PDF?

How to convert a markdown file to PDF? The final PDF output should represent the rendered markdown file. Bonus points if the method also preserves colored emojis. Both CLI and GUI solutions are we...

2 answers  ·  posted 6mo ago by Iizuki‭  ·  last activity 6mo ago by samcarter‭

Question pdf markdown emoji
77%
+5 −0
Q&A Debug NetworkManager with GDB

Note that if you want to debug the currently installed version of NetworkManager, you don't have to compile NetworkManager yourself. Instead, make GDB download symbol files via debuginfod. You can ...

posted 2y ago by Matthias Braun‭  ·  edited 1y ago by Matthias Braun‭

Answer
77%
+5 −0
Q&A Documentation for double asterisk glob expansion

While * belongs to the POSIX standard, ** is an extension. You are right it's not in man 7 glob. Tools that treat ** specially (i.e. not as * simply followed by *) tend to agree what it means, but ...

posted 1y ago by Kamil Maciorowski‭

Answer
77%
+5 −0
Meta Suggestion: Basic Linux skills compendium

We are all Linux users and enthusiasts on this site, as well as caring about FOSS. Although technically this is a site for technical Q&A, I think some level of Linux activism is possibly benefi...

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

Question discussion
77%
+5 −0
Q&A Highlight regions in an image with CLI

This is an ideal case for ImageMagick. Given input.png: Running this command: convert input.png -draw 'fill yellow fill-opacity 0.5 polygon 50,50 100,30 150,50 100,150' output.png Produces ...

posted 2y ago by r~~‭

Answer
77%
+5 −0
Q&A What desktop environment am I running?

I'm a complete beginner, and just installed Linux for the first time. I chose a popular distribution, but I've run into some issues, or have a few questions. However, I don't know if I have Gnome, ...

3 answers  ·  posted 10mo ago by Andreas demands justice for humanity‭  ·  last activity 2mo ago by mcast‭

Question desktop-environment
77%
+5 −0
Q&A Find path to an executable

How to find the exact path to an executable file present in your PATH. I.e. commands you can call by just their names. E.g. what executable gets called when I type find and hit enter? $ hypotheti...

3 answers  ·  posted 9mo ago by Iizuki‭  ·  last activity 9mo ago by Ordoviz‭

Question path find
77%
+5 −0
Q&A Reverse shell with named pipe and netcat

This blog post describes a privilege escalation, exploiting tar's --checkpoint-action option. The privilege escalation is used to solve a TryHackMe challenge. The root user calls tar via cron whi...

1 answer  ·  posted 4y ago by Matthias Braun‭  ·  last activity 2y ago by Kamil Maciorowski‭

Question shell networking
77%
+5 −0
Q&A How to forward SSH access of one machine, through another, to the rest of a network?

I'm having trouble visualizing exactly what your setup is like, but if I understand correctly, then: You have one client that you are connecting from You have one server that you are able to co...

posted 4y ago by Canina‭  ·  edited 4y ago by Canina‭

Answer
77%
+5 −0
Meta Red border on question

There are keyboard shortcuts for navigation. Unfortunately they don't seem to be documented in help (at least I couldn't find an entry there), but you can see a list by typing ?. The red frame is ...

posted 4y ago by celtschk‭

Answer
77%
+5 −0
Q&A Get current server of pacman

with pacman --debug We can display the mirrors that pacman uses with the --debug option. For example, when running pacman --debug -Sy, pacman will write lines like these to standard error: debug...

posted 4y ago by Matthias Braun‭  ·  edited 4y ago by Matthias Braun‭

Answer
77%
+5 −0
Q&A Is this a robust way to distinguish explicitly installed packages from those pulled in as dependencies?

apt-mark aims to do this: the commands apt-mark showmanual and apt-mark showauto should show you respectively the packages which you explicitly installed and the ones which were added as dependenci...

posted 4y ago by Peter Taylor‭

Answer
77%
+5 −0
Q&A How do I send console output to the clipboard?

Use xclip(1). For example: $ printf '%s' foo | xclip; And now Shift+Insert to paste. There's a primary selection, a secondary selection, and a clipboard selection, and you can chose between t...

posted 12mo ago by alx‭  ·  edited 12mo ago by alx‭

Answer
77%
+5 −0
Meta Do domain-specific how-to's fit well within Q&A?

My immediate reaction would be that yes, it can definitely fit in the general Q&A category. And there is no rule against self-answers to questions. However, please do take a bit of care with h...

posted 12mo ago by Canina‭  ·  edited 12mo ago by Canina‭

Answer
77%
+5 −0
Meta Do domain-specific how-to's fit well within Q&A?

I certainly think "how to do X" is perfectly good for a question on Codidact, so long as X is sufficiently focused. A well-explained overview of a system is also useful, given it contains enough in...

posted 12mo ago by Andreas demands justice for humanity‭  ·  edited 12mo ago by Andreas demands justice for humanity‭

Answer
77%
+5 −0
Q&A Best practice for splitting data between a fast and slow drive

If I had a fast drive (SSD) and a slow one (HDD), what parts of my Linux system should go on the fast one?

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

Question partitioning performance best-practices
77%
+5 −0
Q&A What's the "big picture" of how my operating system is put together?

My understanding is that one of the key advantages of Linux is modularity: the actual Linux kernel is quite small, and then what we call Linux is that plus the "rest of the system" - hence "operati...

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

Question configuration linux packages