晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /usr/share/doc/procps-ng/ |
Upload File : |
BUG REPORTS =========== The following is information for reporting bugs. Please read the file as well as the documentation for the relevant program before posting. This document is more useful for advanced users and the people that package for the distributions. Also if you are an end-user of the programs and not the packager and are using a distribution, check their bug tracker first, you may find its a known bug already. Where to send ------------- You can raise issues on the GitLab issues tracker which is located at https://gitlab.com/procps-ng/procps/issues You will need a GitLab login to do so. Alternatively send comments, bug reports, patches, etc. to the email list procps@freelists.org What to send ------------ It is much more useful to us if a program really crashes to recompile it with make `CFLAGS=-ggdb -O`, run it with `gdb prog` and `run` and send me a stack trace (`bt` command). That said, any bug report is still better than none. strace and ltrace output are very helpful: > strace -o output-file ps --blah > bzip2 output-file The output of `ps --info` is often quite useful, even if the problem is not with ps itself. A lot of the utilities use the same library. Merge Requests -------------- Merge requests are fine to use and give a central place for everyone involved to have a look. Merge requests are found on GitLab at https://gitlab.com/procps-ng/procps/merge_requests It is best to follow up your merge request with an email to the list saying what you have done. Patches ------- While merge requests are preferred, patches are also welcome. Get latest version of the source from upstream git. > git clone git@gitlab.com:procps-ng/procps.git and use `git format-patch` format. It is fine to attach patches as compressed tar balls. When you are about to send very large number of patches consider setting up your personal clone, and send a pull request. > git request-pull commit-id \ > git://gitorious.org/~yourlogin/procps/your-clone.git Kernel-Dependent Patches ------------------------ If you send patches which are specific to *running* with a particular kernel version of /proc, please condition them with the runtime determined variable `linux_version_code` from libproc/version.c. It is the same number as the macro `LINUX_VERSION_CODE` for which the kernel /proc fs code was compiled. A macro is provide in libproc/version.h to construct the code from its components, e.g. > if (linux_version_code < LINUX_VERSION(2,5,41)) > /* blah blah blah */ A startup call to `set_linux_version` may also be necessary. Of course, if a bug is due to a change in kernel file formats, it would be best to first try to generalize the parsing, since the code is then more resilient against future change. Code Structure -------------- A goal is to encapsulate *all* parsing dependent on /proc file formats into the libproc library. If the API is general enough it can hopefully stabilize and then /proc changes might only require updating libproc.so. Beyond that having the set of utilities be simple command lines parsers and output formatters and encapsulating all kernel divergence in libproc is the way to go. Hence if you are submitting a new program or are fixing an old one, keep in mind that adding files to libproc which encapsulate such things is more desirable than patching the actual driver program. (well, except to move it toward the API of the library).