

Game pass is a big success for them as far as anyone can tell.
Formerly /u/neoKushan on reddit
Game pass is a big success for them as far as anyone can tell.
There’s no cad somewhere on this planet with good UX.
I actually think Google is going to win this one, they’re the only ones making their own hardware to run their own models. Open ai are starting down that road but they’re years behind.
When you look at the pricing of all the AI companies, Google’s is so much cheaper (orders of magnitude) and they’re not having to pay Nvidia billions to do it.
Bioshock was a cut down version of the “shock” gameplay - no inventory management, much more linear path, etc.
I remember at the time people complained that it was “dumbed down for console”.
I still enjoyed it though, but I can see why veterans of the genre would feel things are missing or fall short while newcomers would be blown away.
Anyone that’s played plague Inc knows how this goes. It’s not a winning strategy.
Yeah I think your problem was trying to use ~ in a path. That’s a bash thing, not a linux thing - slightly pedantic distinction for many but worth knowing about in case future applications give you a similar problem.
Don’t set it to your home path, set the path explicitly. That’ll be what it’s complaining about, the ~.
It shouldn’t really matter where you’ve got your files as long as they’re mounted on a standard path. Maybe try creating a symlink from where your media is to a standard path like /mnt/media
or something?
Hmm sorry not sure why it would be complaining about an invalid path. Is it all paths that are invalid, or just the ones to your media?
I don’t think you should be getting downvotes for having an opinion and I appreciate your reply.
However I do love a good debate - what’s the advantages for you for installing apps on “bare metal” (I’m assuming you mean a base OS install rather than actual bare metal). What about virtualisation?
I’m also on emby and it works well for me. My main grievance is setting up a new device is a chore, “emby connect” is far too clunky to use so I end up configuring via URL every time - and on some devices that’s a real chore.
What’s wrong with docker?
Let’s not rewrite history, 20 years ago desktop Linux was an absolute shit show.
Am UK citizen, can confirm.
Pretty sure this is just part of the “give them a terrible deal they wouldn’t agree to” strat that means Trump can say “we gave them a very good deal and they refused, Russia can do what they want”.
It’s all bullshit and always has been.
Only if that channel was private. You don’t have to join a channel to be able to read its contents.
People keep giving Mozilla shit for taking money from Google, yet they see an ad for a different company and lose their shit.
Okay, so I think I can help with this a little.
The “secret sauce” of Docker / containers is that they’re very good at essentially lying to the contents of the container and making it think it has a whole machine to itself. By that I mean the processes running in a container will write to say /config
and be quite content to write to that directory but docker is secretly redirecting that write to somewhere else. Where that “somewhere else” is, is known as a “volume” in docker terminology and you can tell it exactly where you want that volume to be. When you see a command with -v
in it, that’s a volume map - so if you see something like -v /mnt/some/directory:/config
in there - that’s telling docker "when this container tries to write to /config
, redirect it to /mnt/some/directory
instead.
That way you can have 10 containers all thinking they’re each writing to their own special /config
folder but actually they can all be writing to somewhere unique that you specify. That’s how you get the container to read and write to files in specific locations you care about, that you can backup and access. That’s how you get persistence.
There’s other ways of specifying “volumes”, like named volumes and such but don’t worry too much about those, the good ol’ host path mapping is all you need in 99% of cases.
If you don’t specify a volume, docker will create one for you so the data can be written somewhere but do not rely on this - that’s how you lose data, because you’ll invariably run some docker clean command to recover space and delete an unused unnamed volume that had some important data in it.
It’s exactly the same way docker does networking, around port mapping - you can map any port on your host to the port the container cares about. So a container can be listening on port 80 but actually it’s being silently redirected by the docker engine to port 8123 on your host using the -p 8123:80
argument.
Now, as for updates - once you’ve got your volumes mapped (and the number and location of them will depend on the container itself - but they’re usually very well documented), the application running in the container will be writing whatever persistence data it needs to those folders. To update the application, you just need to pull a newer version of the docker container, then stop the old one and start it again - it’ll start up using the “new” container. How well updates work really depends on the application itself at this point, it’s not really something docker has any control over but the same would be if you were running via LXC or apt-get or whatever - the application will start up, read the files and hopefully handle whatever migrations and updates it needs to do.
It’s worth knowing that with docker containers, they usually have labels and tags that let you specify a specific version if you don’t want it updating. The default is an implied :latest
tag but for something like postgress which has a slightly more involved update process you will want to use a specific tag like postgres:14.3
or whatever.
Hope that helps!
It doesn’t really matter if people stick around to play a single game, they’ll almost certainly explore other games and stick around for the service. That’s the idea I think they’re going for.
I’d be curious to see how many CoD players stuck around.