Questions tagged [documentation]
Manuals or other information for system users detailing software features and functionality.
248 questions
-3
votes
1
answer
96
views
bash -n is a not documented in manpages or info documents [closed]
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 ...
0
votes
1
answer
36
views
Why index++ of SWISH++ is so slow?
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. ...
0
votes
1
answer
25
views
Relationship between CLONE_NEWUSER, `/bin/unshare` and `unshare(2)` as it relates to User Namespace
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....
0
votes
1
answer
76
views
Misdocumentation in nftables?
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/...
0
votes
1
answer
36
views
Where is documentation for `/boot/config-<kernel_version>`?
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 ...
0
votes
1
answer
23
views
IPFW documentation
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 &...
1
vote
0
answers
88
views
Documentation for /tmp's default permissions
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 ...
0
votes
1
answer
24
views
How do I report a Pop! OS documentation bug?
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 ...
0
votes
1
answer
834
views
How to update GRUB after updating system, on Fedora, with NVMe SSD
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:
$ ...
-1
votes
1
answer
70
views
'input-file' and 'output-file' vs. 'source-file' and 'target-file' as generic names [closed]
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 ...
0
votes
1
answer
71
views
What do (G) and (S) mean in samba's parameter configuration?
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 ...
0
votes
1
answer
101
views
How does the auto format of the join command work?
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 ...
0
votes
1
answer
41
views
rsync: need help resolving a "nomenclature" question
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 &...
1
vote
1
answer
261
views
Where is the wpa_supplicant.conf option "update_config=1" documented?
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 ...
0
votes
1
answer
55
views
ansible-doc getting started?
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 ...