• 0 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: August 17th, 2023

help-circle


  • This happened on a decent spec’d HP laptop I bought my mom a couple years back. No easy way to repair without ordering new hinges that were impossible to find and the PC repair shop quoted over $500 repair on a $700 laptop when it was new.

    Now she just leaves the laptop open in the 180 degree position with the laptop being held into a stand & bungie cord strapped to it to prevent it from falling foward. It is now a desktop PC and no longer a laptop.






  • I tried a couple of LDAP solutions out there; Windows Server AD, Open LDAP, Samba4 in Debian, TurnKey Solutions LDAP before finally settling on Zentyal. It has a nice to use web GUI and can work in conjunction with AD RSAT tools that I have installed in a throwaway Windows VM for when I need more granular controls the web GUI can’t do.

    All my Debian VM’s and laptops connect to Zentyal AD via SSSD.


  • I just cannot find a use case for Nextcloud. I have gone as far as installing it and sync’ing it with my LDAP for user auth and sync pictures from my phone to my NAS. All the other features are just a big ole m’eh for me.

    This has just been my experience, so maybe I’m missing something that would just make it all click and make me not live without it. So far though, I’ve spun up and spun down an instance 3 times and never missed it afterwards.











  • Here you go, this is my docker compose. You can modify the pieces as you see fit.

    version: ‘3’ services:

    Bookstack

    bookstack:
        image: lscr.io/linuxserver/bookstack
        container_name: bookstack
        environment:
            - PUID=${PUID}
            - PGID=${PGID}
            - APP_URL=
            - DB_HOST=bookstack_db
            - DB_USER=bookstack
            - DB_PASSWORD=${BS_DB_PASS}
            - DB_DATABASE=bookstackapp
        volumes:
            - ${DATA_DIR}/bookstack:/config
        ports:
            - 6875:80
        restart: unless-stopped
        depends_on:
            - bookstack_db
    bookstack_db:
        image: lscr.io/linuxserver/mariadb
        container_name: bookstack_db
        environment:
            - PUID=${PUID}
            - PGID=${PGID}
            - MYSQL_ROOT_PASSWORD=${BS_DB_PASS}
            - TZ=${TIMEZONE}
            - MYSQL_DATABASE=bookstackapp
            - MYSQL_USER=bookstack
            - MYSQL_PASSWORD=${BS_DB_PASS}
        volumes:
            - ${DATA_DIR}/bookstack/mariadb:/config
        restart: unless-stopped