寂静·流年

[冰与火的交缠,无法平息的灵魂]

下载vmware内核补丁

虽然是17.5.1版本的,但经实测,完全兼容17.5.2

1
wget https://github.com/mkubecek/vmware-host-modules/archive/workstation-17.5.1.tar.gz

解压文件

1
tar -xzf workstation-17.5.1.tar.gz

进入解压后的文件目录

1
2
cd vmware-host-modules-workstation-17.5.1/

阅读全文 »

NexT主题最新版本已经不支持自动摘要设置了,需要用的第三方插件hexo-abbrlink

安装hexo-exerpt

1
npm install hexo-excerpt --save

设置hexo-excerpt

hexo的配置文件_config.yml中,加入下面的内容:

1
2
3
4
5
excerpt:
depth: 5
excerpt_excludes: []
more_excludes: []
hideWholePostExcerpts: true

配置git的用户名和密码,应该是你安装完git后需要做的第一件事。

能避免很多麻烦

配置用户名

1
git config --global user.name "Your Name"

配置邮箱:

1
git config --global user.email "email@example.com"

保存密码

阅读全文 »

使用hexo-abbrlink插件即可。

安装

1
npm install hexo-abbrlink --save

设置

_config.yml中修改添加下面内容:

1
2
3
4
5
6
7
8
permalink: posts/:abbrlink.html
abbrlink:
alg: crc32
rep: hex
permalink_defaults:
pretty_urls:
trailing_index: false # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks
0%