├── .github └── workflows │ └── main.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── add-ceph-mds ├── add-ceph-mgr ├── add-ceph-mon ├── add-ceph-osd-prerequisites ├── add-ceph-rgw ├── add-db-to-osd.sh ├── add-pcs-monitoring.sh ├── bios-image-format.sh ├── bugreport └── bugreport ├── ceph-collect ├── ceph-dashboards └── ceph-dashboards.tar.gz ├── ceph-maintenance ├── ceph-osd-bluefs-compaction.sh ├── ceph-osd-bluefs-migration.sh ├── ceph-osd-rocksdb-resharding.sh ├── ceph_default_alerts.yml ├── cephfs-find-files.py ├── cephfs-mds-shard.py ├── cephfs-snap ├── cephfs_client_info.sh ├── cockpit_font_fix ├── README.md ├── fix-cockpit.sh └── fonts │ ├── OpenSans-Semibold-webfont.woff │ ├── fontawesome.woff │ ├── glyphicons.woff │ └── patternfly.woff ├── dalias_patch └── dalias ├── deploy-minio.sh ├── dinfo.py ├── dinfo2 ├── disable-cstates.sh ├── disk_dumping ├── README.md ├── dump_part_info.py └── gpt1_from_gpt2.py ├── drives.sh ├── expand-db.sh ├── fix_mangled_paths.py ├── ganesha-enablev3.sh ├── get_zpool_metadata.sh ├── health-check.sh ├── installation_scripts ├── rocky8-setup-part1-install-desktop-environment.sh └── rocky8-setup-part2-ZFS-setup.sh ├── logparse2.py ├── migrate_db_to_new_device.sh ├── monitor.py ├── mpu-cleanup.sh ├── nextcloud ├── Dockerfile ├── nextcloud-ansible.tar └── nextcloud-compose.yml ├── node_exporter_collectors ├── cephfs_rbyte │ ├── ceph_rbytes_multiple_dirs.sh │ ├── cephfs_directory_size_grafana.json │ └── cephfs_rbytes_automatic.sh └── zpoolexporter.sh ├── object2file-map.py ├── offline-mode.sh ├── open_sea_logs.sh ├── osd_expand_db_ics.sh ├── packaging ├── README.md └── generate-deps.sh ├── parse_open_sea_logs.sh ├── parse_zpool.py ├── patches └── ceph-mgr-17_2_7-rgw_py.patch ├── pci_mapper └── pci_mapper ├── pg_info.sh ├── rbd_client_info.sh ├── rename_lowercase ├── replace-bootdrive.sh ├── repo_files ├── ceph_stable.repo └── sources.list ├── rm-db-from-journal.sh ├── rocky8-domainjoiner.sh ├── rocky8-offline-repo-switcher.sh ├── rocky8-preconfig-ceph.sh ├── rocky8-preconfig-offline.sh ├── rocky8-preconfig.sh ├── rocky9-preconfig-ceph-offline.sh ├── rocky9-preconfig-ceph.sh ├── rocky9-preconfig.sh ├── setup ├── setup.sh ├── single_server_validation.sh ├── smb_audit_logging ├── exporter.py ├── logcounter.py ├── logparse2.py └── share_config.txt ├── thermal_scripts ├── csv_converter ├── dependencies │ ├── storcli2 │ └── storcli64 ├── make_graph ├── tbench ├── thermal_scripts_setup ├── tmap └── tplot ├── ubuntu-domainjoin.sh ├── ubuntu20-preconfig-ceph.sh ├── ubuntu20-preconfig-offline.sh ├── ubuntu20-preconfig.sh ├── ubuntu22-preconfig-ceph.sh ├── ubuntu22-preconfig.sh ├── udev ├── 45drives_udev_rules.sh ├── 68-vdev.rules ├── 99-ceph-write-through.rules └── vdev_id_45drives ├── zfs-scrub-check.sh ├── zfs-scrub.service ├── zfs-scrub.timer ├── zfs └── upath └── zpool_parse.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "basic" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/README.md -------------------------------------------------------------------------------- /add-ceph-mds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-ceph-mds -------------------------------------------------------------------------------- /add-ceph-mgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-ceph-mgr -------------------------------------------------------------------------------- /add-ceph-mon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-ceph-mon -------------------------------------------------------------------------------- /add-ceph-osd-prerequisites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-ceph-osd-prerequisites -------------------------------------------------------------------------------- /add-ceph-rgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-ceph-rgw -------------------------------------------------------------------------------- /add-db-to-osd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-db-to-osd.sh -------------------------------------------------------------------------------- /add-pcs-monitoring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/add-pcs-monitoring.sh -------------------------------------------------------------------------------- /bios-image-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/bios-image-format.sh -------------------------------------------------------------------------------- /bugreport/bugreport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/bugreport/bugreport -------------------------------------------------------------------------------- /ceph-collect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph-collect -------------------------------------------------------------------------------- /ceph-dashboards/ceph-dashboards.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph-dashboards/ceph-dashboards.tar.gz -------------------------------------------------------------------------------- /ceph-maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph-maintenance -------------------------------------------------------------------------------- /ceph-osd-bluefs-compaction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph-osd-bluefs-compaction.sh -------------------------------------------------------------------------------- /ceph-osd-bluefs-migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph-osd-bluefs-migration.sh -------------------------------------------------------------------------------- /ceph-osd-rocksdb-resharding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph-osd-rocksdb-resharding.sh -------------------------------------------------------------------------------- /ceph_default_alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ceph_default_alerts.yml -------------------------------------------------------------------------------- /cephfs-find-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cephfs-find-files.py -------------------------------------------------------------------------------- /cephfs-mds-shard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cephfs-mds-shard.py -------------------------------------------------------------------------------- /cephfs-snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cephfs-snap -------------------------------------------------------------------------------- /cephfs_client_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cephfs_client_info.sh -------------------------------------------------------------------------------- /cockpit_font_fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cockpit_font_fix/README.md -------------------------------------------------------------------------------- /cockpit_font_fix/fix-cockpit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cockpit_font_fix/fix-cockpit.sh -------------------------------------------------------------------------------- /cockpit_font_fix/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cockpit_font_fix/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /cockpit_font_fix/fonts/fontawesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cockpit_font_fix/fonts/fontawesome.woff -------------------------------------------------------------------------------- /cockpit_font_fix/fonts/glyphicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cockpit_font_fix/fonts/glyphicons.woff -------------------------------------------------------------------------------- /cockpit_font_fix/fonts/patternfly.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/cockpit_font_fix/fonts/patternfly.woff -------------------------------------------------------------------------------- /dalias_patch/dalias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/dalias_patch/dalias -------------------------------------------------------------------------------- /deploy-minio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/deploy-minio.sh -------------------------------------------------------------------------------- /dinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/dinfo.py -------------------------------------------------------------------------------- /dinfo2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/dinfo2 -------------------------------------------------------------------------------- /disable-cstates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/disable-cstates.sh -------------------------------------------------------------------------------- /disk_dumping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/disk_dumping/README.md -------------------------------------------------------------------------------- /disk_dumping/dump_part_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/disk_dumping/dump_part_info.py -------------------------------------------------------------------------------- /disk_dumping/gpt1_from_gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/disk_dumping/gpt1_from_gpt2.py -------------------------------------------------------------------------------- /drives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/drives.sh -------------------------------------------------------------------------------- /expand-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/expand-db.sh -------------------------------------------------------------------------------- /fix_mangled_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/fix_mangled_paths.py -------------------------------------------------------------------------------- /ganesha-enablev3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ganesha-enablev3.sh -------------------------------------------------------------------------------- /get_zpool_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/get_zpool_metadata.sh -------------------------------------------------------------------------------- /health-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/health-check.sh -------------------------------------------------------------------------------- /installation_scripts/rocky8-setup-part1-install-desktop-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/installation_scripts/rocky8-setup-part1-install-desktop-environment.sh -------------------------------------------------------------------------------- /installation_scripts/rocky8-setup-part2-ZFS-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/installation_scripts/rocky8-setup-part2-ZFS-setup.sh -------------------------------------------------------------------------------- /logparse2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/logparse2.py -------------------------------------------------------------------------------- /migrate_db_to_new_device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/migrate_db_to_new_device.sh -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/monitor.py -------------------------------------------------------------------------------- /mpu-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/mpu-cleanup.sh -------------------------------------------------------------------------------- /nextcloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/nextcloud/Dockerfile -------------------------------------------------------------------------------- /nextcloud/nextcloud-ansible.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/nextcloud/nextcloud-ansible.tar -------------------------------------------------------------------------------- /nextcloud/nextcloud-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/nextcloud/nextcloud-compose.yml -------------------------------------------------------------------------------- /node_exporter_collectors/cephfs_rbyte/ceph_rbytes_multiple_dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/node_exporter_collectors/cephfs_rbyte/ceph_rbytes_multiple_dirs.sh -------------------------------------------------------------------------------- /node_exporter_collectors/cephfs_rbyte/cephfs_directory_size_grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/node_exporter_collectors/cephfs_rbyte/cephfs_directory_size_grafana.json -------------------------------------------------------------------------------- /node_exporter_collectors/cephfs_rbyte/cephfs_rbytes_automatic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/node_exporter_collectors/cephfs_rbyte/cephfs_rbytes_automatic.sh -------------------------------------------------------------------------------- /node_exporter_collectors/zpoolexporter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/node_exporter_collectors/zpoolexporter.sh -------------------------------------------------------------------------------- /object2file-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/object2file-map.py -------------------------------------------------------------------------------- /offline-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/offline-mode.sh -------------------------------------------------------------------------------- /open_sea_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/open_sea_logs.sh -------------------------------------------------------------------------------- /osd_expand_db_ics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/osd_expand_db_ics.sh -------------------------------------------------------------------------------- /packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/packaging/README.md -------------------------------------------------------------------------------- /packaging/generate-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/packaging/generate-deps.sh -------------------------------------------------------------------------------- /parse_open_sea_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/parse_open_sea_logs.sh -------------------------------------------------------------------------------- /parse_zpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/parse_zpool.py -------------------------------------------------------------------------------- /patches/ceph-mgr-17_2_7-rgw_py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/patches/ceph-mgr-17_2_7-rgw_py.patch -------------------------------------------------------------------------------- /pci_mapper/pci_mapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/pci_mapper/pci_mapper -------------------------------------------------------------------------------- /pg_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/pg_info.sh -------------------------------------------------------------------------------- /rbd_client_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rbd_client_info.sh -------------------------------------------------------------------------------- /rename_lowercase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rename_lowercase -------------------------------------------------------------------------------- /replace-bootdrive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/replace-bootdrive.sh -------------------------------------------------------------------------------- /repo_files/ceph_stable.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/repo_files/ceph_stable.repo -------------------------------------------------------------------------------- /repo_files/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/repo_files/sources.list -------------------------------------------------------------------------------- /rm-db-from-journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rm-db-from-journal.sh -------------------------------------------------------------------------------- /rocky8-domainjoiner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky8-domainjoiner.sh -------------------------------------------------------------------------------- /rocky8-offline-repo-switcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky8-offline-repo-switcher.sh -------------------------------------------------------------------------------- /rocky8-preconfig-ceph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky8-preconfig-ceph.sh -------------------------------------------------------------------------------- /rocky8-preconfig-offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky8-preconfig-offline.sh -------------------------------------------------------------------------------- /rocky8-preconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky8-preconfig.sh -------------------------------------------------------------------------------- /rocky9-preconfig-ceph-offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky9-preconfig-ceph-offline.sh -------------------------------------------------------------------------------- /rocky9-preconfig-ceph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky9-preconfig-ceph.sh -------------------------------------------------------------------------------- /rocky9-preconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/rocky9-preconfig.sh -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/setup -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/setup.sh -------------------------------------------------------------------------------- /single_server_validation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/single_server_validation.sh -------------------------------------------------------------------------------- /smb_audit_logging/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/smb_audit_logging/exporter.py -------------------------------------------------------------------------------- /smb_audit_logging/logcounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/smb_audit_logging/logcounter.py -------------------------------------------------------------------------------- /smb_audit_logging/logparse2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/smb_audit_logging/logparse2.py -------------------------------------------------------------------------------- /smb_audit_logging/share_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/smb_audit_logging/share_config.txt -------------------------------------------------------------------------------- /thermal_scripts/csv_converter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/csv_converter -------------------------------------------------------------------------------- /thermal_scripts/dependencies/storcli2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/dependencies/storcli2 -------------------------------------------------------------------------------- /thermal_scripts/dependencies/storcli64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/dependencies/storcli64 -------------------------------------------------------------------------------- /thermal_scripts/make_graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/make_graph -------------------------------------------------------------------------------- /thermal_scripts/tbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/tbench -------------------------------------------------------------------------------- /thermal_scripts/thermal_scripts_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/thermal_scripts_setup -------------------------------------------------------------------------------- /thermal_scripts/tmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/tmap -------------------------------------------------------------------------------- /thermal_scripts/tplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/thermal_scripts/tplot -------------------------------------------------------------------------------- /ubuntu-domainjoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ubuntu-domainjoin.sh -------------------------------------------------------------------------------- /ubuntu20-preconfig-ceph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ubuntu20-preconfig-ceph.sh -------------------------------------------------------------------------------- /ubuntu20-preconfig-offline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ubuntu20-preconfig-offline.sh -------------------------------------------------------------------------------- /ubuntu20-preconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ubuntu20-preconfig.sh -------------------------------------------------------------------------------- /ubuntu22-preconfig-ceph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ubuntu22-preconfig-ceph.sh -------------------------------------------------------------------------------- /ubuntu22-preconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/ubuntu22-preconfig.sh -------------------------------------------------------------------------------- /udev/45drives_udev_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/udev/45drives_udev_rules.sh -------------------------------------------------------------------------------- /udev/68-vdev.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/udev/68-vdev.rules -------------------------------------------------------------------------------- /udev/99-ceph-write-through.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/udev/99-ceph-write-through.rules -------------------------------------------------------------------------------- /udev/vdev_id_45drives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/udev/vdev_id_45drives -------------------------------------------------------------------------------- /zfs-scrub-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/zfs-scrub-check.sh -------------------------------------------------------------------------------- /zfs-scrub.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/zfs-scrub.service -------------------------------------------------------------------------------- /zfs-scrub.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/zfs-scrub.timer -------------------------------------------------------------------------------- /zfs/upath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/zfs/upath -------------------------------------------------------------------------------- /zpool_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/scripts/HEAD/zpool_parse.py --------------------------------------------------------------------------------