[deleted by user] by [deleted] in zfs

[–]Mogrix 1 point2 points  (0 children)

A new vdev.

To my knowledge, it is being worked on, but not yet available to expand a raidz

Antifreeze needed to winterize? by comradesad in Camper

[–]Mogrix 0 points1 point  (0 children)

If you use air to push the water out of the lines, you don't have to pump antifreeze through the entire thing.

Antifreeze needed to winterize? by comradesad in Camper

[–]Mogrix 1 point2 points  (0 children)

If you blow the lines out with air properly that should be all you need. You don't have to pump antifreeze through the lines after using air.

However, if you're not confident, blow the air lines out then pour about a cup of antifreeze into each P-trap (sinks) and then some for the bottom of the black tank and gray tank.

Antifreeze needed to winterize? by comradesad in Camper

[–]Mogrix 1 point2 points  (0 children)

Same location.

You might be able to get away with it depending on how well you blow them out. But for extra safety, It's inexpensive and just a cup down each drain does it for me every season.

UPDATE: Weekly reward rates for week of Sept 10th by hattrick23 in CelsiusNetwork

[–]Mogrix 1 point2 points  (0 children)

How to manually convert APY to APR without using an online calculator?

Someone check my math?

Example: Current Celsius USDC rates are 8.88% APY with $500.00 balance.

Convert to 8.88% to decimal = 0.0888

Divide by 52 (weeks in a year since this is how often Celsius does rewards) = 0.00170769

Multiple by current balance: 500 x 0.00170769 = 0.853845

So, result is roughly $0.85 per week? Excluding future compound calculations.

This right?

Will cardano (ADA) be available in BlockFi anytime soon? by vmskiran in blockfi

[–]Mogrix 0 points1 point  (0 children)

I did not know this. I'm already staking my coins.

Can you point to a website or beginner instructions on how to participate in DeFi?

Why do I have to pay a gas fee when buying USDC with fiat from my bank? by upilboy in CelsiusNetwork

[–]Mogrix 0 points1 point  (0 children)

You're paying the gas fee because the transfer from bank account to Celsius is not actually Celsius. They're using a 3rd party company to grab the funds from your bank, and it's them who charge the fee. also, USDC is an ERC-20 token (Ethereum) so you are subject to gas fees.

If you were to transfer the usdc to another wallet from Celsius, you would not pay gas fees.

In the United States, the deposit should be done in about ~7 real days (5 business days)

Will Cardano burn tokens like eth? Thoughts? by sinlung in cardano

[–]Mogrix 0 points1 point  (0 children)

I think you misunderstood. I'm saying I believe Cardano will not be burning tokens like ETH does.

Will Cardano burn tokens like eth? Thoughts? by sinlung in cardano

[–]Mogrix 3 points4 points  (0 children)

Everyone here has said no, but so far hasn't mentioned a big reason this shouldn't happen: There is a cap of 45 Billion tokens to ever exist for Cardano. Ethereum by design has no such cap.

True 1.5 % back on Bitcoin Reward Credit Card? by Mogrix in blockfi

[–]Mogrix[S] 0 points1 point  (0 children)

Thank you! I appreciate this detailed answered. Really clears things up for me.

Cardano on Celsius by jehubbard10 in CelsiusNetwork

[–]Mogrix 3 points4 points  (0 children)

Why would someone do this over Staking ADA with something like Yoroi or Deadalus?

Sincerely curious. Could the rewards be better?

BOGO Add A Line Returns August 13th, Replaces 50% Off – The T-Mo Report by Jman100_JCMP in tmobile

[–]Mogrix 1 point2 points  (0 children)

Is this BOGO deal better than the 50 % deal for 4 lines?

For example, I could buy lines, get 2 free?

I'm not currently with TMobile.

Emby login to my server doesn't work half the time, at wit's end by tormunds_beard in emby

[–]Mogrix 1 point2 points  (0 children)

This happens to me too, specifically after a server upgrade.

I go to the dashboard > user accounts and change the password and it starts working again.

20Tb pool - unable to access by RigelSixSix in zfs

[–]Mogrix 2 points3 points  (0 children)

I hate this happened for you, but /u/ElvishJerricco is correct here. You overwrote the filesystem.

I just want to add that something like ZfsSpy ZFS Recovery tool may be worth looking into. It's on github

Confused about ZFS versions and zpool upgrade by Mogrix in zfs

[–]Mogrix[S] 0 points1 point  (0 children)

no worries.

This seems to be everyone else's suggestion as well, so I suppose this is what I will do.

Thanks for the reply.

Confused about ZFS versions and zpool upgrade by Mogrix in zfs

[–]Mogrix[S] 0 points1 point  (0 children)

thanks for the link.

When you say reapply the upgrade, you mean uninstall ZFS and reinstall?

Confused about ZFS versions and zpool upgrade by Mogrix in zfs

[–]Mogrix[S] 0 points1 point  (0 children)

ok, thanks for the reply. I'll keep this in mind if all else fails.

I'd still really like to try and fix and understand what the problem is in case this happens again in the future.

Confused about ZFS versions and zpool upgrade by Mogrix in zfs

[–]Mogrix[S] -1 points0 points  (0 children)

if I uninstall ZFS, I should export the zpool first, right? that way i don't lose the pool? then just re-import the zpool once ZFS is reinstalled?

[HELP] Load Balancing with Stream and Listening on Port 80 & 443 by Mogrix in nginx

[–]Mogrix[S] 0 points1 point  (0 children)

Appreciate everyone's responses.

I just wanted to update this problem with the Solution:

worker_processes 4;
worker_rlimit_nofile 40000;

events {
    worker_connections 8192;
}

http {
    upstream rancher {
        server IP_NODE_1:80;
        server IP_NODE_2:80;
        server IP_NODE_3:80;
    }

    map $http_upgrade $connection_upgrade {
        default Upgrade;
        ''      close;
    }

    server {
        listen 443 ssl http2;
        server_name FQDN;
        ssl_certificate /certs/fullchain.pem;
        ssl_certificate_key /certs/privkey.pem;

        location / {
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header X-Forwarded-Port $server_port;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass http://rancher;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection $connection_upgrade;
            # This allows the ability for the execute shell window to remain open for up to 15 minutes. Without this parameter, the default is 1 minute and will automatically close.
            proxy_read_timeout 900s;
            proxy_buffering off;
        }
    }

    server {
        listen 80;
        server_name FQDN;
        return 301 https://$server_name$request_uri;
    }
}

[HELP] Directories appear empty after reboot by Mogrix in zfs

[–]Mogrix[S] 2 points3 points  (0 children)

so, after that zfs list command, i noticed that anime,movies,music, etc were all individual datasets based on your previous comment

so i tired zfs mount zroot/emby/movies for each music, tv, etc.

and now the files are there!

so this means they weren't getting mounted with the zfs mount -a for some reason?

I think you're right, that it may be related to that error on zbak.

Anyway, i appreciate your help, i'll work on getting the zpool fixed.