Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.

Questions tagged [documentation]

Manuals or other information for system users detailing software features and functionality.

Filter by
Sorted by
Tagged with
0 votes
2 answers
72 views

I want to provide information to users. For example, it would be helpful to provide curated lists of recommended programs tailored to users’ needs-such as a Disk Usage Analyzer for those managing ...
Heime's user avatar
  • 45
0 votes
1 answer
120 views

Just being curious: Question Is there an official (re)source where is list it all the categories of commands with their respective set of commands? Something like Linux Foundation for Filesystem ...
Manuel Jordan's user avatar
-3 votes
1 answer
156 views

Even though bash -n is a valid and widely used option, some manpages don't clearly document it in the bash options section, even though it is implemented. It's also not in the GNU Bash Reference ...
bit's user avatar
  • 1,196
0 votes
1 answer
55 views

I'm periodically running dwww+++ to add to searchable docs what info I add to local drive. It writes "Executing index++" and it runs for minutes, whereas my CPU load is ~2-3% of one core. ...
Martian2020's user avatar
  • 1,483
0 votes
1 answer
86 views

I am trying to comprehend some man7.org documentation about the User Namespace and the /bin/unshare command. I started by reading this page: https://man7.org/linux/man-pages/man7/user_namespaces.7....
learningtech's user avatar
0 votes
1 answer
94 views

As someone who hasn't hammered in all the parts of the OSI layers, I got quite frustrated with the documentation of bridge filtering in nftables: https://wiki.nftables.org/wiki-nftables/index.php/...
Caesar's user avatar
  • 25
0 votes
1 answer
85 views

I am working on understanding of how cgroups memory resource controller is enabled on Ubuntu 20.04. I have several Ubuntu machines that make up a Slurm 23.02.7 cluster. In cgroup.conf, SchedMD ...
irritable_phd_syndrome's user avatar
0 votes
1 answer
58 views

I am setting up router inside freebsd jail with ipfw, I might be blind, but I could not find comprehensive documentation on IPFW, which would make subject clear. I read both "firewall" and &...
Даниил Носиков's user avatar
1 vote
0 answers
169 views

Is there any documentation for the default permissions of the /tmp folder on *nix, in particular Linux? (Or perhaps /tmp doesn't have specified default permissions?) Background: I'm trying to ensure ...
burija's user avatar
  • 11
0 votes
1 answer
52 views

I used to be able to just file bug reports on Launchpad, but now, with the ubuntu-bug application I am defeated. Specifying the package results in an error telling me that it cannot collect any ...
Ubuntourist's user avatar
0 votes
1 answer
2k views

The Fedora documentation on updating to a new Fedora release recommends that, after we update, we should update the GRUB bootloader. They provide the following suggested advice on how to update: $ ...
D.W.'s user avatar
  • 4,306
-1 votes
1 answer
84 views

When documenting command-line things, it is often necessary to use generic names. Sometimes I use input and output words, and they play nice: # example 1 pandoc input_file.md -o output_file.htm But ...
jsx97's user avatar
  • 1,377
0 votes
1 answer
102 views

In the official documentation of Samba, the smb.conf(5) page has an "Explanation Of Each Parameter" section. For some parameters, two possible values (either (G) or (S)) are shown at the end ...
Manuel Jordan's user avatar
0 votes
1 answer
154 views

Here is an example: $ cat file1 hello there $ cat file2 some,very,long,line,hello,csv some,very,long,line,nope,csv $ join -t, -1 1 -2 5 file1 file2 hello,some,very,long,line,csv This works as ...
Jeenu's user avatar
  • 113
0 votes
1 answer
54 views

I've used rsync for a while, and it's always performed very well. However, trying to rsync my macOS (source, APFS file system) with my Synology NAS (dest, btrfs filesystem) seems to always present &...
Seamus's user avatar
  • 3,898
1 vote
1 answer
339 views

First of all, I know what the option does. According to the Arch Linux Wiki, it gives the command line "wpa_cli" utility the permission to rewrite wpa_supplicant.conf: Warning: Setting ...
Aubergone's user avatar
0 votes
1 answer
115 views

Is there a vimtutor eqvivalent to ansible? I know I can read up on the syntax of a particular module using ansible-doc <module> - but what if I can't recall the module name? If I find myself ...
azzid's user avatar
  • 1,020
0 votes
1 answer
1k views

I have read that support for the exfat filesystem has been incorporated in the Linux kernel since kernel ver 5.4 was released in late 2019 - early 2020. I'm confused about what this means wrt the ...
Seamus's user avatar
  • 3,898
1 vote
3 answers
379 views

This in reference to this question. Many thanks to user Marcus Müller for providing the silver bullet for getting Emacs 29 from Debian backports. I've done this already, and profited. However, one ...
bci_'s user avatar
  • 13
0 votes
1 answer
181 views

I've done a "Minimal" installation of NetBSD 9.3 from the ISO image, just to examine the behavior of one particular command (mktemp) as it differs from Linux. I'm not seeing man pages for… ...
Kevin E's user avatar
  • 554
1 vote
1 answer
43 views

While researching the answer for this question, I noticed there is a documentation page for man 5 btrfs that I see online. But I don't see that on Debian 12. Did this get shipped at all? How can I ...
Evan Carroll's user avatar
  • 35.2k
12 votes
3 answers
7k views

I want to know the exact syntax for /etc/environment. I know it's not an ordinary shell script, but how exactly are single and double quotes processed? Can environment variables defined earlier in the ...
nerdfever.com's user avatar
-2 votes
1 answer
974 views

Why, unlike Bash, almost all Zsh executable's option of '--help' cannot work, what'd be its counterpart to help user doing on it ?
user avatar
1 vote
0 answers
227 views

I have Linux git repository cloned, latest version of sphinx, GNU make, python, and all dependencies handled, running on MacOS (making the documentation to modify Linux on a VM), I am getting the ...
user129393192's user avatar
1 vote
1 answer
40 views

I want to construct a program utility synopsis for optional comma separated keywords. utility [KEYWORD[,KEYWORD]...] I worder where I should put the repeating pattern .... I want to allow the ...
Vera's user avatar
  • 1,373
1 vote
0 answers
338 views

For example the Samsung Galaxy S10 has an Exynos 9820 CPU with integrated NPU. We all know Android is based on Linux. So where can I find the Linux API documentation about how to interact with the NPU?...
zomega's user avatar
  • 1,022
1 vote
1 answer
2k views

Trying to understand why does the grep manual state the character classes with one square bracket. https://www.gnu.org/software/grep/manual/html_node/Character-Classes-and-Bracket-Expressions.html For ...
john smith's user avatar
1 vote
2 answers
120 views

I want to print some usage information for some functions. I customarily use echo or printf for each line. echo "-V, --version" echo " Display the version number and copyrights ...
Vera's user avatar
  • 1,373
1 vote
1 answer
3k views

I am not new to Linux but I am new to Linux Mint since I switched from Ubuntu due to reasons out of scope of this question (snapd, update borked my computer) I selected for FDE (Full Disk Encryption) ...
user avatar
1 vote
0 answers
34 views

I want to preview these unix docs : https://github.com/axboe/liburing/tree/master/man , what should I do?
Rick's user avatar
  • 1,257
1 vote
1 answer
3k views

For systemd's system units (the units you operate with systemctl --system (default)), it's possible to specify DynamicUser=yes to make systemd dynamically allocate a user and group for the service to ...
cyqsimon's user avatar
  • 967
1 vote
1 answer
221 views

when I cat /etc/group and cat /etc/passwd I get a list in which I find many I don't know. I know only group sudo group. But there is are many which I don't knows such as sys, adm .... I like to learn ...
zakadmin's user avatar
3 votes
1 answer
68 views

I am working on the installation for Maxima, a computer algebra system. The reference manual is written as a collection of Texinfo files. The primary documentation is English, but there are several ...
Robert Dodier's user avatar
5 votes
1 answer
692 views

I had the following experience: ps command: how to know all the headers with their respective descriptions? The answer is totally valid, the man available by the OS itself is not updated, so the web ...
Manuel Jordan's user avatar
1 vote
1 answer
94 views

In vim, there is both a function and a variable called complete. If you do help complete, you get the function's help. How do you get the help for the variable?
Ana's user avatar
  • 143
2 votes
1 answer
148 views

I want to read more about the Linux Kernel argument for memtest. Where can I find out more information about the arguments my kernel accepts?
Evan Carroll's user avatar
  • 35.2k
2 votes
1 answer
608 views

The file -b <path> command seems useful for scripting (filtering file types, not necessarily by extension). But for that you have to know the actual string output for your target filetype(s) If ...
Jonathan Levin's user avatar
1 vote
2 answers
497 views

On GNU/Linux is it possible to change the default pager for info command? I would like to use less as the pager (similar to man pages). I have customized less to use colors to make navigation of man ...
Amazigh_05's user avatar
1 vote
1 answer
983 views

For applications installed via system package manager, binaries, man pages, and docs go in /usr/bin/, /usr/share/man/man<n>/, and /usr/share/doc/<app-name>/ respectively. For example: ...
cyqsimon's user avatar
  • 967
5 votes
1 answer
1k views

I understood that man <command> is the manual page for any command. For man groupdel is possible see only two options: -h --help -R --root CHRROT_DIR Until here at a first glance one can assume ...
Manuel Jordan's user avatar
3 votes
1 answer
2k views

I use kernel.org docs to read about kernel functions. Now I am trying to make possible reading manuals for kernel-mode functions, such as printk with man 9 printk. The section 9 is used for this ...
Vlad Havriuk's user avatar
2 votes
1 answer
438 views

I'm looking for good documentation for sysfs; the man page is incomplete and even has one sentence that just stops half way through. I've found the Linux kernel documentation but that's a little bit ...
nohatsatthetable's user avatar
1 vote
2 answers
1k views

i wanted to find a website to download linux kernel documents offline in eother pdf or html or any kind but i dont know where to find and where to download any help would be appreciated the link i ...
EHSAN EAPXZ's user avatar
3 votes
1 answer
463 views

Most of the times when I use apropos I don't care about system calls, library calls etc — I'm just trying to find a command I forgot the name of. Is there a way to trim down the output of apropos to ...
mrzool's user avatar
  • 267
0 votes
0 answers
69 views

I'm looking for textual explanation of Linux exit codes (like 124 for timeout, 130 for SIGINT received, etc). I thought errno from moreutils does this but it seems it is for looking for error numbers? ...
Zeta.Investigator's user avatar
2 votes
1 answer
516 views

The NOTES section of $ man 5 sysctl.conf states: The description of individual parameters can be found in the kernel documentation. But is there a way for me to find this kernel documentation offline? ...
Jethro Cao's user avatar
2 votes
1 answer
496 views

Many VPN software use the TUN or TAP kernel driver to create a virtual network interface (mainly for Linux and FreeBSD systems). I know how they work and the differences, this is purely a ...
ocirocir's user avatar
  • 272
1 vote
2 answers
193 views

Simple, top level question (which, maddeningly has eluded my sorry level of Google-fu): Poking around in my (admittedly out of date) machine, I find the following file: /lib/modules/4.9.0-0.bpo.14-...
Digger's user avatar
  • 357
1 vote
1 answer
454 views

https://stackexchange.com/users/9328287/telcom I found a very useful and meaningful answer of yours about this error: E: The repository 'http://download.virtualbox.org/virtualbox/debian n/a ...
xaeros's user avatar
  • 19
0 votes
3 answers
193 views

In the context of adding capabilities to BaseX,I can see some information about a package: nicholas@mordor:~$ nicholas@mordor:~$ apt show basex Package: basex Version: 9.0.1+ds-1 Priority: optional ...
Nicholas Saunders's user avatar

1
2 3 4 5