Cccamcfg Portable -
Creating a portable CCcam.cfg is relatively straightforward. Here are the steps:
If you own multiple Enigma2 boxes, enjoy testing new satellite images, or travel frequently with your gear, building a USB drive is a 30-minute project that saves hours of future frustration. cccamcfg portable
#!/bin/sh # find mount point of USB by label "CCCAM_USB" MOUNT=$(lsblk -o NAME,LABEL,MOUNTPOINT -P | grep 'LABEL="CCCAM_USB"' | sed -n 's/.*MOUNTPOINT="\([^"]*\)".*/\1/p') if [ -z "$MOUNT" ]; then echo "USB not mounted" exit 1 fi cd "$MOUNT/cccam" ./cccam -c ./cccam.cfg Creating a portable CCcam

