- all the IDE-like goodies:
- LSP completion, go to def, hover and rename
- treesitter syntax highlighting
- ctrlp-like fuzzy finding
- embedded terminals
Buildah is a container image builder tool, that produces OCI-compliant images. It is distributed as a single binary and is written in Go. Buildah is available as a package in most of modern Linux distributions, just follow official installation instructions.
Buildah can only be used to manipulate images. It's job is to build container images and push them to registries. There is no daemon involved. Neither does Buildah require root privileges to build images. This makes Buildah especially handy as part of a CI/CD pipeline -- you can easily run Buildah inside a container without granting this container any root rights.
This file contains 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
============================ | |
--- | |
References | |
- https://www.cio.com/article/238607/how-to-install-arch-linux-on-your-pc.html | |
- https://arch.icekylin.online/ | |
- https://zhuanlan.zhihu.com/p/112536524 | |
- https://zhuanlan.zhihu.com/p/568211941 | |
[NORMAL INSTALLATION] |
This file contains 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
--- | |
PVE delte local-lvm partition | |
Reference: https://post.smzdm.com/p/awkv4pq4/ | |
lvremove pve/data | |
lvextend -l +100%FREE -r pve/root | |
Datacenter >> remove `local-lvm` partition >> edit `local` >> select all options |
I hereby claim:
- I am yqlbu on github.
- I am kevinyu211 (https://keybase.io/kevinyu211) on keybase.
- I have a public key whose fingerprint is B08F E264 4F9F C450 AF42 5FF5 B94F 394B 7288 4017
To claim this, I am signing this object:
docker run -t --rm --name gitlab-runner-register -v ~/.gitlab-runner:/etc/gitlab-runner gitlab/gitlab-runner \
register \
--non-interactive \
--executor="docker" \
--docker-image alpine:latest \
--url "https://gitlab.com/" \
--registration-token "{{YOUR_TOKEN_HERE}}" \
--description "A docker runner" \
This file contains 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
# PVE 直通硬盤 | |
--- | |
安裝 lshw | |
$ apt-get install lshw -y | |
查詢硬盤信息 | |
$ lshw -class disk -class storage |
OlderNewer