mirror of
https://github.com/falsycat/ar.falsy.cat.git
synced 2025-10-03 16:42:14 +00:00
update
This commit is contained in:
@@ -32,6 +32,28 @@ tags: [note, info-tech, web]
|
||||
- まだ[qemu](note/info-tech/qemu.md)上のマシンへのOSインストール作業ができていないので,また今度試す
|
||||
- なるべくホストマシンは汚したくない(切実)
|
||||
|
||||
## カスタマイズ
|
||||
|
||||
### Recent Notesの表示数を変更する
|
||||
1. `layouts/partials/recent.html`の`first 3 $notes`を変更する
|
||||
|
||||
### トップページにグローバルグラフを表示する
|
||||
1. `data/graphConfig.yaml`の`enableGlobalGraph`を`true`にする
|
||||
|
||||
### 記事にRelated Notesを表示する
|
||||
1. `layouts/partials/recent.html`を作成
|
||||
2. `layouts/_default/single.html`の好きな位置に`{{partial "related.html" .}}`を挿入
|
||||
3. `i18n/en.toml`に`related_notes`の翻訳を追加
|
||||
|
||||
layouts/partials/recent.html
|
||||
```html
|
||||
<div class="content-list">
|
||||
<h2>{{ i18n "related_notes" }}</h2>
|
||||
{{$notes := .Site.RegularPages.Related .}}
|
||||
{{partial "page-list.html" (first 3 $notes)}}
|
||||
</div>
|
||||
```
|
||||
|
||||
## 所感
|
||||
- 扱いやすい[Obsidian](note/info-tech/obsidian.md)で執筆して,[Quartz](https://github.com/jackyzha0/quartz)でいい感じに公開ができた
|
||||
- 執筆のためにリポジトリをcloneしなければならないため,記事数が増えた時の複数PCの同期コストが問題になりそう
|
||||
|
@@ -1,9 +1,10 @@
|
||||
---
|
||||
title: qemu
|
||||
title: qemuについて
|
||||
tags: [note, info-tech, tool, virtualization]
|
||||
---
|
||||
|
||||
- 個人的に,qemuはコマンドラインベースのVirtualBoxと思っている
|
||||
## 概要
|
||||
- コマンドラインベースのVirtualBoxと思っている
|
||||
- 今のところM2チップのMacbook ProでLinuxを使うための最善手
|
||||
- M1/M2向けVirtualBoxはまだ開発者プレビューしかなく,まともに使えなかった
|
||||
|
||||
|
Reference in New Issue
Block a user