pi nuke
pi nuke
`make` runs fine now, now lets try `sudo make install`
readonly file system due to trying to install to: `/usr/bin` gonna see if changing `cmake -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_SYSTEMD=OFF ..` to `cmake -DCMAKE_INSTALL_PREFIX=/usr/local/ -DENABLE_SYSTEMD=OFF ..` works
make install fails, because for some reason, despite the `-DENABLE_SYSTEMD=OFF` flag, `make install` seems to insist on writing to `/etc/dbus-1/system.d/org.freedesktop.miracle.conf`
Upon looking it looks like the only things it doesn't successfully install is that one file, and then the bash completions
# Seems to mostly work: - as mentioned above, autocompletions don't install Checked the binaries that were successfully installed: ```bash -- Up-to-date: /usr/local/bin/miracled -- Up-to-date: /usr/local/bin/miracle-wifid -- Up-to-date: /usr/local/bin/miracle-dhcp --...
Again looks like an error with symbolics links (thank god). Gonna see if I can fix it.
fix: `ln -s /usr/local/bin/python3 /usr/local/usr/bin/python3` ### `gstplayer --help` ```bash chronos@localhost ~ $ gstplayer --help /usr/local/bin/gstplayer:16: PyGIDeprecationWarning: Since version 3.11, calling threads_init is no longer needed. See: https://wiki.gnome.org/PyGObject/Threading GObject.threads_init() (gst-plugin-scanner:12873): GStreamer-WARNING...
So, I found some versions of that shared library in `/usr/local/lib64/`, but they aren't version 58 trying to see if there is a package for `ffmpeg-compat-58` somewhere out there in...
Good morning @satmandu lol FWIW, if ffmpeg does need to be recompiled, all of the dependencies in https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu seem to already be available on Chromebrew That's just from a quick...
The missing library is a shared library file placed by ffmpeg. ffmpeg does place its shared libraries correcly, but it places the ones for version 59, not 58. Though the...