jeff / Murder Filesystem on Drive

0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 1732311036
Script all the filesystem signatures off a drive so that ZFS doesn't get all grumpy when reusing old disks.
1 #!/bin/bash
2 zpool labelclear /dev/$1
3 dd if=/dev/zero of=/dev/$1 bs=1M count=100 status=progress
4 dd if=/dev/zero of=/dev/$1 bs=1M seek=$(( $(blockdev --getsize64 /dev/$1) / 1048576 - 100 )) status=progress
5 wipefs --all /dev/$1

jeff / CloudConfig Example

1 вподобань
0 форк(-ів)
2 файл(-ів)
Остання активність 1731696445
Sample CloudConfig for my XCP-ng Ubuntu-images.
1 #cloud-config
2
3 hostname: {name}
4
5 # add host to the /etc/hosts
6 manage_etc_hosts: true
7
8 # don't disable the root user
9 disable_root: false
Новіше Пізніше