What kernel is Debian using? .. we're on mainline 5.4/5.5 now and I suspect they're still using the RK 4.4 kernel.
Posts by chewitt
-
-
The only USB devices attached appear to be an Apple keyboard and a mouse. I can't see any evidence of a USB wireless device.
-
-
"Hi10P H264" ~35%
^ 10-bit H264 is not an official standard so although it's widely used by anime fans there is no hardware decode support for it on any ARM device that I have come accross. Most anime fans gravitate towards an Intel NUC with a CPU capable of decoding the content in software.
-
^ the low-tech method for macOS and Linux
I need to blow the dust off the VM that I have used to replicate building the creator app and if I can persuade someone with a clue about macOS and Qt development to poke the code. I can't promise a quick fix
-
The difference between self-building a full image and a driver add-on package is quite negligible, and IMHO the packaging with a standard package is lots easier to comprehend if you're not so familiary with the build-system. Create another driver under packages/linux-drivers and then add the new package name to the list of drivers in distributions/LibreELEC/options .. then "PROJECT=Generic ARCH=x86_64 make image" should build everything with the driver baked in. Just make sure you fork a new branch in git to contain your changes (don't hack in the release branch) and then it's trivial to rebase your changes and rebuild whenever we push changes to the release branch (new release etc.).
-
I'm fairly sure there's no restriction on card size for the USB/SD app, but I'm wondering if firmware supports cards that large. I've asked one of the Pi Foundation folks if there's a restriction, but if you have a smaller SD card kicking around, perhaps do a sanity test with it.
-
I remembered that Kodi supports configuration of smbclient through /storage/.kodi/.smb/user.conf .. if the file exists and containts Samba (client) config settings at startup they will be included in the configuration used. Do some reading of Samba documentation to see if there are any client options that can be set to follow symlinks/aliases? And again .. you might want to explore mounting from systemd instead of Kodi.
-
-
It's hard to guess without seeing what the error is. Plan B .. clean install the second machine and get it on the network, enable ssh on both, and then use scp to recursively copy content between the boxes.
-
-
LE does not use nouveau. If you can boot a normal Linux distro and find the pci bus device IDs we can cross-check against nvidia drivers.
-
If you share the logs we asked for and we can see what's going on. If you don't share the logs and all we can do is guess.
-
I can see two issues:
a) The repository.unofficial.addon.pro reference is old cruft from an OpenELEC installation. The domain expired or is no longer available; and the add-ons there wouldn't be compatible with LE releases anyway (maybe v7.0 but not v9.2). This can/should be uninstalled.
b) The version of LE appears to be v9.1.x (pre-release) not v9.2 (release). I'd be inclined to start over with a new install (update to v9.2 and then rename /storage/.kodi to /storage/.kodi-old and reboot) and then only copy back things from the older install which are really essential. As a minimum you need to update and then the correct add-ons should be used.
-
There is no package manager in LE and we refuse to add more garbage realtek vendor binary drivers to the core distro as they break with every kernel bump and require onerous maintenance. There are several examples of people sumbitting (and us refusing) realtek drivers in our github repo - have a look at closed pull requests. Similar packages with sources obtained from somewhere might work. Or might not .. that's the problem with out-of-tree drivers. If you abandon the idea .. have a look for devices with a railink chip as these a generally supported in-kernel. Or get a wireless bridge that connects via Ethernet. They're often cheaper and give better range/reception than most USB cards.
-
I forget whether TVH supports TLS by default, but if not you can probably reverse proxy the connection from nginx which easly supports letsencyrpt and then all client/server comms runs through a encrypted tunnel.
Port knocking sounds wonderful until you try and find client apps that support it .. be prepared for a long wait.
-
-
Kodi uses Samba smbclient to mount SMB shares and this will not follow Windows aliases and maybe NTFS junction things (never heard of them). The only other thing you can try is mounting shares via systemd (see /storage/.config/system.d/) and then having Kodi access the now-local drive. I have no idea if the kernel SMB capabilities support following junction links or not .. you have to experiment.