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 How to persist keyboard repeat rate and delay for external devices

Problem I want to set a global keyboard rate for both the X session and the console that persists for external keyboards, across plug-ins and removals. To my understanding, Xorg and console sett...

0 answers  ·  posted 2y ago by mcp‭  ·  edited 2y ago by Quasímodo‭

Question console x11 keyboard
71%
+3 −0
Q&A Can I make a compressed RAM drive and externally prepare a (pre-)compressed file to copy onto it?

I don't know what these things are called exactly in the Linux world. But there is the concept of a drive in RAM, to write files onto and read them like it was any disk drive. There is also the c...

1 answer  ·  posted 4y ago by CanisSomnolentus‭  ·  edited 1y ago by matthewsnyder‭

Question file RAMdisk ramfs
71%
+3 −0
Q&A What does `emerge --update --newuse --deep @world` have to do with package removal?

In Debian-based distributions, one can update the system with apt upgrade and cleanup unused dependencies with apt autoremove. Period. On Gentoo that is apparently not as straightforward. From G...

0 answers  ·  posted 4y ago by Quasímodo‭  ·  last activity 2y ago by Mithical‭

Question gentoo emerge dependencies
71%
+3 −0
Q&A How to use a detected USB RNDIS gadget as network adapter

I have a RaspberyPi module, with USB connected to another module computer (as USB host) running Linux. The RasPi is configured as USB ethernet gadget. Once I boot the RasPi, and enter dmesg on th...

1 answer  ·  posted 4y ago by sktpin‭  ·  last activity 4y ago by sktpin‭

Question networking USB gadget
71%
+3 −0
Q&A How to install printer driver for Canon PIXMA TR4522 printer in Arch Linux

I figured this out myself. I needed to install the cnijfilter2 AUR package. Installing this package provided me with the correct PPD file (which was named canontr4500.pdd). How I figured this out:...

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

Answer
71%
+3 −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 4y ago by Grove‭

Answer
71%
+3 −0
Q&A How to detect if a Linux Docker host has had unwelcome guests?

I plan to set up a Raspberry Pi to host some dockerized apps, for it to be accessible to the Internet through a remote proxy, and since I'm no sysadmin, I'm trying to come up with a suitable policy...

1 answer  ·  posted 4y ago by nnlei‭  ·  last activity 4y ago by Canina‭

Question raspbian security
71%
+3 −0
Q&A Intel® Centrino® Advanced-N 6205 not found in Debian

As a general rule of thumb, Debian is restrictive about installing during the initial installation what, according to the Debian Free Software Guidelines, is non-free software. That's why the inst...

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

Answer
71%
+3 −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 4y ago by dsr‭  ·  edited 4y ago by deleted user

Question discussion feature-request tag category
71%
+3 −0
Q&A Is this a robust way to distinguish explicitly installed packages from those pulled in as dependencies?

When exploring the commands from this answer to my previous question, I found that the ist of packages includes a lot that were automatically installed due to dependencies. Obviously I'm interested...

1 answer  ·  posted 4y ago by celtschk‭  ·  last activity 4y ago by Peter Taylor‭

Question debian configuration apt scripting
71%
+3 −0
Q&A Why does the file command fail to recognize non-text files as such?

POSIX defines Text file as A file that contains characters organized into zero or more lines. The lines do not contain NUL characters and none can exceed {LINE_MAX} bytes in length, inclu...

2 answers  ·  posted 4y ago by Quasímodo‭  ·  last activity 4y ago by LawrenceC‭

Question posix file
71%
+3 −0
Q&A How to find big files and directories?

If you don't mind installing something I recommend ncdu. It sorts the directories and files by size, you can exclude other mounts, navigate the tree directly and even delete files and folders as yo...

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

Answer
71%
+3 −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 it exists, or otherwise using the normal Vim .desktop file. This is what I have so far: [Desktop...

1 answer  ·  posted 6mo ago by Trevor‭  ·  edited 2mo ago by Michael‭

Question shell-scripting gtk desktop xdg uri
71%
+3 −0
Q&A If I have /home on a separate partition, how can I move it back to the root partition?

A general overview: Log in as root directly, no sudo or su (you may need to activate it temporarily, depending on your distribution) or boot from a live system unmount /home and mount it somewh...

posted 7mo ago by GeraldS‭

Answer
71%
+3 −0
Q&A Understanding semicolons in Bash functions

I know I can write a function at a Bash command line like so: $ test() { echo 'test' ; } I also found that I can write the } on a separate line, and omit ;: $ test () { echo 'test' > } ...

1 answer  ·  posted 5mo ago by Karl Knechtel‭  ·  last activity 3mo ago by bgstack15‭

Question syntax bash-function
71%
+3 −0
Q&A What does ${2-} mean in bash?

The dash, -, is part of a Parameter Expansion syntax that tells Bash to check for existence of the preceding parameter, a.k.a. whether it is "set", substituting whatever follows if it isn't. For th...

posted 7mo ago by nogjam‭  ·  edited 7mo ago by nogjam‭

Answer
71%
+3 −0
Q&A What does ${2-} mean in bash?

I came across this in a bash script: excludes+=("${2-}") What is the meaning of ${2-}?

1 answer  ·  posted 7mo ago by nogjam‭  ·  last activity 7mo ago by nogjam‭

Question bash shell-scripting options
71%
+3 −0
Q&A Getting a Module Error When Running Pytest Even Though the Module is Installed in the Current Virtual Environment

As a workaround, I had to uninstall pytest from the package manager and install it in the virtual environment. However, I would prefer to use the pytest from the package manager since it makes se...

posted 8mo ago by GeraldS‭

Answer
71%
+3 −0
Q&A How can I efficiently create a collage of video thumbnails on Linux?

I want to create a collage of 20 screenshots from a video, arranged in a 5x4 grid, regardless of the video’s length. How can I do this efficiently on a Linux system? Specifically, I’d like a way t...

2 answers  ·  posted 8mo ago by ShadowsRanger‭  ·  last activity 8mo ago by GeraldS‭

Question bash
71%
+3 −0
Q&A How to convert a markdown file to PDF?

You could use the LaTeX markdown package to create a pdf. To make sure that the coloured emoji are visible: choose a unicode-aware engine like lualatex choose a font which has coloured emoji, ...

posted 6mo ago by samcarter‭  ·  edited 6mo ago by samcarter‭

Answer
71%
+3 −0
Q&A How do I keep track of configuration changes?

Occasionally I ask how to do some configuration, and people tell me to do stuff like edit some config file in an XYZ directory. But if I configure everything this way, it will turn into a mess, and...

2 answers  ·  posted 1y ago by matthewsnyder‭  ·  last activity 2mo ago by mcast‭

Question configuration best-practices
71%
+3 −0
Q&A How do I send console output to the clipboard?

Suppose I have a command that prints to the standard output, like: $ echo hi hi How can I send this to the clipboard instead, as if I selected the output and did Ctrl+C?

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

Question terminal clipboard
71%
+3 −0
Q&A How do I keep track of configuration changes?

I think there are three general strategies: Take notes. Configure everything through some utility that keeps track of it. Learn the default state and diff the system vs. it. Taking notes ...

posted 1y ago by matthewsnyder‭

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

On X, echo hi | xsel -ib seems to work. I can then paste with Ctrl+V. Sometimes I have to repeat it a few times for it to "stick".

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

Answer
71%
+3 −0
Q&A Can you reuse your home directory while distro hopping?

I want to install additional Linux distributions on my computer, so I can try some new ones and see if they're better than my current ("old") one. I've been using my current distro for a while. I'...

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

Question /home dual-boot distro-hopping