List of scripts:
For a fast executing of script(s), you will need to install the 'cURL' utility.
$sudo apt install curl
Or you may download scripts with the "wget" (or any other method), make them executable and run by path ./path/to/script.sh
In order to make a script executable on Linux, use the “chmod” command and assign “execute” permissions to the file.
You can either use the binary or the symbolic notation in order to make it executable.
$chmod u+x script
or
$chmod 744 script
In order to run a Bash script on Linux, simply specify the full path to the script and provide arguments that may needed in order to run your Bash script.
$./path/to/script <arg1> <arg2> ... <argn>
1. ddinfo.sh - script for retrieving information about Digital Devices cards, such as: Card Number in system, Name, PCI address, Firmware/drivers version, temperature, etc. That information may be requested by support team for better supporting purposes.
Options: -v Verbose mode
Location: http://linuxsupport.digital-devices.eu/ddinfo.sh
Examples:
$curl -s http://linuxsupport.digital-devices.eu/ddinfo.sh | bash
Or for verbose use <-v> option:
$curl -s http://linuxsupport.digital-devices.eu/ddinfo.sh | bash /dev/stdin -v
2. dddvb_build.sh - script for building dddvb drivers. This script requires root rights, so please login as root or run command with root rights.
Options:
-g Download and build latest Git version of dddvb drivers. (By default the Release version is downloaded)
-f= Set *MODE for Max S8/SX8/SX8 Basic cards. Requires value 0; 1; 2 or 3 (ex. –f=2 - to set fmode=2 in ddbridge.conf file)
Location: http://linuxsupport.digital-devices.eu/dddvb_build.sh
#curl -s http://linuxsupport.digital-devices.eu/dddvb_build.sh | bash
Or for building the Git version of drivers, use <-g> option:
#curl -s http://linuxsupport.digital-devices.eu/dddvb_build.sh | bash /dev/stdin -g
Building the Git version of drivers and set fmode=2:
#curl -s http://linuxsupport.digital-devices.eu/dddvb_build.sh | bash /dev/stdin -g -f=2
*Modes for Max S8/SX8/SX8 Basic:
§ fmode=0
4 tuner mode ( Internal multiswitch disabled )
§ fmode=1
Quad LNB / normal outputs of multiswitches
§ fmode=2
Quattro - LNB / cascade outputs of multiswitches
§ fmode=3
Unicable LNB or JESS / Unicabel output of the multiswitch
« Zurück
Datenschutzerklärung | Impressum