整理文档

This commit is contained in:
2023-10-17 08:31:02 +08:00
parent ad897f90ea
commit c870d78b6a
9 changed files with 50 additions and 51 deletions

BIN
linux/assets/view-font.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

22
linux/cli.md Normal file
View File

@ -0,0 +1,22 @@
### 查看字体
```bash
- fc-list # 查看所有字体
- fc -list:lang-zh #查看中文字体
```
![查看字体](./assets/view-font.png)
#### 如果出现以下信息
```bash
bash: fc-list: command not found
```
解决:
```bash
apt-get update
apt-get upgrade
apt-get install fontconfig
```