Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BR
bravemonkey @lemmy.ca
Posts 1
Comments 44
VirtualBox 7.1 Released with Qt 6 GUI, Wayland Support for Clipboard Sharing - 9to5Linux
  • Vbox will create a bridge with my wifi card (I'm a laptop user with no option for a wired nic in the host).

    I've never been able to get kvm to do that and haven't found any working instructions online that a simpleton like me can follow

  • What are you playing this weekend? 2024-04-20
  • I finally bought Tears of the Kingdom a few weeks ago, still working my way through it. I love just wandering around finding secrets, shrines and Koroks, although I just made it to the Wind Temple. I expect to spend a lot of time just in this game!

  • Please don't use Discord for FOSS projects
  • The day Discord dies will be a massive loss for the internet.

    What loss will that be? Discord's value is the same as MSN Messenger - the history on Discord is already unusable for resolving issues, so when it's gone people will just move to the next real-time communication platform that fills the same gap. It's not a forum that people can search and find answers on years after discussions have happened and solutions have been posted.

  • I'm ready to install Linux, but I'd like your opinion first
  • One thing I would recommend is using a note taking app to create snippets of fixes or personalization changes for your OS that you've made. For me that includes things like how to add my laptop's webcam to the blacklist and other things that I'd need to spend time looking up since I don't do them that often.

  • Podman - container exits without logs

    I'm new to Podman and so far have been completely frustrated by it. I don't know if the issue is with the container or Podman since there are just no logs.

    I'm trying to run Stirling-PDF, using this command:

    podman run -d \ -p 8080:8080 \ -v /location/of/trainingData:/usr/share/tesseract-ocr/5/tessdata \ -v /location/of/extraConfigs:/configs \ -v /location/of/logs:/logs \ -e DOCKER_ENABLE_SECURITY=false \ --name stirling-pdf \ frooodle/s-pdf:latest

    With Docker, I have no issue running the this container. Under Podman the container immediately exits without logs - podman logs stirling-pdf shows nothing.

    The same thing happens running the same command with sudo or without sudo but using --rootful. I've also tried removing '-e DOCKER_ENABLE_SECURITY=false \' since it's very Docker specific.

    I can run podman run -dt --name webserver -p 8081:80 quay.io/libpod/banner with no issues, so is this something incompatible with the container?

    I feel like I'm missing something obvious - like where are the logs?

    I'm running on OpenSUSE-Tumbleweed, Podman version 4.9.0

    19