Skip Navigation
Posts
26
Comments
110
Joined
2 yr. ago
  • Probably it is equivalente to a custom itx machine, the thing I was impressed about was the CPU they used that combined with fast RAM could be very good for hosting locale LLMs

  • Indeed!

    (It should be TB4 if I remember correctly)

  • LocalLLaMA @sh.itjust.works
    shaked_coffee @feddit.it

    Framework just announced their new Desktop: an AI powerhorse?

    Framework just announced their Desktop computer: an AI powerhorse?

    Recently I've seen a couple of people online trying to use Mac Studio (or clusters of Mac Studio) to run big AI models since their GPU can directly access the RAM. To me it seemed an interesting idea, but the price of a Mac studio make it just a fun experiment rather than a viable option I would ever try.

    Now, Framework just announced their Desktop compurer with the Ryzen Max+ 395 and up to 128GB of shared RAM (of which up to 110GB can be used by the iGPU on Linux), and it can be bought for something slightly below €3k which is far less than the over €4k of the Mac Studio for apparently similar specs (and a better OS for AI tasks)

    What do you think about it?

  • Unfortunately the issue persists even if I give Heroic access to the all user files (filesystem=home), but maybe the issue is more an issue of Steam rather than of Heroic, since from Heroic I'm able to launch games and even add them to Steam (they actually appear on Steam Library, and manually launching from a terminal the command Heroic automatically added to steam games are launched properly).

    I tried to give Steam flatpak full access to user's files as well, but after having done that I got an error when launching steam pointing me to this doc page so I think some additional steps would be needed for that change (?)

  • Because sometimes I have the laptop connected to the TV using Steam's Big Picture mode with a controller and it would be nice to launch also my Heroic games from there without having to go back to the desktop

  • Linux Gaming @lemmy.world
    shaked_coffee @feddit.it

    Heroic Games won't launch from Steam

    I've installed "Overcooked 2" and "Moving Out" through Heroic Games Launcher (flatpak) and then used the ad-hoc option to add it to steam (also installed as flatpak). If I try to launch the game from Heroic it works properly, and it works also if I try to launch it from the command line with the command it added to steam

     bash
        
    flatpak run com.heroicgameslauncher.hgl --no-gui --no-sandbox "heroic://launch/legendary/8e29583ae4b44a21883038668f7e301e"
    
    
      

    but if I click the PLAY button on steam, the game fails to launch and the following error is printed on terminal:

     undefined
        
    chdir "/var/home/lez"
    Game Recording - would start recording game 12260096395435835392, but recording for this game is disabled
    Adding process 532 for gameID 12260096395435835392
    ERROR: ld.so: object '/var/home/lez/.var/app/com.valvesoftware.Steam/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    ERROR: ld.so: object '/var/home/lez/.var/app/
      
  • IT WORKED! Thank yoy again for the help :)

  • I've tried first removing the -it flag as suggested by @[email protected] in another comment and see if that works out. Otherwise I'll try to debug with a logfile as you suggested, thanks!

  • Oh you are right, thank you. I've tried removing it and see if it fixes the issue 🤞

  • Thank you for pointing it out. I'll fix it as soon as possible and see if it solves the issue.

    However, the script I pasted is fired by another script (called docker_backupper.sh, that is the one triggered by the cronjob and whose purpose is firing a specific script for each service to be backed up) and that script has the #!/bin/bash on top, so I fear adding it also to the "invoked scripts" won't change that much

  • Selfhosted @lemmy.world
    shaked_coffee @feddit.it

    Postgres backup script not working when executed by a cronjob

    I've made the following backup script for my immich stack to be automatically run every day

     sh
        
    # Load variables from the .env file
    SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
    set -a
    source "$SCRIPT_DIR/../.env"
    set +a
    
    # Create a dump of the database and back it up
    docker exec -it immich_db pg_dumpall -c -U immich > immich/latest_db_dump.sql
    rustic -r $BUCKET_NAME/immich backup immich/latest_db_dump.sql --password=$REPO_PWD
    
    # Backup the library, uploads and profile folders from the upload volume
    rustic -r $BUCKET_NAME/immich backup immich/uploads_v/library --password=$REPO_PWD
    rustic -r $BUCKET_NAME/immich backup immich/uploads_v/upload --password=$REPO_PWD
    rustic -r $BUCKET_NAME/immich backup immich/uploads_v/profile --password=$REPO_PWD
    
    # Apply forget policy
    rustic -r $BUCKET_NAME/immich forget $RUSTIC_FORGET_POLICY --password=$REPO_PWD
    
    
      

    and when I test it everything works properly, and the created sql dump file is complete and properly backed up.

    However, when the executi

  • I gave both distrobox and devcontainers a try but using them to install flutter seemed me a bit stretched, since it's not a single application that should be "containerized" by the rest of the system, but rather something several of my applications are supposed to interact with. But maybe it's just because I'm still new to this approach.

    However, in the end I managed to have it working with the "traditional" install, I've updated the original post!

  • Fedora Linux @lemmy.ml
    shaked_coffee @feddit.it

    Installing flutter on linux immutable distro

    cross-posted from: https://feddit.it/post/13363649

    Hi! I'm a flutter developer and I've recently switched from Ubuntu to Bluefin (based on Fedora Silverblue) I was trying to install flutter and all the dependencies it asks for when running flutter doctor and while for clang++, cmake and ninja I have been able to install them with Homebrew (brew install llvm cmake ninja) and the warning went away, flutter seems not to detect GTK 3.0 development libraries when installed through homebrew (brew install gtk+3)

    After having looked a little bit online, I've seen that the problem is probably that it's searching the libraries in the wrong place and in fact even when I run pkg-config --modversion gtk+-3.0 I see the library as missing. Therefore, I tried setting the PKG_CONFIG_PATH env variable to the folder where brew installed my libraries (/home/linuxbrew/.linuxbrew/opt/gtk+3/lib/pkgconfig) and after that the output of the pkg-config progra

    Flutter @programming.dev
    shaked_coffee @feddit.it

    Installing flutter on linux immutable distro

    Hi! I'm a flutter developer and I've recently switched from Ubuntu to Bluefin (based on Fedora Silverblue) I was trying to install flutter and all the dependencies it asks for when running flutter doctor and while for clang++, cmake and ninja I have been able to install them with Homebrew (brew install llvm cmake ninja) and the warning went away, flutter seems not to detect GTK 3.0 development libraries when installed through homebrew (brew install gtk+3)

    After having looked a little bit online, I've seen that the problem is probably that it's searching the libraries in the wrong place and in fact even when I run pkg-config --modversion gtk+-3.0 I see the library as missing. Therefore, I tried setting the PKG_CONFIG_PATH env variable to the folder where brew installed my libraries (/home/linuxbrew/.linuxbrew/opt/gtk+3/lib/pkgconfig) and after that the output of the pkg-config program above is the one expected. However, this doesn't seem to

  • But if the atproto team actually releases a way to selfhost a relay server as well (and not just a data server), in theory if bluesky enshittifies you could always fork the app, selfhost your PDS and Relay and migrate, while still being able to interact with the people in the "mainstream bluesky".

    I know this is a big if, and that at the moment it's not reality, but the Atmosphere it's at leaat 10 years younger than the Fediverse. So I'd say let's not call it shit yet and just see how it evolves...

  • ok I checked and you are right, the apache container actually exposes the 11000 port on the host. so i tried following the instructions for “traefik in a docker container on the same machine” and… it still didn’t work (now I was getting a Bad Gateway error)

    at this point I think I’ll just stick with my old setup with docker compose. I was interested in AIO because I thought it could have been an easier to maintain way to host NC (also considering it’s official, while the docker compose method is not) but apparently it’s not meant to be inserted in an already existing setup like mine so I’ll stick with what I currently have.

    it would be nice though if the NC devs also publish a “recommended docker-compose.yaml file” (in a similar way of what Immich does) so that more advanced users still can have an easy way to set everything up without having to look for the correct containers and settings required all over the internet

  • thank you! so, wanting to follow your tip and exposing the 11000 port from the apache container to the host (in order to have a setup that is valid even if I move the service to another machine), how should I do that? because the apache container is also created by AIO’s mastercontainer and so I don’t have a place where to specify its port mapping (while usually I would do it adding 11000:11000 to the ports section of the docker compose)…

  • Thank you! Idk how but I didn't noticed the paragraph in the docs saying that labels condition is not supported. I'll try with the file config and see if this way I can make it work. The only thing I'm still missing is the IP of the Apache container: shouldn't it be an IP on the traefik_net network where also the traefik container runs? And if so how can I specify to the mastercontainer to create the Apache container on that network with a specific IP address?

  • nextcloud @lemmy.ml
    shaked_coffee @feddit.it

    Nextcloud AIO + Traefik

    I'm currently running a Nextcloud instance in docker, using the "multiple containers" method, but I recently discovered that the reccomended method to run it is using this "All In One" image I previously didn't know about, and so I wanted to try to migrate to that setup (also in order to have easily also the office and whiteboard features that atm I don't have on my instance + have easier Backup-restore process)

    The problem is that on my server I'm using traefik as a reverse proxy to expose services to the internet, and it is working on a specific docker network (called traefik_net) where also every container that should be exposed is connected, and from the official documentation of Nextcloud AIO I really don't understand how am I supposed to configure it to work in a setup like mine (mainly because the mastercontainer creates all the containers it needs on a network called nextcloud_aio and I didn't find a way to change that and where to set the proper traefik lables)

    Anyone th

  • Maybe take a look at PhotoSync as well, it's not foss but it's a really well-done app and seems to be what you are looking for

  • Imho the card view redesign was more than needed, thank you!

    Big kudos to the thunderbird team, since the supernova announcement they've done a really good job

  • Anyone willing to summarize those mistakes here, for those who can't watch the video rn?

  • Agree, it doesn't mean the project it bad but it still seems a bit weird. I've texted one of the Dev on Reddit to ask for some clarification about the whole thing, and maybe understand the reasons behind this choices.

    Will update you here if they reply

  • As I replied to the other comment, I wasn't aware of the recent happenings. I've been using Floorp for a while now and when I installed it it was fully opensource.

    However, it seems like it's fully opensource again now (sources in the other reply)

  • Huh! I didn't know about all these happenings around floorp's source code availability, but from what I can see now it should be back as fully open source under the MPL 2.0... am I wrong?

    License on official GitHub

    Reddit post about coming back fully open source

  • From the Floorp official website:

    Floorp's source code is entirely open, allowing anyone to view it and contribute to the project. Not only is the browser itself open source, but the build environment is as well.

  • Linux @lemmy.ml
    shaked_coffee @feddit.it

    Howdy face recognition on 24.04 LTS?

    cross-posted from: https://feddit.it/post/9251429

    I was previously using PopOS! 22.04 on my tuxedo laptop and I'd installed on it Howdy to take advantage of the IR camera and have a windows hello alike face recognition feature.

    Everything was working fine, but after some time GNOME 46 and its new goodies were too tempting to stick with Pop's old GNOME version (at least for me) and therefore I switched to Ubuntu 24.04

    However, when I tried to install howdy using the PPAs as I did with Pop I noticed it wasn't working because of some changes that were made regarding on how Python is managed, and I couldn't find a solution for that. Looking at howdy's GitHub issues, there are a lot of them talking about this problem that seems to be started with 23.x versions already, but having so many issues created a bit too much confusion to me and I didn't manage to find a working solution from there.

    Is there anyone here using Howdy on Ubuntu 24.

    Feddit Risponde @feddit.it
    shaked_coffee @feddit.it

    Che fine ha fatto il barattolino Sammontana alla stracciatella?

    È da almeno un anno che nei supermercati intorno a me a Milano (Carrefour e Esselunga, sia grandi che "express") sono presenti praticamente tutti i gusti di barattolino tranne quello, che una volta invece c'era insieme agli altri...

    Anche voi avete notato questa cosa? O è una cosa locale? Qualche idea sul quale potrebbe essere la causa?

    Free Open-Source Artificial Intelligence @lemmy.world
    shaked_coffee @feddit.it

    Question about Llama3 + Open Web UI document management

    Today thanks to a NetworkChuck video I discovered OpenWebUl and how easy it is to set up a local LLM chat assistant. In particular, the ability to upload documents and use them as a context for chats really caught my interest. So now my question is: let's say l've uploaded 10 different documents on OpenWebUl, is there a way to ask llama3 which between all the uploaded documents contains a certain information (without having to explicitly tag all the documents)? And if not is something like this possible with different local lIm combinations?

    Linux Gaming @lemmy.ml
    shaked_coffee @feddit.it

    Ubisoft Connect launcher broken?

    Yesterday I was trying to install the Ubisoft version of AC Odissey on my PopOS! machine, and I wasn't able to do so because when I try to launch Ubisoft Connect from Lutris, it asks me to do the login and then shows only a black rectangle.

    I tried looking online for a solution but as far as I understood it's a problem of the new Ubisoft Connect UI and I wasn't able to find any fix... can someone help?

    It really sucks because it prevents me to play some games that are supposed to run on Linux just because at the time I bought them on Ubisoft Connect instead of Steam :/

    Linux @lemmy.ml
    shaked_coffee @feddit.it

    InfinityBook Pro 16 - Gen8 restarting out of nowere

    I've recently bought my first Tuxedo laptop, an InfinityBook Pro 16 - Gen8 and after having some minor issues with Fedora on it (mainly with the Tuxedo Control Center) I moved to PopOS! and since then it worked flawlessly. Or at least, it used to work flawlessly until last week, when the laptop started to reboot at (apparently) random points of its usage. This is REALLY annoying.

    Does anyone encountered the same issue? Have you identified its causes? And how have you fixed it?

    Che succede nel Fediverso? @feddit.it
    shaked_coffee @feddit.it

    Che ne pensate di Bluesky?

    Ho da poco finito di ascoltare l'episodio del podcast Decoder con l'intervista al CEO di Bluesky e mi è sembrato un progetto molto interessante.

    Quando era uscito (ancora in closed beta) ero molto dubbioso e diffidente vista la loro decisione di creare un nuovo protocollo anziché adottare ActivityPub, ma dopo aver sentito le motivazioni dietro questa scelta e i loro obiettivi per il progetto ho deciso di dargli una chance...

    Voi che ne pensate? Lo usate in parallelo al Fediverso?

    Fediverse @lemmy.world
    shaked_coffee @feddit.it

    What's your take on Bluesky?

    I recently finished the episode of The Verge's podcast #Decoder with the interview to Bluesky's CEO and it seems a quite interesting project. At the beginning I wasn't looking really into it because of their choice of using a new protocol instead of the existing ActivityPub, but after listening to her and the reasons behind this choice maybe I'll give them a chance.

    What do you think? Do you use it alongside with the fediverse?

    Linux @lemmy.ml
    shaked_coffee @feddit.it

    What's the state of the art for KDE Connect Clipboard Sync?

    A couple of years ago with my old phone (running if I don't remember wrong Android Pie) and my old laptop (running Manjaro KDE) I discovered KDEConnect and how it could enable a clipboard sharing feature similar to the one Apple provides between Macs and iPhones. It was great! Now, after having changed both my phone (now running Android 14) and my laptop (now running PopOS! 22.04) I wanted to reproduce that magic but I found out that with Android 10 some complications regarding clipboard sharing arrived and so it doesn't work out-of-the-box anymore :(

    I found some saying that the only way to do that was by the persistent notification button (still ok but meh) and some others reccomending some adb commands to make it work as it was before (which would be great but I wanted to investigate a bit more before pasting some random commands to my terminal)... but it was all kinda old content (referring to Android 10 or at most 11), **what's the situation as of today? Do you use clipbo

    Le Alternative @feddit.it
    shaked_coffee @feddit.it

    Immich sta per cambiare logo!

    L'alternativa self-hosted a Google Photos Immich ha indetto (già due settimane fa in realtà, ma io lo scopro ora) un contest per un nuovo logo visto che quello attuale per quanto caratteristico non è ideale per diversi motivi (primo tra tutti secondo me fa apparire il progetto come qualcosa ancora di acerbo e sperimentale, piuttosto che una valida alternativa a servizi come Google Photos o iCloud Photos)

    In palio $200 per l'autore del logo che verrà scelto, quindi se vi divertite a cimentarvi nella grafica digitale e nel design perché non provare?

    Altrimenti (se vi va) date un occhio alle proposte fatte fin'ora e votate la vostra preferita! A me piace molto la proposta di Tyree :)

    Matrix @lemmy.ml
    shaked_coffee @feddit.it

    Which server would you reccommend to selfhost for personal use in 2024?

    Since I recently set up a decently powerful homelab, with a bunch of services running on docker behind traefik, I thought it would have been cool to try out selfhosting a matrix homeserver for personal use (at the beginning it will be just me, potentially it will extend to some friends and/or a small organization of around 20 people working together). At first I was thinking about going with Dendrite, but then I've seen it still doesn't support Threads, nor Matrix 1.5 API and that despite the announcement of a couple of months ago its repo hasn't yet be moved to the new element-hq GitHub as it happened with Synapse. This made it seem kinda like a "2nd class citizen" compared to Synapse, and therefore made me think if the latter would have been a better option to selfhost. And then I bumped into Conduit.rs so now I have 3 option to be undecided about!

    Therefore, here I am asking for your preferences and advices: which is your favourite one / which one would you recommend for my use-c

    Samsung @lemdro.id
    shaked_coffee @feddit.it

    TAB S2 bttery draining even when it says “in charge”

    In the last months, the battery of my S2 tablet was draining really quickly, untill it died and I wasn’t able to recharge it. So, I thought that the battery was dead (it served me for a bunch of years so it could have been acceptable) and I ordered on Amazon a new battery to replace it.

    After replacing the battery, though, the tablet turned on saying the new battery was at 50% and, when plugged in, it was acting as if it was charging. Apart from the fact that it wasn’t charging the battery that instead was quickly draining even if plugged in.

    Obviously I tried cleaning the charging port, changing cable, changing power adapter, changing socket on the wall, but nothing worked. So I assumed that the new battery they sent me was broken and I purchased a new one but when it arrived: exactly same situation.

    Could it be that I was very unlucky and I got a broken new battery twice? Or maybe the problem is somewhere else? Did anyone encounter a similar issue?

    Selfhosted @lemmy.world
    shaked_coffee @feddit.it

    Best way to set up cloudflare dynamic DNS in late 2023?

    I’m finally moving my selfhosting experiments from a VPS to a physical machine in my house but, since I don’t have a static IP address, I opted to use the dynamic dns service offered by Cloudflare.

    On their official website I’ve seen suggested ddclient but I haven’t find that much information on which labels should I add to set it up. Therefore, I’ve also found this docker image that seems pretty clean and easy to set up, but the video talking about it was of 3 years ago and I’ve seen that the github repository has been archived last year…

    Which option (not necessarily among the two above) do you prefer to set up your Dynamic DNS with Cloudflare? (I don’t know if this can be an important information to add or not, but the Linux server I’m using is running NixOS)

    Le Alternative @feddit.it
    shaked_coffee @feddit.it

    Quale alternativa a GSuite preferite per progetti collaborativi?

    Ciao amici di LeAlternative, vengo qui da voi in cerca di un parere:

    Sto iniziando assieme a due amici un nuovo progetto che potenzialmente in futuro dovrebbe coinvolgere molte più persone e, siccome per progetti simili in passato si è sempre utilizzata una combo GSuite+Slack che si è sempre rivelata vincente, loro due hanno provveduto subito a creare la prima cartella condivisa su Drive. Tuttavia, siccome appunto si tratta di un progetto nuovo, pensavo che potrebbe essere l’occasione giusta per proporre strumenti liberi alternativi a i soliti che usiamo, anche perché potrebbe essere un buon modo per raggiungere con tali strumenti persone non tech-savy e che non si sono mai interessati della loro privacy online prima d’ora.

    Per quanto riguarda #Slack pensavo di provare un po’ #RocketChat e vedere se può fare al caso nostro, ma la cosa che più mi preme sostituire in realtà è la suite di Google. In particolare, le nostre esigenze sarebbero:

    • archiviazione (stile Google dri
    Selfhosted @lemmy.world
    shaked_coffee @feddit.it

    Selfhosted Trello Alternative?

    My team wanted to start using Trello to better organize the work we have to do and, since I believe it's much easier to start using foss software from the beginning rather then switching to it after years of using something else, I wanted to suggest now a different option, possibly selfhosted.

    I've seen online that there is Focalboard that seems to be what we are looking for but I've seen it recently switched from being backed by mattermost team to be community-driven and I didn't found enough documentation on how to install it with docker on an arm server... Does anyone use it? Is it a good option or there are better ones? And if you're using it, could you help me spinning it up?