Outrun lets you execute a local command using the power of another Linux machine
1–10 of 13 posts
Re: Outrun lets you execute a local command using the power of another Linux machine
#2Re: Outrun lets you execute a local command using the power of another Linux machine
#3Re: Outrun lets you execute a local command using the power of another Linux machine
#4Love the concept, would be interested to see this implemented with docker vs python/pip
Re: Outrun lets you execute a local command using the power of another Linux machine
#5Mounting a FUSE filesystem to get around the FHS in Linux is so astounding when there's a project (Nix) seeking to make proper strides here.
Everyone who reads this post please please go checkout Nix (NixOS.org)
Re: Outrun lets you execute a local command using the power of another Linux machine
#6I will be trying this with a spare laptop which has a broken screen, hopefully it can increase productivity for me.
Re: Outrun lets you execute a local command using the power of another Linux machine
#7Is this a joke ? I thought it was going to be a post about Nix Mounting a FUSE filesystem to get around the FHS in Linux is so astounding when there's a project (Nix) seeking to make proper strides here. Everyone who reads this post please please go checkout Nix (NixOS.org)
Then i tried to use it for managing different compiler versions. It was super easy to install GCC in many versions, but then come compiler time I couldn't compile anything because some libraries (that are not in my power to change) used hard coded absolute paths to standard library dependencies, that would in turn include incompatible files from the compiler.
So in essence I would have liked a replacement for Docker, but the issue is I couldn't get the Nix way of doing things to interoperate with the non PyPi Python World, or existing libraries.
This isn't quite the fault of Nix, just that I couldn't use it in a bit more complex real world scenarios.
Re: Outrun lets you execute a local command using the power of another Linux machine
#8Is this a joke ? I thought it was going to be a post about Nix Mounting a FUSE filesystem to get around the FHS in Linux is so astounding when there's a project (Nix) seeking to make proper strides here. Everyone who reads this post please please go checkout Nix (NixOS.org)
Re: Outrun lets you execute a local command using the power of another Linux machine
#9Is this a joke ? I thought it was going to be a post about Nix Mounting a FUSE filesystem to get around the FHS in Linux is so astounding when there's a project (Nix) seeking to make proper strides here. Everyone who reads this post please please go checkout Nix (NixOS.org)
I played around with Nix (not NixOS) a bit. First I tried to use it for managing python dependencies, but that didn't work out properly because some of the python modules i needed were only available on APT. Then i tried to use it for managing different compiler versions. It was super easy to install GCC in many versions, but then come compiler time I couldn't compile anything because some libraries (that are not in…
Re: Outrun lets you execute a local command using the power of another Linux machine
#10It implemented a FUSE-based network filesystem intended for ad-hoc use just for this, with some obvious optimization for loading all dependency at once.
As the result, remote machine need no preparation other than ssh access.
It's... interesting.