GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Conversation

Notices

  1. Embed this notice
    poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 10:10:22 JST poleguy looking for lost tools poleguy looking for lost tools

    I'm so proud! #Sennheiser never would have allowed a #garage-built #proton-pack to make it in to their behind-the-scenes video! (That's me starting at 2:36)

    https://www.youtube.com/watch?v=tZZmv2LQ-Es

    For contrast, don't miss the Sennheiser #Spectera video.

    https://www.youtube.com/watch?v=Qvi36Lq4eHc

    #Shure #IEM #wireless #electronics #telemetry

    I'm doing the next generation protonpack #fpga telemetry system as an #opensource #openhardware design.

    Team #mastodon will help me out, right?

    https://github.com/poleguy/protonpack/

    In conversation about 3 days ago from mastodon.social permalink

    Attachments

    1. Behind The Sound: Shure Axient Digital PSM
      Discover the game-changing Axient Digital PSM from Shure! Get an inside look at the future of wireless audio and how Shure continues to push the boundaries o...
    2. Behind Spectera: A Close Look at the Making of a Breakthrough in Wireless Pro Audio Technology
      from Sennheiser
      Step into the exciting world of wireless pro audio with Sennheiser. Take a unique look at the creation of Spectera, The world's first wideband, bidirectional...
    • Embed this notice
      Mauricio Teixeira 🇧🇷🇺🇲 (badnetmask@hachyderm.io)'s status on Monday, 23-Jun-2025 10:10:20 JST Mauricio Teixeira 🇧🇷🇺🇲 Mauricio Teixeira 🇧🇷🇺🇲
      in reply to

      @poleguy
      Random reader suggestion: try landing your public SSH key using cloud-init, then finish the VM setup using Ansible. You said virsh works to get the IP, and I don't have a better solution. For local VMs, that's what I would do anyway (for my bare metal I set static DHCP, and for my Proxmox VMs I just look at the console).

      In conversation about 3 days ago permalink
    • Embed this notice
      poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 10:10:21 JST poleguy looking for lost tools poleguy looking for lost tools
      in reply to

      I'd love your critique of my approach. (Yes you, random reader!)

      This is a holy grail that I've searched for numerous times. I started on windows (10+ years ago) and the ability to automate was abysmal.

      It's much nicer now with cloud images, virt-installer, python and linux. I decided to do it and within a few days on-and-off it is running fully automated.

      How are other people doing this? (I suspect for most project the answer is they are not.)

      #automation #python #vm #testing #linux #fpga

      In conversation about 3 days ago permalink
    • Embed this notice
      poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 10:10:21 JST poleguy looking for lost tools poleguy looking for lost tools
      in reply to

      Are there things in this script that can be eliminated?

      Can virt-install be set to wait till the install is done and the vm is ready and return a pass/fail?

      I don't like polling with 'virsh domifaddr' to find the IP address, but it works. How do other people get the IP address of a newly created VM?

      I don't like polling a log file for a string match to wait for completion of cloud-init to avoid potential race conditions. How do people know their VM's are actually running?

      In conversation about 3 days ago permalink
    • Embed this notice
      poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 10:10:21 JST poleguy looking for lost tools poleguy looking for lost tools
      in reply to

      I have five lines of bash to set-up ssh keys. At least they are easy to understand. Is this normal practice?
      I could use #ansible for this, but that creates another dependency. Is that what people do?

      I don't want to argue about the safety of wget, github or |bash. You can't argue that it's effective. How do _you_ solve this chicken-vs-egg problem?

      #automation #python #vm #testing #linux #fpga

      In conversation about 3 days ago permalink
    • Embed this notice
      poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 10:10:22 JST poleguy looking for lost tools poleguy looking for lost tools
      in reply to

      Just pushed some updates. I have posted the #verilog serial link code. This involved getting a set of scripts for simulation set up.

      If anybody is interested in helping on this project, I'd love to have somebody try to follow the readme.md to install the prerequisites and run the ./run_sim script.

      The goal would be to take notes and flesh out what things aren't in the prerequisite list and how to install them.

      I'd be happy to do the same for somebody else's project.

      #fpga #reproducibility

      In conversation about 3 days ago permalink

      Attachments

      1. Domain not in remote thumbnail source whitelist: ik.imagekit.io
        Changelog
        Announce updates and news to your users with Changelog.md
    • Embed this notice
      poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 10:10:22 JST poleguy looking for lost tools poleguy looking for lost tools
      in reply to

      This runs in 2m:24s on my machine. Who can run it to confirm it works "not on my machine?"

      This week I went meta: tested the installer of the test sim of the telemetry used to test the product. I'll call that a test-test test.

      I now have one automated script.

      completely means:
      * create vm from scratch
      * ssh keys in both directions
      * apt dependencies
      * mount non-apt bits from host
      + vivado
      + cvc64
      * self checking sim

      https://github.com/poleguy/protonpack/blob/main/scripts/test_install.sh

      #automation #python #vm #testing #linux #fpga

      In conversation about 3 days ago permalink
    • Embed this notice
      poleguy looking for lost tools (poleguy@mastodon.social)'s status on Monday, 23-Jun-2025 12:02:03 JST poleguy looking for lost tools poleguy looking for lost tools
      in reply to
      • Mauricio Teixeira 🇧🇷🇺🇲

      @badnetmask Thanks, no-longer-random reader!
      I do use cloud-init to set up the ssh keys to get in to the vm. But I'm trying to have the vm then load sshfs mounts from the host. For that I need to put the vm keys back on the host. I did not see a way to do this via cloud-init. Even if it had that capability it would seem like 'feature creep.' That goes beyond 'init' doesn't it?

      I just learned about virsh and wish I had known of it earlier. It works. Just looking to find out what others do.

      In conversation about 3 days ago permalink
    • Embed this notice
      Mauricio Teixeira 🇧🇷🇺🇲 (badnetmask@hachyderm.io)'s status on Monday, 23-Jun-2025 12:02:03 JST Mauricio Teixeira 🇧🇷🇺🇲 Mauricio Teixeira 🇧🇷🇺🇲
      in reply to

      @poleguy
      If your VM will always be local, and you need access to a directory in the hos file system, then sshfs is overkill. Try this instead:
      https://libvirt.org/kbase/virtiofs.html

      In conversation about 3 days ago permalink

      Attachments

      1. No result found on File_thumbnail lookup.
        libvirt: Sharing files with Virtiofs
        libvirt, virtualization, virtualization API

Feeds

  • Activity Streams
  • RSS 2.0
  • Atom
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.