Do you have a firewall on 192.168.43.87
that may be blocking external connections?
The founder is a billionaire Eron Wolf and he funds the projects: https://m.youtube.com/watch?v=cwz2iZwYpgg&t=950
That organization is FUTO, founded in 2021 by 18-year Silicon Valley veteran, programmer/founder of Yahoo! Games, and WhatsApp seed investor Eron Wolf.
The show is called “Detroiters” on Comedy Central https://en.m.wikipedia.org/wiki/Detroiters
as @walden already mentioned, the files in Lemmy’s documentation are the wrong ones. The correct file seems to be in https://github.com/LemmyNet/lemmy/blob/main/docker/docker-compose.yml.
The documentation won’t help you if you don’t want to use Ansible.
The Samba service is normally run by root either way. Samba uses the logged in user’s uid to access the files. To be able to see the files, the user needs to have permissions for the directory and the contained files. The mnt folder currently only has root permissions, which is why the user can’t see the files.
You need to change the permissions of the NTFS mount. I’m not sure what the uid of user
is, but you can find that out by executing id user
. The numbers are the ids you need.
In fstab, you need to add the user’s uid and gid by adding uid={},gid={}
to the line.
Assuming the uid and gid are 1000, it would look like this:
/dev/disk/by-uuid/2666EE3966EE097F /mnt/2666EE3966EE097F auto nosuid,nodev,nofail,uid=1000,gid=1000,x-gvfs-show 0 0
(you need to remount the partition after the change). You can check if the permissions changed in your file manager.
This will change the mount’s permissions to the user you want to access it from, but this also means that no other user (except root) will be able to. The link below has the answer if you want it to be accessible by all users.
I used this answer on Superuser, so it’s possible that this will not fully work, but I don’t have the devices to test it out currently.
You need to put the bommon line /dev/disk/by-uuid/2666EE3966EE097F /mnt/2666EE3966EE097F auto nosuid,nodev,nofail,x-gvfs-show 0 0
onto the computer with the NTFS partition.
The top line //192.168.0.30/share /mnt/2666EE3966EE097F auto cifs username=user,password=1 0 0
is for mounting the Samba share on another device.
I don’t fully understand this setup. Did I misunderstand something?
You have a Fedora PC with an NTFS partition mounted to /run/media/user/share
.
The Fedora computer shares a directory /mnt/2666EE3966EE097F
over Samba.
Fedora and another computer connect to /mnt/2666EE3966EE097F/
over Samba, but they show no content.
Did you perhaps forget to remount your NTFS partition to /mnt/2666EE3966EE097F/
? Otherwise I don’t see a way to access the content with your current configuration.
Also the port you opened to change the default port is only for external services or clients. Immich-server uses the internal network for connecting to postgres, which still uses the default port. You should just use immich-database:5432
and not change anything.
I don’t understand why you even change the names and ports.
If you have a seperate docker-compose.yml
file for Immich, the names won’t clash with other services (except if container_name
is duplicated, but services like postgres and redis normally get one assigned automatically).
The ports are also limited to the container networks, so running several postgres instances still allows all of them to use the default port (except you pass them through from the host, which you normally shouldn’t do in closed networks like Immich’s or you run all services in network_mode: host
, which is often a bad idea).
Opening ports in a postgres instance is not always needed, because you can attach yourself to the container and use the cli interface to do what you need.
That looks like a cool addition. Did you test the compatibility with arr-scripts, which can download tracks from Deezer?
MusicBrainz is an open database and everyone can enrich their metadata. If you like a niche artist and their information is not complete, you can help other users by adding the missing albums to MusicBrainz.
I use EteSync because it’s End-to-end encrypted and I don’t fully trust my security practices.
I think KoboldAI Lite is what you’re asking for. I’m not sure how it works, but it seems to be able to use OpenAI, Claude, Gemini, Horde and OpenRouter.
I think this is the repo for the website: https://github.com/LostRuins/lite.koboldai.net
The website is a bit ugly.
I started with Pop!_OS, because it was pretty and I was told that it was made for programmers. I was overwhelmed with the options and couldn’t get Twitch to work properly (because of missing codecs), so I switched over to ZorinOS, which helped me to familiarize myself with Linux. Later I returned to Pop!_OS.
Someday I got fed up with the major version updates, so I switched to Manjaro and later to Arch btw.
The preset time is not binding, you can always start a new task earlier or later. The timer is designed more like an alarm clock (it also does get recognised as one by Android). It will sound an alarm at the end of your specified time and 5 minutes after so that you don’t forget to set a new timer.
I like timeto.me (android). It is designed to log the whole day. It doesn’t seem to support tags, but the checklists might be something similar (?). It doesn’t support exporting to a CSV, but it supports backups and they are in JSON format, so it’s probably good enough.
It’s a relatively new project and visually iOS-leaning, but it’s the best one I found for specifically this problem.
It seems that Keycloak can sync multiple instances, but I don’t know how good of an idea that is. I found something in it’s documentation: https://www.keycloak.org/high-availability/introduction
I use authentik and I love how easy it is to create users, give them access to my services and even manage an LDAP outpost for the less-advanced services (Jellyfin, Calibre-Web). I heard that Keycloak is a better alternative to authentik, but I never used it, it looks very similar to it though.
The OS will wait until the mount is successful with these settings, which is why GNOME doesn’t load. Try adding nofail
to your options. It should continue with the boot process if you are out of the network with that option set. (https://wiki.archlinux.org/title/Fstab#External_devices)
(I understand the joke, please don’t explain it)