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

help-circle



  • I’ve been running OPNsense as a VM in Proxmox for a year on an AliExpress box that doesn’t have ECC. If I might ask, why do you have a requirement for ECC?

    Before this box, I ran a Dell R230 with pfSense but got tired of the noise and 40 watt power draw.

    I’ve had zero issues without ECC, so I’m just curious about your need for it.







  • 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.





  • We are in the middle of rolling out a new SaaS solution at work that just works better in Edge. The amount of outrageous levels of anger and disgust we get from telling them to use Edge is stupid. Even telling users it is built on Chromium, just like Chrome, does nothing to dissuade their unfounded anger.

    With some people it actually comes down to telling them, “if you don’t use Edge, then I guess you need to start looking for another job that only uses Chrome”.

    I just don’t get it.



  • 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
    


  • Concave1142@lemmy.worldtoSelfhosted@lemmy.worldRemote desktop
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    1 year ago

    I use Apache Guacamole with Duo 2FA and LDAP authentication. All of it is self hosted and sitting behind Nginx for SSL. Works great aside from when I’m in the office and they do some security te blocking that I’m too lazy to find a work around for as I rarely go into the office.



  • I would stick with the 7020’s or get something smaller like a Beelink unit that seems to be all over tech YouTube right now.

    The r210 is loud due to it being a 1U server. The upgrade path on the r210ii is very limited. Look up the Dell Technical Guide for the r210ii to get a list of what you can upgrade them to as far as CPU and RAM requirements. It only takes up to 32gb of ECC UDIMM which I always found more expensive than ECC RDIMM. For CPU, the best CPU it can take is only a 4 core, with no hyperthreading.

    Experience: I have run two r210ii’s before moving to three r230’s before finally going big to a r730xd. In the past month, I have migrated away from the r730xd to a Dell 5820T and 3x Dell 3070 SFF PC’s to combat the noise and heat generation in my home office.