• 2 Posts
  • 194 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle

  • Is it possible to send the hint from OPNsense itself?

    Yes, to me it sounds like you’re already getting a big enough prefix from your ISP (all devices getting a /64), but you’ll have to request a bigger prefix from OPNsense. I believe it should give you the options to do this when you set the IPv6 mode to DHCPv6 on OPNsense, but I can’t say if your ISP router will handle it.






  • Idk, with I2C if it’s not something that needs a kernel level driver, there usually isn’t a problem with interacting with it from user space, for example basically all RAM RGB controllers are I2C and OpenRGB has no problem with them. I’m pretty sure I’ve only ever used an I2C device tree overlay for an RTC.

    Also I2C/SMBus is present everywhere on x86, like some graphics cards expose it through their HDMI ports, even some server motherboards have a header for it; but for GPIO I’m unaware of any motherboards that expose it, so good luck researching the chipset and tracing out the pins.










  • How can I do that with dpkg(1)?

    You can install .deb files with apt by prepending a ./, e.g. sudo apt install --no-install-recommends ./docker-desktop-4.30.0-amd64.deb would work. I usually avoid using dpkg unless I have to.

    Also:

    • That deb file is for docker desktop, which you said you didn’t want?
    • Is insapp an alias or something?
    • You were running sudo apt-get install -f before, was your install already broken?

  • Your description is mildly confusing to read, could you provide a list of commands? You can check history for this.

    Sometimes APT can auto install recommended packages, adding --no-install-recommends disables this temporarily.

    Edit: Also you’re using PopOS which is Ubuntu based, usually using Debian packages isn’t an issue on Ubuntu, but sometimes it is, and something like docker should have an Ubuntu version.