Arch Linux 使用内核 kernel默认为 linux stable 最新的稳定版。切换为 linux-lts Longterm 长期支持版本。
我是用的是 system-boot
引导系统, 更替内核大概步骤如下。
- 安装 linux-lts 内核。
- 添加或者替换配置引导条目
- 更新 systemd-boot
Arch Linux 使用内核 kernel默认为 linux stable 最新的稳定版。切换为 linux-lts Longterm 长期支持版本。
我是用的是 system-boot
引导系统, 更替内核大概步骤如下。
在 Linux 安装 blender 后,检查 /usr/bin/blender-thumbnailer
缩略图生成命令是否存在。
创建缩略图生成配置文件
cd /usr/share/thumbnailers
sudo touch blender.thumbnailer
sudo hx/vim blender.thumbnailer
编辑 blender.thumbnailer
[Thumbnailer Entry]
TryExec=blender-thumbnailer
Exec=blender-thumbnailer %i %o
MimeType=application/x-blender;
Makefile 是一个用来管理项目中源代码编译的文件,通常在 UNIX 和类 UNIX 系统中使用。它包含了一组规则,这些规则告诉 make 工具如何根据源代码文件来构建目标文件以及最终的可执行文件。
一个简单的 Makefile 包含了以下几个部分:
#
开头的行来添加注释,提高代码可读性。Vscode 在linux 的 wayland 环境下有可能出现白色边框或者剪贴板的问题。
可以通过修改 vscode 的 .desktop
文件,追加参数 --ozone-platform=wayland
兼容 wayland环境。
由于不同的发行版路径不同,这里使用了 archlinux 的 visual-studio-code-bin,其路径为 /usr/share/applications/code.desktop
。
[Desktop Entry]
Name=Visual Studio Code
Comment=Code Editing. Refined.
GenericName=Text Editor
Exec=/usr/bin/code --ozone-platform=wayland %F
Icon=visual-studio-code
Type=Application
StartupNotify=false
StartupWMClass=Code
Categories=TextEditor;Development;IDE;
MimeType=text/plain;inode/directory;application/x-code-workspace;
Actions=new-empty-window;
Keywords=vscode;
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=/usr/bin/code --ozone-platform=wayland --new-window %F
Icon=visual-studio-code
Hurl 是一款定义脚本,用于测试 HTTP 请求的工具,提供了命令工具 helix 和格式化工具 hurlfmt。
创建文件 get.hurl
, 追加下面的内容。
# test httpbin.org
GET https://httpbin/org/get
# 响应
HTTP/2 200 # 判定响应
[Asserts] # 判定内容
jsonpath "$.url" == "https://httpbin/org/get"