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
569 posts
 
75%
+4 −0
Q&A How to change keyboard layout without a DE?

According to the keyboard layout wiki, keyboard configurations (for both the console and Xorg) can be conveniently set using the localectl command. In order to set a second keyboard layout, we hav...

posted 9mo ago by mr Tsjolder‭

Answer
75%
+4 −0
Q&A Why does a reverse hexdump truncate the message?

From man xxd, the section on the -r flag (emphasis added): -r | -revert reverse operation: convert (or patch) hexdump into binary. If not writing to stdout, xxd writes into its output file with...

posted 10mo ago by r~~‭

Answer
75%
+4 −0
Q&A Where does GtkFileChooserDialog store bookmarks?

For most users, in $HOME/.config/gtk-3.0/bookmarks. Otherwise, if you set the XDG_CONFIG_HOME environment variable (which you can inspect with env), in $XDG_CONFIG_HOME/gtk-3.0/bookmarks. From the...

posted 8mo ago by Quasímodo‭  ·  edited 8mo ago by Quasímodo‭

Answer
75%
+4 −0
Q&A How do I set up my own DNS on my LAN, with delegation of public domains?

What you describe is a typical mixed authoritative/recursive resolver setup. Such a DNS server setup will respond from its own data about zones for which it has explicit configuration, and will per...

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

Answer
75%
+4 −0
Q&A Documentation for double asterisk glob expansion

Where can I find documentation on double asterisk in glob expansion? It is discussed in the .gitignore section of Pro Git. It works in ls **/* to list all terminal files. It is supported by py...

2 answers  ·  posted 8mo ago by mcp‭  ·  last activity 8mo ago by Kamil Maciorowski‭

Question bash glob
75%
+4 −0
Q&A What unexpected things can happen if a user runs commands expecting a text file on input lacking a file-final newline?

I would consider your own tools as the central use case. Seriously, do you want to litter every while read (or your language's equivalent) with this pesky corner case handling? while read -r line ...

posted 10mo ago by tripleee‭

Answer
75%
+4 −0
Q&A How do I tweak the start parameters of GUI apps?

There are many GUI apps on my computer that show up as eg. items in the start menu. When I launch these, what if I want to control how exactly they are launched, such as setting environment variabl...

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

75%
+4 −0
Q&A Simplest way of stripping leading/trailing whitespace from file or program output

The simple and obvious solution: sed 's/^ *//;s/ *$//' Many recipes you find online will erroneously add a g flag, but these regular expressions can only match once per line anyway. (In some m...

posted 10mo ago by tripleee‭  ·  edited 10mo ago by tripleee‭

Answer
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 10mo ago by Matthias Braun‭  ·  last activity 5mo ago by Matthias Braun‭

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 11mo ago by dsr‭  ·  edited 11mo 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 11mo ago by matthewsnyder‭  ·  last activity 11mo ago by terdon‭

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 11mo ago by tripleee‭  ·  edited 11mo ago by terdon‭

Answer
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?

5 answers  ·  posted 11mo ago by matthewsnyder‭  ·  last activity 1mo ago by trueframe‭

Question shell-scripting
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 10mo ago by Kamil Maciorowski‭  ·  edited 10mo ago by Kamil Maciorowski‭

Answer
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 11mo ago by andrew.46‭  ·  edited 11mo ago by andrew.46‭

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 10mo ago by Kamil Maciorowski‭  ·  last activity 10mo ago by Kamil Maciorowski‭

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 1y ago by mcp‭  ·  last activity 1y ago by samcarter‭

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 1y ago by Monica Cellio‭  ·  edited 1y ago by Monica Cellio‭

Answer
75%
+4 −0
Meta Should we merge with Power Users?

To increase the activity of the site (one of the main concerns related to making Codidact grow), I suggested merging Linux Systems with Power Users on Meta. Do you agree or disagree with merging?

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

75%
+4 −0
Q&A What does capital T mean in the output of 'ls -l'?

The reason why you don't find this in man ls is that the GNU project (that developed Coreutils) usually provides the complete documentation of its components not in classic manual pages, but in so ...

posted 2y ago by Quasímodo‭

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 2y ago by re89j‭  ·  edited 2y 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 2y ago by r~~‭

Answer
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 2y ago by dsr‭

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 1y ago by true_blue‭  ·  last activity 11mo ago by matthewsnyder‭

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 2y ago by celtschk‭

Answer