Skip Navigation
Jump
Respect for hippos.
  • This reminds me of the old adage when it comes to bears, "If it's brown, lie down. If it's black, fight back. If it's white, goodnight."

    People often expect grizzlies to be the scariest, but they tend to be mostly territorial so playing dead is the best option. Black bears will see people as opportunistic prey if they're hungry enough (most predators don't want to get in a fight with their prey). Polar bears are always looking for food so I'm guessing that they're hangry all the time.

    1
  • Jump
    The Mazda MX-81 Aria Concept from 1981!
  • I thought I liked the look of the Cybertruck when Tesla first debuted the concept. After seeing them irl, they're so fugly, especially when they have dirt on them. I think my favorite description so far is that it looks like a vehicle in a video game that never rendered properly (low-polygon).

    1
  • Jump
    *Permanently Deleted*
  • It clear that you and I will never agree, but fortunately it doesn't matter because your pipe dream will never happen!

    I'll drive my car and hike/bike these mountains every weekend and keep on loving the freedom and peace of mind that I get to live with. 'Cause Murica.

    1
  • Jump
    *Permanently Deleted*
    1. The towns are too small to operate or afford shuttles to the nearly 2000 mountains in my state.
    2. Nearly 2000 mountains, the amount of traffic in any given area is negligible.
    3. There is almost no development and definitely no parking lots. You find an empty spot in the dirt near the trailhead. Usually no more than five or six cars around. Did I mention the part about nearly 2000 mountains to choose from?
    4. Fair point. But we don't need the mountains to be more accessible. We don't need more people out destroying nature. Stay in your cities.
    5. Nobody around here wants to socialize. We're getting the fuck out of society into the serenity and quiet of being miles away from everyone.
    6. Your last point is complete bullshit. Increased accessibility means more people, more people means more pollution of every kind. The tallest mountain here does have a shuttle to the top and the locals don't like going there because it's always packed.
    1
  • I'm very new to Linux but have wanted to set up a media server since the early 2000's so I've finally set up a mini-pc with Mint and I was roughly following this guide that I'd found on Lemmy Complete Guide to Building.... I've had very little luck with the instructions provided in the link but like most of the suggested packages and have successfully gotten OpenSSH, Jellyfin, Docker and Docker Composer installed and working as far as I know. The newest problem that I'm having trouble finding an answer to is while following the instructions on hub.docker.com.

    I have pulled the Docker image but when I go to create and run the container I get a message docker: invalid reference format.

    I believe I have everything entered exactly as I'm supposed to:

    $ sudo docker run --name adguardhome --restart unless-stopped\ > -v /home/justin/server/adguard/workdir:/opt/adguardhome/work\ > -v /home/justin/server/adguard/confdir:/opt/adguardhome/conf\ > -p 53:53/tcp -p 53:53/udp\ > -p 67:67/udp -p 68:68/udp\ > -p 80:80/tcp -p 443:443/tcp -p 443:443/udp -p 3000:3000/tcp\ > -p 853:853/tcp\ > -p 784:784/udp -p 853:853/udp -p 8853:8853/udp\ > -p 5443:5443/tcp -p 5443:5443/udp\ > -d adguard/adguardhome

    Does anyone have any advice for me?

    1

    I'm new to Linux and new to Docker but I'm setting up a media server and was advised to setup adguardhome.

    I'm following the instructions on the hub.docker.com site to create and run the container, however when I enter the following code:

    sudo docker run --name adguardhome --restart unless-stopped\ > -v /home/justin/server/adguard/workdir:/opt/adguardhome/work\ > -v /home/justin/server/adguard/confdir:/opt/adguardhome/conf\ > -p 53:53/tcp -p 53:53/udp\ > -p 67:67/udp -p 68:68/udp\ > -p 80:80/tcp -p 443:443/tcp -p 443:443/udp -p 3000:3000/tcp\ > -p 853:853/tcp\ > -p 784:784/udp -p 853:853/udp -p 8853:8853/udp\ > -p 5443:5443/tcp -p 5443:5443/udp\ > -d adguard/adguardhome docker: invalid reference format. See 'docker run --help'.

    It always tells me invalid reference format. Can someone explain what I'm doing wrong b/c I'm guessing it's probably something stupid.

    0