Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

Good morning Fedi friends!

Uncategorized
17 6 20

Gli ultimi otto messaggi ricevuti dalla Federazione
  • @_elena @sturmsucht and I also happily using it on my Pixel 8 pro 🤗. I only mention that way they communicate here on Mastodon is strange. Have a nice day everyone 🌞

    read more

  • @Meredith bienvenue Meredith 💙

    read more

  • Reuters: "Per il Pentagono nessun segnale che l'Iran volesse attaccare per primo gli Usa"

    Funzionari del Pentagono hanno ammesso, durante un briefing a porte chiuse al Congresso Usa tenutosi domenica, che non vi erano informazioni di intelligence che suggerissero che l'Iran avesse intenzione di attaccare per primo le forze statunitensi. A scriverlo è Reuters. Le dichiarazioni sembrano indebolire una delle argomentazioni chiave a favore della guerra. (Sky Tg24)

    read more

  • Analisti, con chiusura di Hormuz rischio +130% per prezzi del gas europeo

    I prezzi del gas naturale europeo potrebbero più che raddoppiare se il trasporto attraverso lo Stretto di Hormuz venisse interrotto per un mese, secondo Goldman Sachs. Circa un quinto del gas naturale liquefatto mondiale, proveniente principalmente dal Qatar, transita attraverso questo punto nevralgico. (Sky Tg24)

    read more

  • @sturmsucht @richarddebruin sorry I’m not getting involved in the discussion giving how defensive / aggressive each project can get*.

    My stance (via this GIF). I will happily continue using GrapheneOS on my Pixel 9 for now 🙈

    Edit: I already got in trouble once attempting to defend GrapheneOS and their social media manager thought I was “spreading misinformation” about them!!! So I won’t ever say anything public about them anymore, just use the OS

    read more

  • @peterkotrcka In that specific sentence, it's correct. Here you need sugar (ne ho bisogno - you need the ne as "ho bisogno" needs something to be specified) - in the former sentence, being blue is a part of the moka, so it's not needed.

    read more

  • @richarddebruin

    Still no proof of GrapheneOS avoiding EU vendors.

    Fairphone does a remarkable job when it comes to being repairable and fair trade. But not so much with security (e.g. fast patch delivery or just by enabling kernel build-in security features).

    Every discussion about GrapheneOS is heated to the point of death threads. They talk shit, the others talk shit.

    I also wish they would respect each other, but that is not a proof that GrapheneOS avoids EU vendors.

    @_elena

    read more

  • @stefano Grazie. I also asked the chinese AI and this is a particle used for replacing the "di" (partitive) constructs..

    Example time:

    Ho bisogno di zucchero. => Ne (zucchero) ho bisogno

    read more
Post suggeriti
  • 0 Votes
    38 Posts
    53 Views
    @bougiewonderland thank you! It just made it sound so ominous... as soon as someone writes "conspiracy theorists" whatever follows loses all credibility in my eyes. Especially if it's not backed by actual claims - who are the conspiracy theorists? Links? I find the article - in this section - poorly written
  • 0 Votes
    9 Posts
    25 Views
    @Gina nice!! 👍
  • 0 Votes
    2 Posts
    2 Views
    @Tutanota :%s/Organic Map/Organic Maps/gAfter that, please do:%s/Organic Maps/CoMaps/ghttps://www.comaps.app/
  • 0 Votes
    1 Posts
    7 Views
    We all love media – to some extent at least!Movies, TV Shows and all the moving pictures we can find and consume.So, since we all have movies etc. on our NAS/HDD/SSD/whatever we should be able to play and see everything we have on all our connected devices.But what can we do?Simple, we leverage Jellyfin to present our media to us.In this little howto we will set up Jellyfin in a Jail on FreeBSD.Let’s get right to it!Creating the JailJails can be created in different ways. In this howto however we will use Bastille – which is a excellent tool for creating Jails.This howto will not go into detail of how to set up Bastille. If you need to set up Bastille first, given you have not installed said tool, you can have a look at the quickstart guide:Bastille Quickstart GuideRight, let’s create the Jail first.$ sudo bastille create media 14.3-RELEASE 10.0.23.77/24 vtnet0You of course need to change the IP address and network interface (vtnet0 is probably not what you want!). Also, one can of course change the name of the Jail – I’ve chosen media since that describes the use case well of said Jail.After that our Jail is ready!Jellyfin needs mlock to be enabled to work properly.$ sudo bastille config media set allow.mlock 1But wait a second… How do I access all my media files?There is no access in the Jail to any directory on the host holding all my videos!Right, that is the case indeed!So, what can we do?Simple, we just mount our media directory in the Jail with nullfs!$ sudo bastille mount "media" /home/x/videos/ /videos nullfs ro 0 0This line mount /home/x/videos/ in the Jail under /videos. Also, I mount the directory as readonly – which you can change by sepcifying rw on the command above. Be sure to also select the correct Jail – in my case media.Jail fun with JellyfinWe can now finally enter the jail to further go along with the howto.$ sudo bastille console mediaLet’s first install Jellyfin which is directly accessible from the official package repository.$ pkg$ pkg update -f$ pkg install -y jellyfinThe first command pkg bootstraps the pkg package manager. The second command refreshes the package cache and the last command installs Jellyfin itself.Right, so far so good.But we also need to configure Jellfin (Service) to always start. And, last but not least, we need to start Jellyfin – since it is not running after the installation finished.$ sysrc jellyfin_enable="YES"$ service jellyfin startWe did all that, alright… But how do we know Jellyfin is running?Let’s have a look at the ps and sockstat output.root@media:~ # sockstat -l4USER COMMAND PID FD PROTO LOCAL ADDRESS FOREIGN ADDRESS jellyfin jellyfin 10700 478 udp4 10.0.23.77:7359 *:*jellyfin jellyfin 10700 503 tcp4 10.0.23.77:8096 *:*root@media:~ # ps ax PID TT STAT TIME COMMAND10662 - SsJ 0:00.00 /usr/sbin/syslogd -ss10699 - IsJ 0:00.00 daemon: /usr/local/jellyfin/jellyfin[10700] (daemon)10700 - IJ 0:03.81 /usr/local/jellyfin/jellyfin --datadir /var/db/jellyfin --cachedir /var/cache/jellyfin10706 - SsJ 0:00.00 /usr/sbin/cron -J 60 -s10804 1 IJ 0:00.00 login [pam] (login)10805 1 SJ 0:00.01 -sh (sh)10842 1 R+J 0:00.00 ps axAh yes, Jellyfin is running and listening on port 8096 – which is the designated port for Jellyfin!Jellyfin all the way!Since we established that Jellyfin is running and listening, let’s open our webbrowser of choice and navigate over to the install wizard.$ firefox http://10.0.23.77:8096We are greated with the intital Jellyfin wizard.I will not go into detail on how to set up the wizard. But don’t worry, there is a excellent guide over on the official Jellyfin website.The guide can be found here: Jellyfin Setup Wizard guideBe sure to add your nullfs mounted directory in your library to be able to play said videos and shows.That is all there is to it.Simple, easy and clean. Everything is done in a Jail and isolated. Also, mounting a media directory is easy and straightforward via bastille mount.Final wordsThis little howto just shows how versatile jails are. One can of course tweak the setup further and for example add a reverse proxy (like Nginx) to the mix.The sky is the limit – Tools like bastille are very powerful and flexible!Enjoy!…and as always:Stay Open!