Everything posted by FadedSun
-
Intel Arc support
I found this. https://www.reddit.com/r/ASRock/comments/1hf8r5o/comment/m2da9xa/?share_id=IGiSW9e3eiRjBDZGI56X6&utm_medium=android_app&utm_name=androidcss&utm_source=share&utm_term=1 The drivers for that card say I'm not sure if that post is implying you can use those drivers in 6.12 or if you should use one of the other drivers.
-
Intel 15th Gen 'Arrow Lake' Thoughts?
Yeah I mention in my original post that I've heard it wouldn't work with ZFS. I should probably add that to my private messages with the link as a reminder. I'm sorry it messed up your docker, I haven't heard of anyone having that issue before, or any permanent problems for that matter. Everyone else that had something not working was just able to put the original files back and things were back to normal. Thanks for the reminders to others though to be cautious with unofficial stuff.
-
Intel 15th Gen 'Arrow Lake' Thoughts?
I'm really not sure, to be honest this is the first time I've even paid attention to what Unraid is running that close. My old hardware was a 4th gen I7, so I had no issues with needing bleeding edge support.
-
Intel 15th Gen 'Arrow Lake' Thoughts?
Message sent with link to files.
-
Intel Arc support
Message Sent with link to files.
-
Intel Arc support
I'll be honest, I'm not sure. I've heard that ZFS support lagging behind on kernels is likely why Unraid 7 stuck with 6.6. I'm just passing along warnings I've read while researching getting my iGPU working, I don't want to break your unraid with my build. Maybe someone else can chime in with more info. I can send you the files to try if you'd like, but I'd make extra sure you have backups; particularly of the cache drive. When I had a failed kernel build I just had to put the old kernel back to fix my Unraid, but I can't promise all failure modes will be that simple.
-
Intel Arc support
I have my Ultra 7 265K iGPU working with the Unraid 7 release with a custom kernel 6.12.9. I assume this would work with the Arc GPUs as well. It transcodes with my Jellyfin docker on stable, but need the beta version of Emby. I used this guide https://gitlab.com/stefan99353/unraid-custom-kernel/-/blob/main/README.md but used kernel 6.12.9 and Unraid 7 release. It took a bit to get everything to compile, but it all seems to be working. If anyone wants the updated files to try let me know. NO WARRANTY or promises of course and I believe you can't use it if you use ZFS. Now that it's compiled it's pretty easy to try, just drop the files on your boot USB drive replacing what's there and boot up. Save the original files first and you can revert back if there's an issue.
-
Intel 15th Gen 'Arrow Lake' Thoughts?
I have my Ultra 7 265K iGPU working with the Unraid 7 release with a custom kernel 6.12.9. It transcodes with my Jellyfin docker on stable, but need the beta version of Emby. I used this guide https://gitlab.com/stefan99353/unraid-custom-kernel/-/blob/main/README.md but used kernel 6.12.9 and Unraid 7 release. It took a bit to get everything to compile, but it all seems to be working. If anyone wants the updated files to try let me know. NO WARRANTY or promises of course and I believe you can't use it if you use ZFS. Now that it's compiled it's pretty easy to try, just drop the files on your boot USB drive replacing what's there and boot up. Save the original files first and you can revert back if there's an issue.
-
[Support] Machinaris - Chia cryptocurrency farming + Plotman plotting + Unraid WebUI
I ended up adding the pool on the Windows Chia client. The wallet change synced through to Machinaris, so I think I'm good to go now
-
[Support] Machinaris - Chia cryptocurrency farming + Plotman plotting + Unraid WebUI
Yup my wallet is like yours on the self pool. Still fails to join the real pool, even after hours. Either there's something wrong with the plotnft command (it has a slightly different set of arguments than the self pool), or is it possible the url isn't working correctly right now? Either way I'll just keep self mining until I figure this out. I'm generally pretty tech literate, but this Chia is streaching my knowledge a bit.
-
[Support] Machinaris - Chia cryptocurrency farming + Plotman plotting + Unraid WebUI
-
[Support] Machinaris - Chia cryptocurrency farming + Plotman plotting + Unraid WebUI
Thanks for the reply. I have 2 Wallet IDs since the Machinaris update, one says chia, the other flax. The both say Wallet ID 1, is this an issue?
-
[Support] Machinaris - Chia cryptocurrency farming + Plotman plotting + Unraid WebUI
Can anyone explain this to me when trying to join a pool? chia plotnft - log output /chia-blockchain/venv/bin/chia plotnft create -y -u https://northamerica.ecochia.io -s pool --> Executed at: 20210710-093810 Exception from 'wallet' Incorrect version: 1, should be 1 **********************************************************************
-
[Support] Machinaris - Chia cryptocurrency farming + Plotman plotting + Unraid WebUI
Edit: nevermind I found it under workers tab and pruned the unresponsive workers. After the update I'm showing 3 farmers and 3x the plots. Any ideas on this? 2 of the farmer logs appear empty.
-
[Support] Linuxserver.io - MariaDB
I have phpMyAdmin running in a separate docker. It can connect to the MariaDB, but I can't create (or view users). This is a fresh install. I've tried a lot of suggestions from google searches but honestly I'm pretty new at this and at a loss. I've uninstalled the docker and deleted it's app directory a few times to make sure I haven't made anything worse. Attached image is logged in as root.
-
Dynamix WireGuard VPN
I haven't read the last few pages so maybe this work around to access docker containers has already been posted. I added the following to to my iptables on my router. iptables -t nat -A PREROUTING -d 192.168.20.13 -j DNAT --to 192.168.2.13 iptables -t nat -A POSTROUTING -s 192.168.2.13 -d 10.253.0.0/24 -j SNAT --to 192.168.20.13 192.168.2.13 in this case is my actual pihole docker. 192.168.20.13 is a fake private network IP address. You can choose any private ip address that's not actually used on your network. I just chose to turn 2 to 20 for simplicity. then set your peer dns in wireguard to the fake ip address What happens: 1. when a request comes in on the fake address unraid doesn't know where to route it so sends it to your default gateway 2. your router sees the fake destination and changes it to your real pihole and routes it 3. pihole responds to the default gateway because it doesn't know where 10.253.0.0/24 is 4. the router sees the POSTROUTING rule and changes the source IP from pihole to the fake IP so your device gets the response from the same fake IP it requested it from. This also means if you want to go to the admin interface it's at the fake ip 192.168.20.13/admin in my case. This should work for all dockers, you just have to add entries in iptables for each. Now that I think of it, i should have added -s 10.253.0.0/24 to the PREROUTING so it was only rerouting for the wireguard ips, but that shouldn't hurt anything.