summaryrefslogtreecommitdiff
path: root/sys/man
AgeCommit message (Collapse)Author
2021-08-29date(1): sync with realityOri Bernstein
'date -m' was removed, but evidence of its existence was left in the manpage.
2021-08-27git(1): "see also" consistency (thanks sirjofri)Ori Bernstein
adds commas between "see also" entries to make it consistent with other man pages.
2021-08-24man page fixes (thanks stuart morrow)qwx
2021-08-18exportfs, oexportfs, iostats: make -d log to stderramavect
exportfs -d logs 9p traffic to /tmp/exportdb. -f allows writing to a different file. exportfs silently continues if it doesn't have permissions to create or write to /tmp/exportdb. These are poor behaviors. A better default is to write to stderr, since it is 9P debug info that is better immediately printed, and not user info that is better handled by syslog(). As a result, -f is obsolete and thus removed. Redirect responsibility is now on rc. As a side effect, rc will fail if it doesn't have permissions to write. exportfs(4) is updated to reflect all changes and with a better Synopsis. oexportfs is changed to match exportfs. oexportfs(4) is updated to reflect all changes. The Synopsis is not changed due to the number of flags. Removed -f from iostats. iostats(4) is updated to reflect all changes. ---
2021-08-20audio(1): replace references to juke(7) and playlistfs(7) with zuke(1) ↵Alex Musolino
(thanks unobe)
2021-08-18exportfs: revert e524e8d65a7573c46d7beb49e77bfc2d55a5563dOri Bernstein
It turns out that the '-f' flag was being used, and removing it broke things.
2021-08-14exportfs: make -d log to stderramavect
exportfs -d logs 9p traffic to /tmp/exportdb. -f allows writing to a different file. exportfs silently continues if it doesn't have permissions to create or write to /tmp/exportdb. These are poor behaviors. A better default is to write to stderr, since it is 9P debug info that is better immediately printed, and not user info that is better handled by syslog(). As a result, -f is obsolete and thus removed. Redirect responsibility is now on rc. As a side effect, rc will fail if it doesn't have permissions to write. exportfs(4) is updated to reflect all changes and with a better Synopsis.
2021-08-15tinc: fix spelling and update manpage (thanks unobe)cinap_lenrek
Update tinc(8) man page to: 1. state the implementation aligns with 1.0.36 of tinc.org; 2. use same hostname as mentioned in usage line. Fix typos in tinc.c.
2021-08-059p(2): fix a typo (thanks humm)Sigrid Solveig Haflínudóttir
2021-07-25dial(2): dial returns an open data file, not a ctl one. also fixed little typo.rodri
2021-07-25libc: use usize for sbrk() incrementcinap_lenrek
2021-07-25libc: change usize to 64-bit for amd64 and arm64, make memory(2) functions ↵cinap_lenrek
use usize
2021-07-23arm64: use generic timer virtual counter for cycles()cinap_lenrek
We used to use performance cycle counter for cycles(), but it is kind of useless in userspace as each core has its own counter and hence not comparable between cores. Also, the cycle counter stops counting when the cores are idle. Most callers expect cycles() to return a high resolution timestamp instead, so do the best we can do here and enable the userspace generic timer virtual counter.
2021-07-21gzip, bzip2: add -n flag to suppress modification timestampcinap_lenrek
2021-07-20brk(2): .... we define lowest addres not used by the program above, so use ↵cinap_lenrek
that instead
2021-07-20brk(2): sbrk(0) returns end address, not the basecinap_lenrek
sbrk(0) returns the current end address of the BSS segment, not the base. This might have been confused with the behaviour of segbrk(), which when given a zero address returns the base.
2021-07-17aux/cddb: Provide -e option to print commands to rip audio with tags.Jacob Moody
Also parse title/track artist and year.
2021-07-16kbdfs: allow to escape ctlr-alt-del with shift for vmx and vnc.cinap_lenrek
2021-07-15webfs(4): fix typoskvik
2021-07-15archacpi: make *acpi=1 the defaultcinap_lenrek
2021-07-14graphics(2): fix typokvik
2021-07-12fs(4): describe the noauth toggle better (thanks izaki)Ori Bernstein
2021-07-12strcat(2): 0 → nil in manpage in refrence to pointersJacob Moody
2021-07-09mouse(3): mousein is NOT exclusive, see 30907f1d00a7646ccbb420a18f60ccb0bf36e740Sigrid Solveig Haflínudóttir
2021-07-04rsa(8): document auth/x5092pub, fix usage linescinap_lenrek
2021-07-04libsec: add X509reqtoRSApub() function and return subject alt names in ↵cinap_lenrek
X509to*pub() name buffer We need a way to parse a rsa certificate request and return the public key and subject names. The new function X509reqtoRSApub() works the same way as X509toRSApub() but on a certificate request. We also need to support certificates that are valid for multiple domain names (as tlshand does not support certificate selection). For this reason, a comma separated list is returned as the certificate subject, making it symmetric to X509rsareq() handling. A little helper is provided with this change (auth/x5092pub) that takes a certificate (or a certificate request when -r flag is provided) and outputs the RSA public key in plan 9 format appended with the subject attribute.
2021-07-03libc: add encode(2) variants for custom alphabetsOri Bernstein
There are a number of alphabets in common use for base32 and base64 encoding, such as url-safe encodings. This adds support for passing a function to encode into arbitary alphabets.
2021-07-01devmouse: default to no blanking instead of 30 minute blank timeoutcinap_lenrek
2021-06-27manual: don't match nonexistent file while preprocessingAnthony Martin
Authsrv(6) used to be called auth(6) before the fourth edition and was preprocessed by eqn(6) before the third edition. The mkfile was never updated to reflect the changes. All other files are accounted for: % cd /sys/man % for(i in TS EQ PS G1) echo $i `{grep -l '^\.'$i ?/[0-9a-z]*} TS 1/tbl EQ 1/eqn 3/usb PS 1/pic G1 1/grap %
2021-06-27pic(1): restore example sectionAnthony Martin
It was erroneously elided when removing the tpic command in commit 891a8c4f2.
2021-06-27segment(3): restore missing phraseAnthony Martin
It was accidentally removed when documenting the sticky segment type in commit 99ed9623b.
2021-06-23tmdate(2): "ttt" is a valid format too, mention itSigrid Solveig Haflínudóttir
2021-06-22git/fs: use a better heuristic for permissions.Ori Bernstein
Since we now store /dist/plan9front in git, the initial assumption that the owner of the repo is the person touching it is not always true. This change gives us a better heuristic for the file permissions we should have in the files we copy around, basing it off of the permissions of the .git directory.
2021-06-21git(1): we have rebaseOri Bernstein
2021-06-21/sys/man/mkfile: drop reference to non-existent realtime(3)Alex Musolino
2021-06-21sched(9): replace '–' with '-' in NAME sectionAlex Musolino
This was causing the ptx utility in /sys/lib/man/permind to barf. As such, the PDF book of all manual sections could not be built.
2021-06-21/sys/man/mkfile: run eqn(1) for usb(3) section of bookAlex Musolino
2021-06-20date(1): list all option characters in SYNOPSISAlex Musolino
Now that -f is specifically mentioned (as it takes an argument), might as well list the others in full.
2021-06-19nusbrc(8): fix typo (thanks igor@9lab.org)kvik
2021-06-17date(1): document '-f' optionOri Bernstein
2021-06-15ircrc: freenode -> oftcglenda
2021-06-14python, hg: tow outside the environment.Ori Bernstein
they've served us well, and can ride off into the sunset.
2021-06-12sam: remove refrence to /srv file in man pageJacob Moody
2021-06-12lib9p: add auth* functions to man pageJacob Moody
2021-06-05a.out(1): update manpage to be 64 bit inclusivejacob gw
2021-06-11Remove ap(1)Fulton Browne
Cool script - does not work.
2021-06-08git/conf: check in /sys/lib/git/config as a fallback to user-wide configkemal
2021-06-07sysinfo(1): we don't do '-i' for sysupdate any more.Ori Bernstein
2021-06-07acme(4): document rdsel, wrsel (thanks foura)Ori Bernstein
2021-06-06sysinfo(1): we're on git now.Ori Bernstein