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
 
75%
+4 −0
Q&A How to edit file from less

You can edit the file you see in less by pressing v. From the man page: v Invokes an editor to edit the current file being viewed. The editor is taken from the envir...

posted 3y ago by celtschk‭

Answer
75%
+4 −0
Q&A Desktop Multiplexer for Linux? (GNU Screen for GUI apps)

GNU Screen and Tmux allow you to run command-line programs on a server, and 'disconnect' from them but let them keep running remotely. This is great if your primary computer is a laptop and it has...

1 answer  ·  posted 3y ago by re89j‭  ·  edited 3y ago by re89j‭

Question server gui desktop
75%
+4 −0
Q&A Desktop Multiplexer for Linux? (GNU Screen for GUI apps)

Have a look at Xpra. I only use it locally but it's intended to forward from remote hosts as well.

posted 3y ago by r~~‭

Answer
75%
+4 −0
Q&A When should you install windows dlls for wine with winetricks?

I noticed in winetricks that it can install windows dlls to the wine folder. It even gives an option to install almost all of them at once. When should someone install these instead of staying with...

2 answers  ·  posted 2y ago by true_blue‭  ·  last activity 2y ago by matthewsnyder‭

Question windows wine winetricks
75%
+4 −0
Q&A Retrieve changes that closed a Debian bug

If a Debian bug number is referenced in the changelog of an uploaded package, it is automatically closed with a generic message: We believe that the bug you reported is fixed in the latest versi...

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

Question debian
75%
+4 −0
Q&A What does a minimal /etc/hosts need to contain?

Technically, you don't need an /etc/hosts file at all if you have some other form of name resolution available - i.e. DNS. In practice, what you have will work nicely, and could be cut down to jus...

posted 3y ago by dsr‭

Answer
75%
+4 −0
Q&A Close all desktop notifications

I'd like to hide/dismiss/remove all the notifications that applications like Signal have created. I know I can create notifications with, for example, notify-send -t 10000 "🤖 Here goes my message"...

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

Question libnotify
75%
+4 −0
Q&A How to run a command on a list of files?

If I just used find to generate a list of files, then find's -exec argument is usually the way to run some other program on each file found. If you pipe the command to xargs, note that -P n wi...

posted 2y ago by dsr‭  ·  edited 2y ago by AdminBee‭

Answer
75%
+4 −0
Q&A Can I enter raw strings in fish to avoid escaping regexes for sed?

When running sed through fish, I often encounter a problem with regexes. Many commonly used regex control characters like []{}().+ need to be escaped, even if I type the regex in a single quoted st...

2 answers  ·  posted 2y ago by matthewsnyder‭  ·  last activity 2y ago by terdon‭

Question shell sed fish quotes regex
75%
+4 −0
Q&A Adding Python 3.11 to `$PATH`

The usual way is to specify an installation location with ./configure --prefix="$HOME/python" ... and then make install after make. If you don't specify a --prefix argument to configure, it ty...

posted 2y ago by tripleee‭  ·  edited 2y ago by terdon‭

Answer
75%
+4 −0
Q&A How do you troubleshoot bwrap/wine sandboxes for Windows games?

I use Wine to play Windows games. As is well known: Wine is not a sandbox Windows games are proprietary blobs and can contain malware Windows malware can potentially harm Linux through Wine ...

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

Question wine
75%
+4 −0
Q&A How to run a command on a list of files?

Suppose I have a list of files on standard input. These may be the output of find, cat filelist.txt or something else. How can I run a command on each file in turn?

3 answers  ·  posted 2y ago by matthewsnyder‭  ·  last activity 1y ago by Quasímodo‭

Question shell-scripting
75%
+4 −0
Q&A How to convert Flac to Mp3 with FFmpeg?

The best method is to navigate to the folder containing your Flac audio files and use the following 'for' loop: for j in *.flac do ffmpeg -i "$j" -c:a libmp3lame -b:a 128k mp3/"${j%.flac}.mp3" ...

posted 2y ago by andrew.46‭  ·  edited 2y ago by andrew.46‭

Answer
75%
+4 −0
Q&A Reverse shell with named pipe and netcat

I'm not sure which exact fragment, functionality or aspect is problematic to you. Here I will make points (paragraphs) about what I used to struggle to understand, or about what I suspect may be no...

posted 2y ago by Kamil Maciorowski‭  ·  edited 2y ago by Kamil Maciorowski‭

Answer
75%
+4 −0
Q&A How can I use SIGUSR1 or SIGUSR2 without risk of terminating the process?

SIGUSR1 and SIGUSR2 are user-defined signals. Imagine there is a tool designed to do something useful upon receiving one or the other. The problem is the default action for these signals is Term (...

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

Question kill signals race-condition
75%
+4 −0
Q&A Debug NetworkManager with GDB

I'd like to debug NetworkManager by stepping through it using GDB. I assume I'll have to compile NetworkManager from source to get debug symbols since file /usr/bin/NetworkManager indicates that th...

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

Question networking debugging
75%
+4 −0
Meta How can we grow this community?

Don't answer too many questions Avoid major tag gaps Keep the front page lively. My armchair analysis is that the funnel for this site is like this: User gets linked from internet search ...

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

Answer
75%
+4 −0
Meta See "works for me" indicator in list of questions?

This isn't an answer so much as some information related to your question. We have an open GitHub issue to add searching on reactions. We can already search by post type, category, user, score, a...

posted 2y ago by Monica Cellio‭  ·  edited 2y ago by Monica Cellio‭

Answer
75%
+4 −0
Q&A How to convert PDF to docx

How can I convert PDF to docx using the terminal or a Linux app? The output docx must be formatted with editable text. Some alternative solutions I've seen online using soffice and abiword output...

2 answers  ·  posted 2y ago by mcp‭  ·  last activity 2y ago by samcarter‭

Question docx pdf file-conversion
75%
+4 −0
Q&A Does /proc/config.gz always contain all supported options of a kernel?

It is possible - while being unlikely - that /proc/config.gz does not match the actual kernel configuration. Normally, /proc/config.gz should reflect the kernel configuration truthfully. But wheth...

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

Answer
75%
+4 −0
Q&A Why does the file command fail to recognize non-text files as such?

You might be enlightened by reading the man page for file(1). A brief quotation: This manual page documents version 5.35 of the file command. file tests each argument in an attempt to classify...

posted 4y ago by dsr‭  ·  edited 4y ago by Quasímodo‭

Answer
75%
+4 −0
Q&A How to forward SSH access of one machine, through another, to the rest of a network?

Canina's answer contains a good solution if you only want to reach a small number of hosts. But requiring a port[1] for each host you want to reach doesn't scale to many hosts. It also requires yo...

posted 4y ago by Grove‭  ·  edited 1y ago by Michael‭

Answer
75%
+4 −0
Q&A Get current server of pacman

How do I get the URL of the remote repository that pacman uses to download packages? I know that I can tell pacman which server to use by editing /etc/pacman.d/mirrorlist. But in my case, all of t...

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

Question arch-linux
75%
+4 −0
Q&A What is the best way to identify changes from the default configuration in Raspbian systems?

How does the list of packages differ from that in a fresh install? The easiest way, if you have the data for it, would probably be to parse the APT logs (particularly /var/log/apt/history.log*...

posted 4y ago by Canina‭

Answer
75%
+4 −0
Q&A What is the best way to identify changes from the default configuration in Raspbian systems?

I've got a Raspberry Pi running Raspbian, which I'd like to reinstall from scratch. However over time I've made many changes to the configuration (installed new packages, changed the name of the de...

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

Question debian raspbian configuration