

Except I’m in rural Australia. Star link is objectively the best option.


Except I’m in rural Australia. Star link is objectively the best option.


Starlink gives me an ipv6 its not static as such but a dynamic DNS can solve that issue. My ISP issue is that my mobile provider doesn’t give me an ipv6 at all so I can’t route to my home server without a gateway to proxy.


Seems fun like I could just plug it into openwebui docker compose. Mind you is the only benefit of this that u can run non ollama compatible models.
I’m still a fan of the theory that the only thing he was good at was creating was ai


This sounds like a problem I’m too Linux to understand


Here is my searxng rocker compose:
services:
redis:
container_name: redis
image: docker.io/valkey/valkey:7-alpine
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
networks:
- local_bridge
volumes:
- ./data/reddis:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
networks:
- local_bridge
- proxy
volumes:
- ./data/searxng:/etc/searxng
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
- SEARXNG_SECRET=${SEARXNG_SECRET}
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
networks:
local_bridge: # local bridge with ipv6 internet access
driver: bridge
enable_ipv6: true
proxy:
external: true
And my searxng settings:
searxng/data/searxng/settings.yml
# see https://docs.searxng.org/admin/settings/settings.html#settings-use-default-settings
use_default_settings: true
server:
# base_url is defined in the SEARXNG_BASE_URL environment variable, see .env and docker-compose.yml
limiter: false # can be disabled for a private instance
image_proxy: false
ui:
static_use_hash: true
query_in_title: true
infinite_scroll: true
default_theme: simple
theme_args:
# style of simple theme: auto, light, dark
simple_style: dark
redis:
url: redis://redis:6379/0
search:
safe_search: 0
autocomplete: 'duckduckgo'
default_lang: "en"
formats:
- html
- json
outgoing:
# default timeout in seconds, can be override by engine
request_timeout: 3.0
enabled_plugins:
- 'Hash plugin'
- 'Basic Calculator'
- 'Self Informations'
- 'Tracker URL remover'
# - 'Ahmia blacklist'
- 'Hostnames plugin' # see 'hostnames' configuration below
- 'Open Access DOI rewrite'
And the proxy network is just the docker network that nginx is connected to. Here is my nginx conf https://github.com/muntedcrocodile/nginxconf .


Vibe coding L
Like I use a lot of ai but u gotta be specific and understand the architecture lol.


Does that work cos that would solve all my Linux issues. Libre office just isn’t ready yet.


I use a dolphin finetuned model. Its uncensored and with a good system prompt it gives u exactly what u want nothing more nothing less
Ms has one major issue. They can get worse Linux can’t. If xyz component of Linux goes to shit it gets forked. Its Darwinian evolution at its finest.
No I think this time it actually is
The year of the Linux desktop is upon us?


Because it isn’t and wasn’t perfect. I think linus had instilled that within the world 2 most important pieces of software. Its just incredible that he invented both.


Is this people preemptively optimising. Write code in the most convenient manner then when u have performance issues optimise. I see ai as an excellent programming tool. I just worry for the next generation who can’t write code themselves without an ai.


Is this the year of the Linux desktop?


Does it support framework16 amd yet?


It shouldnt require that many brains. U can just clone the repo swap out the audio file and consult with Dr GPT on how to build it.


OK let’s run through some debug steps.
Test to see if samba is working by using a docker volume instead of trying to mount a file path.
If that works we can then assume its purely a file permission issue. U can check/test that by opening a shell inside the docker container and doing investigation from their.
If from the container shell u have perm issues then u will probably need to use the docker parameter to specify the user id of the container to match that of ur host or alternativly set the filesystem to match that of the container (this will lock u out of ur servers user access to the filesystem as u will no longer be owner).
If the container shell has perms to do shit in the mounted volume then it’s a samba config issue. I’ve never done it myself but I’ve heard that samba is a bitch to configure.


U can always just use the media stack docker image it practically does everything for you
I can’t unfortunately. They only feature I use is that fact I can access my ipv6 only server via an ipv4 only network.