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
575 posts
 
66%
+2 −0
Q&A How do I diagnose TLS errors?

Over some period of time, I have used a couple tools for local TLS scans and diagnostics. One of them may include pointers for whatever situation you have. Tool Description From Current? ...

posted 3mo ago by Michael‭  ·  edited 2mo ago by Michael‭

Answer
71%
+3 −0
Q&A How do I diagnose TLS errors?

For reasons of my own, I have services on my LAN which use HTTPS and I create my own certificates for these. Over the years, the usage of TLS has evolved considerably. Many features that were once...

1 answer  ·  posted 3mo ago by matthewsnyder‭  ·  last activity 2mo ago by Michael‭

Question home-server tls
75%
+4 −0
Q&A What's the point of faillock?

On a default Arch install, faillock makes it so that if you enter the sudo password wrong too many times, even the correct password will be rejected until the timer is up. At the same time, you ca...

0 answers  ·  posted 3mo ago by matthewsnyder‭

Question security sudo
66%
+2 −0
Q&A How to debug audio issues with JACK on Linux

I am trying to debug an issue with audio playback in MuseScore. During this process, I realised that I had/have no clue about audio playback in Linux (or in general for that matter). I already le...

0 answers  ·  posted 3mo ago by mr Tsjolder‭  ·  edited 3mo ago by mr Tsjolder‭

60%
+1 −0
Q&A ldapsearch: how to ignore certificate?

This can be done by setting the LDAPTLS_REQCERT environment variable to never. For example like this when issuing the command: LDAPTLS_REQCERT=never ldapsearch -H ldaps://example.com:636 ...

posted 3mo ago by Iizuki‭

Answer
50%
+0 −0
Q&A ldapsearch: how to ignore certificate?

How to ignore server certificate when using ldapsearch command-line tool? Of course this isn't something you should be doing regularly, but it would be a handy asset for troubleshooting.

1 answer  ·  posted 3mo ago by Iizuki‭  ·  edited 3mo ago by Iizuki‭

Question ldap certificate
60%
+1 −0
Q&A Find out which process is using a port

Use netstat -lp. Typically in such a scenario you will likely be mostly interested in IP sockets, in which case you can also add -A inet,inet6. To get numerical port numbers, add -n as well. (See ...

posted 3mo ago by Canina‭

Answer
66%
+2 −0
Q&A Find out which process is using a port

Sometimes your programs fail because the network port they are trying to use is already in use by some other process. How to find out what this other process is?

1 answer  ·  posted 3mo ago by Iizuki‭  ·  last activity 3mo ago by Canina‭

Question port process
60%
+1 −0
Q&A What is synchronization in Wine?

I'm not an expert on this at all, but so far there are no answers, so I'll try one. "Synchronization" is in the context of multithreading. For those who don't know how multithreading works: Multi...

posted 3mo ago by matthewsnyder‭  ·  edited 3mo ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A An alternative to pacman sudo nag?

TL;DR When pacman bugs you for sudo, in bash or zsh (and possibly others but I haven't verified that), run sudo !! Full Answer As I see it you have 2 options: command substitution or an alias (o...

posted 3mo ago by TowerOfTurtles‭

Answer
60%
+1 −0
Q&A How to use the gitignore file without git(1).

You can fake out git as long as you have some empty Git repository available somewhere. git --git-dir=path-to-empty-repo/.git \ ls-files --others --exclude-standard

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

Answer
60%
+1 −0
Q&A How to use the gitignore file without git(1).

How can a file list be manually filtered with a gitignore file. I want to do the equivalent of git ls-files, but it should work even if I remove .git, so I can't use git(1). Currently, I'm doing ...

1 answer  ·  posted 3mo ago by alx‭  ·  last activity 3mo ago by r~~‭

60%
+4 −2
Q&A Why does Linux use the sudo command?

In Unix systems like Linux, some commands are considered dangerous and only the root user can run them. Normally, you don't login as root. So when you want to run dangerous commands, you must first...

posted 3mo ago by matthewsnyder‭  ·  edited 3mo ago by matthewsnyder‭

Answer
81%
+7 −0
Q&A How to count the lines of a file?

I think the typical way to do this uses wc ("word count") with the -l ("lines") option. $ wc -l /path/to/file 47 /path/to/file $ wc -l </path/to/file 47 $ cat /path/to/file | wc -l ...

posted 3mo ago by Michael‭  ·  edited 1mo ago by Michael‭

Answer
60%
+1 −0
Q&A How to count the lines of a file?

One way is to use grep: $ grep --count ^ /path/to/the/file The ^ character matches a start of a new line, so it basically counts the number of starting lines.

posted 3mo ago by Iizuki‭

Answer
71%
+3 −0
Q&A How to count the lines of a file?

How to get the number of lines in a file? I.e. for a file like this: Line one Line 2 Final line I would like to do something like this: $ count-lines /path/to/the/file/above 3

2 answers  ·  posted 3mo ago by Iizuki‭  ·  last activity 1mo ago by Michael‭

Question shell file
50%
+1 −1
Q&A An alternative to pacman sudo nag?

You don't. sudo is for there for security purposes. If you alias it as sudo pacman than you can mess up without knowing. You can login as root su - to execute consecutive commands.

posted 3mo ago by brew‭  ·  edited 3mo ago by brew‭

Answer
71%
+3 −0
Q&A init process play a role in the booting of Linux

Init is starting all other processes. It's first process started by kernel. After that init uses init scripts to start all other needed functionality to boot up system, like mounting volumes, daem...

posted 3mo ago by brew‭

Answer
40%
+2 −4
Q&A Why does Linux use the sudo command?

Why does Linux use the sudo command?

1 answer  ·  posted 3mo ago by catexotica‭  ·  last activity 3mo ago by matthewsnyder‭

Question linux
62%
+3 −1
Q&A init process play a role in the booting of Linux

How does the init process play a role in the booting of Linux?

1 answer  ·  posted 3mo ago by trueframe‭  ·  last activity 3mo ago by Mithical‭

Question linux boot
50%
+0 −0
Q&A What is Kmail running in the background?

When I run Kmail on i3, and then close it, it appears to continue running some stuff in the background. For example, I periodically get notifications about new mail from dunst, even though I have c...

0 answers  ·  posted 3mo ago by matthewsnyder‭

Question kmail
66%
+2 −0
Q&A What is synchronization in Wine?

Wine has options for "Synchronization", like "Esync" or "Fsync". What do these actually do? What is the purpose of such an option? What is the impact to normal usage of a Windows program in Wine?

1 answer  ·  posted 4mo ago by matthewsnyder‭  ·  last activity 3mo ago by matthewsnyder‭

Question wine
60%
+1 −0
Q&A How do you remap mouse buttons?

Piper can be used for this. All mice supported by Piper (actually libratbag) are a result of the community reverse engineering the mouse protocol. It will not support all mice, but only selected on...

posted 4mo ago by matthewsnyder‭

Answer
71%
+3 −0
Q&A How do you remap mouse buttons?

How can I remap buttons on my mouse, especially for more exotic ones like MMO mice?

3 answers  ·  posted 4mo ago by matthewsnyder‭  ·  last activity 2mo ago by Michael‭

Question hardware mouse
75%
+4 −0
Q&A Can rsync handle moves and renames?

I'm quite certain that rsync is not able to deduce that /path/to/src/folder_a/file_w on one side of the transfer is identical to /path/to/src/folder_c/file_w on the other side of the transfer. The...

posted 4mo ago by Canina‭

Answer