Specification NestOS Project Component Description File

Signed-off-by: duyiwei <duyiwei@kylinos.cn>
This commit is contained in:
duyiwei 2023-06-21 03:14:45 +00:00 committed by Gitee
parent 34d332c16a
commit 7ce11642b3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -2,29 +2,50 @@
#### 介绍 #### 介绍
This is a systemd unit generator that enables swap on zram. This is a systemd unit generator that enables swap on zram.
(With zram, there is no physical swap device. Part of the available RAM
#### 软件架构 is used to store compressed pages, essentially trading CPU cycles for memory.)
软件架构说明 To activate, install zram-generator-defaults subpackage.
#### 安装教程 #### 安装教程
1. xxxx Install zram-generator rpm package:
2. xxxx
3. xxxx yum install zram-generator
To install directly from sources, execute make build && sudo make install NOBUILD=true:
-zram-generator binary is installed in the systemd system generator directory (usually /usr/lib/systemd/system-generators/)
-zram-generator(8) and zram-generator.conf(5) manpages are installed into /usr/share/man/manN/, this requires ronn.
-units/systemd-zram-setup@.service is copied into the systemd system unit directory (usually /usr/lib/systemd/system/)
-zram-generator.conf.example is copied into /usr/share/doc/zram-generator/ You need though create your own config file at one of the locations listed above.
#### 使用说明 #### 使用说明
1. xxxx A default config file may be located in /usr. This generator checks the following locations:
2. xxxx
3. xxxx -/run/systemd/zram-generator.conf
-/etc/systemd/zram-generator.conf
-/usr/local/lib/systemd/zram-generator.conf
-/usr/lib/systemd/zram-generator.conf
… and the first file found in that list wins.
In addition, "drop-ins" will be loaded from .conf files in /etc/systemd/zram-generator.conf.d/, /usr/lib/systemd/zram-generator.conf.d/, etc.
The main configuration file is read before any of the drop-ins and has the lowest precedence; entries in the drop-in files override entries in the main configuration file.
See systemd.unit(5) for a detailed description of this logic.
See zram-generator.conf.example for a list of available settings.
#### 参与贡献 #### 参与贡献
1. Fork 本仓库 master分支使用最新的上游版本如果检测到上游有最新版本发布先形成issue后再提交对应PR更新流程如下。
2. 新建 Feat_xxx 分支 1. 提交issue
3. 提交代码 2. Fork 本仓库
4. 新建 Pull Request 3. 新建 Feat_xxx 分支
4. 提交代码
5. 新建 Pull Request
#### 特技 #### 特技