Compare commits

..

2 Commits

Author SHA1 Message Date
a8a1fe1e0d blog: 完善样式。
All checks were successful
continuous-integration/drone/push Build is passing
2022-10-29 02:30:36 +00:00
8d9020da3a build(dev): 开发容器迁移到 pnpm. 2022-10-29 02:15:14 +00:00
3 changed files with 16 additions and 8 deletions

View File

@ -11,4 +11,4 @@ FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" # RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
# [Optional] Uncomment if you want to install more global node packages # [Optional] Uncomment if you want to install more global node packages
# RUN su node -c "npm install -g pnpm" RUN su node -c "npm install -g pnpm"

View File

@ -50,5 +50,5 @@
"git-lfs": "latest" "git-lfs": "latest"
}, },
"mounts": [], "mounts": [],
"postStartCommand": "npm ci && npm run dev" "postStartCommand": "pnpm install && npm run dev"
} }

View File

@ -4,7 +4,10 @@ date: '2022-10-28'
tags: ['PVE', 'PVE', 'DE', '环境搭建', 'Debian'] tags: ['PVE', 'PVE', 'DE', '环境搭建', 'Debian']
draft: false draft: false
summary: 虽然 PVE 宿主机不应该安装乱七八糟的东西,但是我穷,为了物尽其用,为了在主力电脑翻车时有一个立即可用的备用环境,所以还是安装了基础的桌面环境。现在的 Linux 桌面环境越来越好了,我选择安装 KDE Plasma 作为桌面环境,并且默认关闭,按需启用。 summary: 虽然 PVE 宿主机不应该安装乱七八糟的东西,但是我穷,为了物尽其用,为了在主力电脑翻车时有一个立即可用的备用环境,所以还是安装了基础的桌面环境。现在的 Linux 桌面环境越来越好了,我选择安装 KDE Plasma 作为桌面环境,并且默认关闭,按需启用。
images: ['https://pan.ivanli.cc/api/v3/file/source/2243/1200px-Kde_dragons.png?sign=yGZL9jYeVt53Ve43ddhHt_0EzVV2cW_WbxHc0dEcwWY%3D%3A0'] images:
[
'https://pan.ivanli.cc/api/v3/file/source/2243/1200px-Kde_dragons.png?sign=yGZL9jYeVt53Ve43ddhHt_0EzVV2cW_WbxHc0dEcwWY%3D%3A0',
]
--- ---
## 准备 ## 准备
@ -13,13 +16,19 @@ images: ['https://pan.ivanli.cc/api/v3/file/source/2243/1200px-Kde_dragons.png?s
### 创建账户: ### 创建账户:
```bash
useradd -m ivan useradd -m ivan
passwd ivan passwd ivan
usermod -aG wheel ivan usermod -aG wheel ivan
```
给刚刚创建的账户分配一个具有 sudo 权限的账户 给刚刚创建的账户分配一个具有 sudo 权限的账户
```bash
EDITOR=vim visudo EDITOR=vim visudo
找到 %wheel ALL=(ALL: ALL) ALL 这行,取消这行的注释。 ```
找到 `%wheel ALL=(ALL: ALL) ALL` 这行,取消这行的注释。
现在,你自己的账号具有 sudo 权限了。 现在,你自己的账号具有 sudo 权限了。
@ -93,8 +102,8 @@ cp -r ./rime ~/.config/ibus/rime
```yaml ```yaml
patch: patch:
schema_list: schema_list:
- {schema: flypy} - { schema: flypy }
- {schema: luna_pinyin} - { schema: luna_pinyin }
``` ```
参考:[分享我的输入法配置 Rime 小狼豪 + 小鹤音形) - 炒饭之道](https://itx.ink/2018/11/21/SHARE_MY_RIME/) 参考:[分享我的输入法配置 Rime 小狼豪 + 小鹤音形) - 炒饭之道](https://itx.ink/2018/11/21/SHARE_MY_RIME/)
@ -125,7 +134,7 @@ ibus-setup
## 快捷键 ## 快捷键
我习惯使用 Mac OS 系统的快捷键,所以 [Kinto](https://github.com/rbreaves/kinto) 是我的不二之选。 我习惯使用 Mac OS 系统的快捷键,所以 [Kinto](https://github.com/rbreaves/kinto) 是我的不二之选。key
安装: 安装:
@ -138,4 +147,3 @@ ibus-setup
```bash ```bash
/bin/bash <( wget -qO- https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh || curl -fsSL https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh ) -r /bin/bash <( wget -qO- https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh || curl -fsSL https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh ) -r
``` ```