Skip Navigation

Search

Useful Scripts @lemmy.ml d4nm3d @lemmy.ml

Allow SSH over Root - Ubuntu / Debian

sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config systemctl restart ssh

0
Useful Scripts @lemmy.ml d4nm3d @lemmy.ml

Convert .magnet to .torrent

I use this on my seedbox for anything sonarr grabs and sends to my blackhole that is a .magnet file rather than .torrent.

#!/bin/bash File="$(find /PATH/TO/MAGNET/FILES -name '*.magnet' -print -quit)" set -- $File Filecontents="$(cat "$File")" set -- $Filecontents cd /PATH/TO/MAGNET/FILES [[ "$Filecontents" =~ xt=urn:btih:([^&/]+) ]] || exit; echo "d10:magnet-uri${#1}:${1}e" > "meta-${BASH_REMATCH[1]}.torrent" rm "$File"

0