aberrate_junior_beatnik (he/him)

  • 0 Posts
  • 24 Comments
Joined 2 years ago
cake
Cake day: July 2nd, 2023

help-circle
  • Follow the guidelines as mentioned in freedesktop

    Which guidelines are you talking about? Searching for “proxy” and “environment variables” didn’t pull up anything I saw that would be relevant in this case. I’ve been using linux for a couple of decades now and I’m not sure what rule is being broken here.

    It sounds like you didn’t have a proxy set in your environment variables, but you did have one set through another means. It’s somewhat standard practice to have fall-through settings, where if settings aren’t set in one place, a program looks in another place, then maybe another, etc. Now admittedly it would be nice to have a way to disable functionality entirely, but usually that kind of thing happens with command line flags.

    I get that it’s frustrating to deal with a problem like this, but ultimately your environment was misconfigured, and that’s going to break some software.









  • Well, that’s your problem. sub?id is what defines which uids and gids are available to a user for purposes of making user namespaces. It’s strange that those files don’t already exist; useradd should create them automatically. What distro are you using?

    Regardless, you can create those files yourself. Here’s a line from subuid my machine: administrator:100000:65536. The first field is the username (you can also use a uid), the second is the starting uid for the block of uids, and the third field is the number of uids in that block. So uids from 100000-165535 (inclusive) are allocated to the user administrator.

    See and for more details.



  • I’m sorry, it’s just that I can’t imagine you live in the same world I do. Maybe it’s different for you, I saw you said you live in a socialist country so you may not be aware that in capitalist countries most people hate their jobs. It’s so woven into the fabric of our society I’m shocked someone wouldn’t know that. It’s the subject of jokes:

    Oh, you hate your job? Why didn’t you say so? There’s a support group for that. It’s called EVERYBODY, and they meet at the bar.

    – Drew Carey

    Monday, the start of the work week, is generally loathed. There’s an acronym: TGIF, thank god it’s friday, the end of the workweek. Polls show 40% of people think their jobs make no meaningful contribution to society:

    YouGov, a data-analytics firm, polled British people, in 2015, about whether they thought that their jobs made a meaningful contribution to the world. Thirty-seven per cent said no, and thirteen per cent were unsure—a high proportion, but one that was echoed elsewhere. (In the functional and well-adjusted Netherlands, forty per cent of respondents believed their jobs had no reason to exist.)

    Anyway, I guess I’ll go back to my “religious cult,” where we separate people into good and bad categories. For instance, one way we could do that is to say that other people are in a religious cult because they separate people into good and bad categories, hence they are bad people.










  • Short answer: go ahead and install whichever Linux distro you like on Hyper-V and go from there.

    Longer answers:

    Linux works fine on VMs. There aren’t really any caveats. Hyper-V should be fine. It’s been a while since I used it but I remember thinking it was OK. I preferred it to Virtualbox; I think the Virtualbox drivers made some stuff flaky on my machine, but YMMV. I ended up shelling out for VMWare which I’d used at work. Some distros offer cloud images that are tailored for running as VMs, but unless you’re running a cluster with a lot of VMs I don’t think there’s any advantage, any distro will work. There aren’t any significant differences running Linux on a VM from running it on a physical machine.

    As to which OS to use for a host, the commonly understood strengths & weaknesses of each OS apply the same as they do in other domains. Windows has better desktop hardware support, Linux tends to be more power-user friendly, etc. It depends on your priorities which you choose. Maybe the biggest factor is that Windows has Hyper-V, whereas Linux has Xen, KVM, and qemu. Either platform can use Virtualbox or VMWare.

    P2V and V2P are definitely things. Searching for them online will return tools that will do this. Linux should be rather straightforward to transfer even without a specialized tool, assuming you aren’t using a distro (or distro variant) that is specially built for VMs. dd should work like a charm. It should be possible to do invert the host and guest.

    If that sounds like a whole lot of nothing it’s because that’s kind of the way it is with VMs. They just work.