Last active
February 2, 2021 15:33
-
-
Save ShinkoLab/63fd6ecc3924a76e55faa8214b66f0c5 to your computer and use it in GitHub Desktop.
ProxmoxのCT(LXC)上でsnapを動かす(Debian buster)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CTを作成後、 /etc/pve/lxc/[VMID].conf を開き追記する。 | |
features: keyctl=1,nesting=1,fuse=1 | |
## 下記コマンドでも同様に可能 | |
pct set [VMID] --features fuse=1,keyctl=1,nesting=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# APTを使用し下記パッケージをインストールする。 | |
(sudo) apt install fuse squashfuse | |
# 再起動 | |
(sudo) reboot | |
# Snap公式手順でインストール | |
# https://snapcraft.io/docs/installing-snap-on-debian |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment