Skip to content

Instantly share code, notes, and snippets.

@btavakalov
btavakalov / ZFS commands
Last active May 14, 2025 01:46
Install ZFS on Arch Linux (kernel 6.10.3)
zpool import
zpool import rpool
zpool export rpool
zpool status
zfs list
zfs get mountpoint rpool
mount | grep zfs
version: '3.7'
services:
gitlab:
image: 'gitlab/gitlab-ce:latest'
restart: always
ports:
- 0.0.0.0:22:22
- 0.0.0.0:80:80
- 0.0.0.0:443:443
- 0.0.0.0:5000:5000
#!/usr/bin/env bash
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common