Skip to content

Instantly share code, notes, and snippets.

@DeltaXrayDelta
DeltaXrayDelta / AdbCommands
Created April 2, 2021 11:13 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@DeltaXrayDelta
DeltaXrayDelta / docker-iptables-fix.sh
Created March 8, 2021 16:03 — forked from pedrolamas/docker-iptables-fix.sh
Script to fix Docker iptables on Synology NAS
#!/bin/bash
currentAttempt=0
totalAttempts=10
delay=15
while [ $currentAttempt -lt $totalAttempts ]
do
currentAttempt=$(( $currentAttempt + 1 ))
echo "Attempt $currentAttempt of $totalAttempts..."