Ref: http://mrbluecoat.blogspot.com/2020/10/install-linux-on-x96-max-x96-max.html
If the box does not boot using armdebian u-boot.ext, you can try extracting it from the Manjaro image pointed here.
FROM archlinux | |
COPY docker-entrypoint.sh /usr/local/bin/ | |
RUN set -x \ | |
&& pacman -Syu --noconfirm \ | |
&& pacman -S --noconfirm \ | |
systemd \ | |
&& curl -SLo /usr/local/bin/install-earnapp https://brightdata.com/static/earnapp/install.sh \ | |
&& chmod a+x /usr/local/bin/install-earnapp |
#EXTM3U | |
#EXTINF:-1, FIP | |
https://stream.radiofrance.fr/fip/fip.m3u8?id=radiofrance | |
#EXTINF:-1, FIP electro | |
https://stream.radiofrance.fr/fipelectro/fipelectro.m3u8?id=radiofrance | |
#EXTINF:-1, FIP groove | |
https://stream.radiofrance.fr/fipgroove/fipgroove_hifi.m3u8?id=radiofrance | |
#EXTINF:-1, FIP jazz | |
https://stream.radiofrance.fr/fipjazz/fipjazz.m3u8?id=radiofrance | |
#EXTINF:-1, FIP nouveautes |
Ref: http://mrbluecoat.blogspot.com/2020/10/install-linux-on-x96-max-x96-max.html
If the box does not boot using armdebian u-boot.ext, you can try extracting it from the Manjaro image pointed here.
#!/bin/sh | |
# Sometimes, NVidia proprietary drivers do not install themselves after a kernel upgrade. | |
# This happens to me with 440.33.xx version from CUDA repositories on Ubuntu 18.04. | |
# This script forces a build and install of the driver | |
if [ $(id -u) -ne 0 ]; then | |
echo "this script must be run as root" | |
exit 1 | |
fi |
#!/bin/sh | |
# Build ffmpeg with nvenc support | |
# | |
# ffmpeg 4.2.2 | |
# cuda 10.2 | |
# nvidia driver 440 | |
# | |
# NVidia dependencies: | |
# cf: https://developer.nvidia.com/ffmpeg |
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
[dev-packages] | |
[packages] | |
pyyaml = "*" | |
requests = "*" |
#!/bin/bash | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
CONF="AirVPN_France_UDP-443.ovpn" | |
[ -z "$1" ] || CONF="$1" | |
stop shill | |
start shill BLACKLISTED_DEVICES=tun0 |
#!/bin/sh | |
# ----------------------------------------------------------------------------- | |
# | |
# Copyright © 2016-2023 Benoît Vidis | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
/.idea | |
/venv | |
/update.sh | |
/deploy.sh | |
#!/bin/bash | |
# ----------------------------------------------------------------------------- | |
# | |
# Copyright © 2016-2024 Benoît Vidis | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |