Storage management for Bazzite. Automounting drives (BTRFS/EXT4, Framework, SteamOS), BTRFS deduplication, rmlint disk trimming, and snapper snapshots. Use when users need to configure disk and partition management.
/plugin marketplace add atrawog/bazzite-ai-plugins/plugin install bazzite@bazzite-ai-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Bazzite supports automatic mounting of drives, BTRFS features like deduplication and snapshots, and disk optimization with rmlint.
| Command | Description |
|---|---|
ujust enable-automounting | Enable BTRFS/EXT4 automount |
ujust disable-automounting | Disable BTRFS/EXT4 automount |
ujust enable-framework-automount | Enable Framework laptop automount |
ujust disable-framework-automount | Disable Framework automount |
ujust enable-steamos-automount | Enable SteamOS automount |
ujust disable-steamos-automount | Disable SteamOS automount |
ujust enable-automount-all | Enable all automounting |
ujust disable-automount-all | Disable all automounting |
| Command | Description |
|---|---|
ujust enable-deduplication | Enable BTRFS dedup for /var/home |
ujust enable-rmlint | Enable/disable rmlint trim |
ujust configure-snapshots | Enable/disable snapper snapshots |
# Enable automounting for BTRFS/EXT4 labeled partitions
ujust enable-automounting
# Disable
ujust disable-automounting
Mounts drives with recognized labels at:
/run/media/$USER/<label># Enable Framework-specific automounting
ujust enable-framework-automount
# Disable
ujust disable-framework-automount
Handles Framework expansion cards and storage modules.
# Enable SteamOS-style automounting
ujust enable-steamos-automount
# Disable
ujust disable-steamos-automount
Compatibility with SteamOS mount paths.
# Enable everything
ujust enable-automount-all
# Disable everything
ujust disable-automount-all
# Enable BTRFS deduplication for /var/home
ujust enable-deduplication
Benefits:
Note: Only for BTRFS partitions.
# Enable/disable rmlint trim feature
ujust enable-rmlint
rmlint finds and removes:
# Enable/disable snapper snapshots for /var/home
ujust configure-snapshots
Snapper:
Warning: Snapshots use disk space.
# Enable automounting
ujust enable-automounting
# Plug in drive - mounts automatically
# Access at /run/media/$USER/<label>
# Enable deduplication
ujust enable-deduplication
# Enable rmlint for cleanup
ujust enable-rmlint
# Enable snapshots
ujust configure-snapshots
# View snapshots
snapper list
# Rollback
snapper rollback <number>
# Enable Framework automounting
ujust enable-framework-automount
# Expansion cards auto-mount when inserted
# Create mount point
sudo mkdir -p /mnt/data
# Mount
sudo mount /dev/sdb1 /mnt/data
# Mount BTRFS with options
sudo mount -o compress=zstd /dev/sdb1 /mnt/data
# Get UUID
lsblk -o NAME,UUID,FSTYPE
# Edit fstab
sudo nano /etc/fstab
# Add line:
# UUID=<uuid> /mnt/data btrfs defaults,compress=zstd 0 0
# List mounts
mount | grep -E "/dev/sd|/dev/nvme"
# List block devices
lsblk
# Check BTRFS usage
btrfs filesystem usage /var/home
# Check dedup status
btrfs filesystem df /var/home
# List snapshots
snapper list
# Snapshot details
snapper status <number>
Check label:
lsblk -o NAME,LABEL,FSTYPE
Check automount status:
# Is automounting enabled?
gsettings get org.gnome.desktop.media-handling automount
Manual mount to test:
sudo mount /dev/sdb1 /mnt/test
Verify BTRFS:
# Must be BTRFS
df -T /var/home | grep btrfs
Check status:
btrfs filesystem du -s /var/home
List and clean:
# List snapshots
snapper list
# Delete old snapshots
snapper delete <number>
# Or disable entirely
ujust configure-snapshots
Use when the user asks about: