dev-aid/linux/cli.md
2024-07-24 09:18:11 +08:00

29 lines
401 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 查看字体
```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
```
使用命令启动jar包
```bash
nohup java -jar jarName-0.0.1-SNAPSHOT.jar >msg.log 2>&1 &
```