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/)Y
Posts
9
Comments
195
Joined
2 yr. ago

  • How does one actually get laptops from local electronics recycling? I keep reading about getting EOL equipment but details on how to actually get one's hands on such equipment are scant.

  • Beelink ME Mini

    Would something like this be suitable as a NAS + Jellyfin + Home Assistant box?

  • I got into my new network share, albeit not anonymously, but that's okay. Thanks for chiming in.

  • Gotcha. FWIW I got in after following the instructions in the "Optional" paragraph about setting up users for authentication - I added a Linux and Samba user called shareuser, set the new user as the owner of /mnt/ShareDemo, and updated the config.

    Thanks for confirming my suspicion. This was really going to eat at me if nobody else chimed in, so you really saved me from questioning my own sanity.

  • Gotcha - thanks for clarifying. I tried logging in w/ login and password of guest, but that didn't work, either. FWIW I successfully authenticated after following the "optional" part of the tutorial (created a new user shareuser, made it the owner of /mnt/ShareDemo, and updated smb.conf).

    Based on non_burglar's and frongt's comments, I think I'm willing to file this experience under either incomplete or incorrect tutorial. Importantly, I have learned something about setting up a local Samba share, so I thank you for helping me.

  • This helped, thank you!

    What has me scratching my head is that in the tutorial I was reading from, it mentions setting up users but very explicitly labels that section as "Optional." Anyway, I got in after following the instructions in that paragraph - adding a Linux and Samba user called shareuser, setting the new user as the owner of /mnt/ShareDemo, and updating the config. Unlike in the tutorial, I kept browseable = yes so that I can still browse to the folder in my file manager.

     
        
    valid users = shareuser
    public = no
    writable = yes
    browseable = yes
    
      
  • Sorry, I'm trying to understand your comment. Are you suggesting I put something else in place of nobody:nogroup when I set ownership of the ShareDemo folder, or is the issue that I have to actually create a user called nobody and a group called nogroup? Or should I create a different user and group specifically for this samba share? Thanks.

  • Linux @lemmy.ml

    My new public samba share asks for authentication

  • That's pretty slick.

    What are the HDDs plugged into? Would you mind posting some photos of the back?

  • How might cat and/or tee fit into one's coding workflow? Is it basically cat for displaying what's been saved and tee for writing changes to a file?

  • game-changer

    pun intended

  • Deleted

    Permanently Deleted

    Jump
  • Cool idea, although I thought part of the draw of all these various fediversal services was that they could interact with each other natively via the Activity Pub protocol.

  • This funniness only affects market orders, right? I reckon most retail orders are market orders, just wondering if I understand correctly. If I place a limit order, then I don't have to worry about the $5 I saved on a $0 fee transaction being made up elsewhere, although I suppose the tradeoff is that my order may not be filled at all.

  • Oh, are you talking about the special big picture mode or whatever it's called? B/c I use the full desktop experience.

  • I use Bazzite with multiple monitors. Can you clarify what you mean when you say another distro might meet OP's needs better if they have more than one monitor?

  • On immutable distros, one can still get something not available as a flatpak by installing it in a distrobox container.

  • try to sneakily make me register passcodes

    Can you expand on this? I'm not sure what this means. Is it like instead of a full fledged password, just a four digit PIN or something? Thanks.

  • Thanks - this got me past the original issue. What I did is I opened up Flatseal and granted access to all system files for Virtual Machine Manager.

    However, now I'm stuck at a different point. I can get past where I choose how much memory, CPU, and disk storage to allocate, but when I get to Step 5 and click Finish,

    This happens:

     
        
    Unable to complete install: 'internal error: process exited while connecting to monitor: 2025-06-22T17:16:36.091623Z qemu-system-x86_64: -blockdev {"driver":"file","filename":"/run/media/myusername/path/to/installers/debian-12.11.0-amd64-netinst.iso","node-name":"libvirt-1-storage","read-only":true}: Could not open '/run/media/myusername/path/to/installers/debian-12.11.0-amd64-netinst.iso': Permission denied'
    
    Traceback (most recent call last):
      File "/app/share/virt-manager/virtManager/asyncjob.py", line 71, in cb_wrapper
        callback(asyncjob, *args, **kwargs)
      File "/app/share/virt-manager/virtManager/createvm.py", line 2008, in _do_async_install
        installer.start_install(guest, meter=meter)
      File "/app/share/virt-manager/virtinst/install/installer.py", line 726, in start_install
        domain = self._create_guest(
                 ^^^^^^^^^^^^^^^^^^^
      File "/app/share/virt-manager/virtinst/install/installer.py", line 667, in _create_guest
        domain = self.conn.createXML(initial_xml or final_xml, 0)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/app/lib/python3.12/site-packages/libvirt.py", line 4590, in createXML
        raise libvirtError('virDomainCreateXML() failed')
    libvirt.libvirtError: internal error: process exited while connecting to monitor: 2025-06-22T17:16:36.091623Z qemu-system-x86_64: -blockdev {"driver":"file","filename":"/run/media/myusername/path/to/installers/debian-12.11.0-amd64-netinst.iso","node-name":"libvirt-1-storage","read-only":true}: Could not open '/run/media/myusername/path/to/installers/debian-12.11.0-amd64-netinst.iso': Permission denied
    
      

    This message is talking about permission denied, so I checked the file permissions, and I saw that the ISO file is owned by the qemu user:

     
        
    myusername@fedora:~$ ls -la /run/media/myusername/path/to/installers
    total 101472336
    drwxr-xr-x. 2 myusername myusername       4096 Jun 16 14:47  .
    drwxr-xr-x. 6 myusername myusername      12288 Jul 29  2024  ..
    -rw-r--r--. 1 myusername myusername 7547453440 Oct 17  2024  bazzite-gnome-stable.iso
    -rw-r--r--. 1 qemu       qemu        702545920 Jun 12 17:00  debian-12.11.0-amd64-netinst.iso
    
      

    I changed it to myusername:

     
        
    sudo chown myusername:myusername /run/media/myusername/path/to/installers/debian-12.11.0-amd64-netinst.iso
    
      

    When I tried the same steps again, I got stuck in the same place and rerunning ls showed that the ISO file's ownership has reverted back to qemu.

    Any ideas?

  • Here are the results of some commands that I believe answer your questions. When I run the ls command against that directory, it says no such file or directory. Could this have something to do w/ the fact that Virtual Machine Manager is running as a flatpak? (as the other commenter @[email protected] has hinted)

    Here's what I tried:

    what are the permissions of /run/usr/1000/doc/c0a3c3fc

     
        
    myusername@fedora:~$ ls -la /run/usr/1000/doc
    ls: cannot access '/run/usr/1000/doc': No such file or directory
    
      

    what user are you running VMM as

     
        
    myusername@fedora:~$ ps aux | grep virt-manager
    myusername      17995  0.0  0.0   3688  2048 ?        S    13:05   0:00 /usr/bin/bwrap --args 40 -- virt-manager
    myusername      18011  0.0  0.0   3788  1396 ?        S    13:05   0:00 /usr/bin/bwrap --args 40 -- virt-manager
    myusername      18013  1.5  0.3 889968 101424 ?       Sl   13:05   0:00 python3 /app/bin/virt-manager
    myusername      18147  0.0  0.0 230340  2224 pts/0    S+   13:06   0:00 grep --color=auto virt-manager
    
      

    EDIT: I got past this issue by opening up Flatseal and granting access to all system files for Virtual Machine Manager; however, now I'm getting stuck on another permission issue after I choose how much RAM, CPU, and disk space to allocate. Reference my response to @[email protected]'s comment.

  • I copied the ISO file to my home directory but got the same result. Any other ideas?

    EDIT: I got past this issue by opening up Flatseal and granting access to all system files for Virtual Machine Manager; however, now I'm getting stuck on another permission issue after I choose how much RAM, CPU, and disk space to allocate. Reference my response to @[email protected]'s comment.

  • Linux @lemmy.ml

    I'm getting "Error setting installer parameters" while attempting to set up a new VM in Virtual Machine Manager

  • Open Source @lemmy.ml

    Did OBS Studio remove Window Capture from Sources?

  • Linux @lemmy.ml

    Help me list custom keyboard shortcuts from terminal on Linux

  • Open Source @lemmy.ml

    What open source star gazing apps do you recommend?

  • Asklemmy @lemmy.ml

    What do I need to watch out for when buying an unlocked phone on the used market?

  • Linux @lemmy.ml

    How to make it so frequently used sites don't constantly require 2FA?

  • Linux Gaming @lemmy.ml

    Option for Variable Refresh is gone after installing new graphics card (PowerColor 6750 XT)

  • Linux @lemmy.ml

    Unable to install updates on Nobara 38 b/c the operation would result in removing the following protected packages: nobara-amdgpu-config