Vue normale

Reçu aujourd’hui — 24 mai 2025Liens de WebManiaK

Run Flood (and torrent clients) in containers · jesec/flood · Discussion #120 · GitHub

24 mai 2025 à 14:52

Run Flood (and torrent clients) in containers using Docker Compose configuration:

services:
  flood:
    hostname: flood
    image: jesec/flood
    user: 1000:1001
    restart: unless-stopped
    command: --port 3001 --allowedpath /data
    environment:
      HOME: /config
    volumes:
      - /home/jc/dlconfig:/config
      - /mnt/data0:/data
    ports:
      - 127.0.0.1:3001:3001

  rtorrent:
    hostname: rtorrent
    image: jesec/rtorrent
    user: 1000:1001
    restart: unless-stopped
    command: -o network.port_range.set=6881-6881,system.daemon.set=true
    environment:
      HOME: /config
    volumes:
      - /home/jc/dlconfig:/config
      - /mnt/data0:/data
    ports:
      - 0.0.0.0:6881:6881

Permalink
Reçu avant avant-hierLiens de WebManiaK

sensson/python-openstack-backup: A simple set of CLI tools to create and restore snapshots/backups on OpenStack

20 janvier 2025 à 06:24

Un repo GitHub qui semble plutôt intéressant (malgré l'absence de mise à jour depuis un temps substantiel) permettant d'implémenter des backups et des restaurations d'instance automatisées dans une infrastructure OpenStack.


Permalink

masonr/yet-another-bench-script: YABS - a simple bash script to estimate Linux server performance using fio, iperf3, & Geekbench

18 janvier 2025 à 11:37

Un outil très bien fait pour benchmarker une instance Linux. Par exemple, pour démarrer les tests uniquement pour les performances du disque:

curl -sL https://yabs.sh | bash -s -- -i -g

Et pour Windows, il y a PerfMon qui fait bien le job, ou encore DIskspd


Permalink
❌