docker run -d -p 3000:8080 --gpus=all -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama
How risky is running this command?
Same as using any open source app. Actually, less (you’re only giving access to some paths, gpus, and listening on a port). You should use 127.0.0.1:xxx:yyy so that it’s not attached to all available ip addresses (0.0.0.0 is implicit)
Thank you!
Does 0.0.0.0 open it to anyone subject to firewall? It seems it didn’t work for local network access
Yes, it’s subject to firewall
How does one simplify distro hopping? Do you have a workflow to make it easier to set everything up?
Look up how to have /home on a seperate partition, it lets you keep your user files when distro-hopping
Is there a way to avoid creating a new one, or do you just replace the new one in /etc/fstab?
Do you mean: You currently have a separate partition mounted as
/home
and want to reuse this when installing a new distro?
Yes, there is a way to avoid creating a new one:- In the gui or tui installer, choose manual partitioning
- If they don’t exist yet, create the partitions you want to use.
- Specify their file system (ext4 or whatever you prefer), mount point or use, e.g.
/
,/home
,swap
.
!!! Be careful !!!
!!! For the
/home
partition make sure to uncheck recreate file system, format or alike. !!!
This is the partition currently filled with your data!- apply changes and procede installation.
Does anyone have a Thin client setup using Linux? I did have a virtual Manjaro KDE on my Proxmox until an update borked it. Yesterday, I setup a Gnome VM because they have native RDP support. It’s still suboptimal. Content is still lagging and there’s tearing. Additionally, I would like a way to use the webcam+headset attached locally to my thin client as if they were connected to the virtual machine.
Previously, I have been Scripting around with USB IP but only with half success.
I just wanted to know your experiences
perhaps it’s worth trying https://guacamole.apache.org/doc/gug/guacamole-docker.html (I do not have the pleasure, but it’s what I have on my radar) Good luck!
Does anybody use openrc? Ive used systemd on my gentoo install until recently my x99 motherboard just killed itself. Which i had LUKS + secureboot + tpm which left my gentoo install unrecoverable. I have a stage 4 tarball which is 2 months old that i can recover from. But im almost tempted to try to run OpenRC as my init system. Does anybody use openrc and if so what experiences have you had in comparison to systemd?
I know theres more steps to getting services setup compared to systemd at least in the gentoo install guide.
Can’t really answer, but since no one gave any input I will share this: I switched over to systemd (from sysVinit) because of Docker (I wanted to have my own local searxng, ublocky gluetun, and whatnot).