lusitopp

Members
  • Posts

    87
  • Joined

  • Last visited

Everything posted by lusitopp

  1. Hi, In my server i have two GPUs, the primary is for unraid and then i have a nvida gtx 1070 for VMs. The passthrough works perfect with my win11 VM but now i'm trying to passthrough the same GPU to a Linux VM just to try and learn. I have tried different BIOS, i440fx, q35, i have tried a rom from techpowerup, i have tried to dump my own vbios.. whatever i test, the only thing i manage to get is a black screen, and sometimes my monitor doesn't even "wake up"... I have rebooted the server between tries, i have successfully started my windows VM with passthorugh betweem tries.. but as soon as i start my new linux VM nothing happens., suggestions?
  2. Hi, I have a problem that I have had for 1-2 weeks now, every morning I cannot access my stuff that is behind SWAG. I'm not sure if this is a unraid or a SWAG problem but after a simple restart of SWAG I can access all my stuff again. In which logs shall I begin the troubleshooting?
  3. Does anyone know if face recognition works in v25 with this docker? not sure if any extra is needed to activate it or if it works out of the box.
  4. Ok, maybe a stupid question and maybe it doesn't belong here, but is it prefered to switch from macvlan to ipvlan for us that use macvlan still? I have no problems that I know of using macvlan, but if ipvlan is the new defualt it should be better, right?
  5. Just an update regarding this. After running several different tests (I can specify them later if further troubleshooting is necessary). I have ran several different Memtest combinations now and it seems that 1 of 4 modules is broken. So I ran a test with 1 kit (two modules) that passed, then I enabled XMP and then ran the test again and that failed. So I will do some more memtest and when I have two stable modules (with/without XMP) I will test my problems in Unraid again.
  6. I believe that 6.10-RC8 was very stable for me. On thing that I changed after upgrading from RC to Stable was that I changed from OVMF to OVMF - TMP for my gaming VM. I could revert back to OVMF before downgrading just to see if my VM issues is solved. But, the problems I have with downloading and unpack .rar files - (Packed data checksum error in lets.say.it.is.a.linux.iso. The volume is corrupt Checksum error in lets.say.it.is.a.linux.iso. The file is corrupt) is on a different VM does not have TMP. So there it should be another problem. What I changed there was that i went from i440fx-3.1 to i440fx-6.2. Should I try to revert machine type for one VM and BIOS on the other before reverting to RC8?
  7. just now my main VM blue screened. tower-diagnostics-20220610-0733.zip
  8. So, once again my computer came to a complete freeze, I was using my gaming VM when everything just froze. I tried to ssh from a laptop but I was completely locked out, again. When I was using 6.10-RC releases I had no problems with this, they started as soon as I upgraded to stable, and continued with 6.10.1 and still continues with 6.10.2. Yesterday when everything froze I was browsing one of the file shares on the server. Now my memory is bad but I do believe that exactly this happened a few days earlier, that I was browsing a file share or watched some media from that file share. The next problem I have is also related to file shares I believe, I have another VM where I download some shit. I download to a file share and then when I shall unpack the files a lot of the files I have downloaded is corrupted, I have never ever had this problem before unraid 6.10-stable. Packed data checksum error in lets.say.it.is.a.linux.iso. The volume is corrupt Checksum error in lets.say.it.is.a.linux.iso. The file is corrupt tower-diagnostics-20220607-0705.zip
  9. Rebooted and now my drives are there. But I don't know if I would called it "solved". It was only 4 days ago I did the last reboot and looking in the bug reports there seems to be one more with the same behavior, that the Main tab is empty. https://forums.unraid.net/bug-reports/stable-releases/dashboard-crash-on-6101-gui-not-working-anymore-r1934/
  10. Hi, after upgrading from RC8 -> 6.10 -> 6.10.1 I have seen some issues here and there. Once my server got completely inaccessible, it was like the network died, I couldn´t access the server in anyway nor any VMs or dockers. I had to force the server down with the power button. The WebUI is really slow in some scenarios, like accessing the VMs tab from my iPhone, tapping on VMs and nothing happens, nothing happens, nothing happens, my patience runs out and I tap on something else and then back to VMs and if I´m lucky the tab loads. Doing the same from my computer that tabs usually loads instantly. Now for the issue I´m having now, the Main tab is not showing any of my drives. I have tried from two different computers and also from my phone. I have cleared cookies but that doesn´t help. My drives showed up in the Main tab yesterday, but not today. tower-diagnostics-20220527-1016.zip
  11. Hi, I have updated to 6.10 stable and yesterday I installed a new Win11 VM. In that VM I enabled Memory Integrity (Core islolation) and instantly the VM consumes ALOT of resources. I have ryzen 7 3900x with 4+4 cpus allocated, just starting Edge or Firefox and have empty tabs consumes 50% of the CPU. I installed openvpn client on that machine and doing a speed test gives me a result of 20% of my maximum bandwidth while alot of CPU is used. I use many win11 machines with Memory Integrity in my work and I have never seen this scenario on them. Something seems quite broken when using win11 security features in a VM on Unraid. tower-diagnostics-20220519-1004.zip
  12. I was wild and crazy, first i updated uefi fimware and then from rc8 -> stable.. no issues yet 😃
  13. Just upgraded from rc5, no problems so far. Even wireguard works good.
  14. I might be stupid, but how do I schedule the script to a time of my liking? I thought I would be able to choose a start time after selecting Scheduled Daily.
  15. confirmed that it need to respond to ping, and it doesn't do that. so this can't be solved with UD. Need to solve it somehow else.
  16. Thx for the answer, it doesn't respond to ping, so i guess i need to solve this another way
  17. Hi, I'm trying to mount a Azure File Share but it does not work. I tried to mount it in a linux VM and that worked great, but following UD´s next next finish just say that the share is offline. this is the mount string I used in the VM (some data generalized). Any suggestions? sudo mkdir /mnt/test if [ ! -d "/etc/smbcredentials" ]; then sudo mkdir /etc/smbcredentials fi if [ ! -f "/etc/smbcredentials/mystorageaccount.cred" ]; then sudo bash -c 'echo "username=mystorageaccount." >> /etc/smbcredentials/mystorageaccount.cred' sudo bash -c 'echo "password=supergreatpassword" >> /etc/smbcredentials/mystorageaccount.cred' fi sudo chmod 600 /etc/smbcredentials/mystorageaccount..cred sudo bash -c 'echo "//mystorageaccount.file.core.windows.net/test /mnt/test cifs nofail,vers=3.0,credentials=/etc/smbcredentials/mystorageaccount..cred,dir_mode=0777,file_mode=0777,serverino" >> /etc/fstab' sudo mount -t cifs //mystorageaccount.file.core.windows.net/test /mnt/test -o vers=3.0,credentials=/etc/smbcredentials/mystorageaccount.cred,dir_mode=0777,file_mode=0777,serverino
  18. Ok, I will check over there to get help with this within the plugin, but, if the plugin can't handle this i still need help with how to configure this in Unraid, so no suggestions about how to do that?
  19. That was the first thing I tried, didn't get it to work.. it only says smb is offline and the mount button is greyed out.
  20. Hi, First some quick background so you understand what I want to accomplish and why. I don't have any backup for my important things on Unraid. I do have $150 monthly credits on Azure, so backup for free 😃 I do know that rclone exists as a docker, but rclone only supports Azure Blob and not Azure File Share, with Blob storage I don't get backup and snapshots as I get with Azure File Shares. If I use Blob storage and something happens on my unraid (files are corrupted or deleted), the next rclone sync will corrupt or delete the files on Blob Storage. So if I create a File Share I can mount that share in a Linux machine, I have already tested this on a VM. So what I want to do is to mount my Azure File Share in Unraid and then use rsync to mirror some folders to Azure. This is what I did on my test VM (generalized strings in the example). sudo mkdir /mnt/test if [ ! -d "/etc/smbcredentials" ]; then sudo mkdir /etc/smbcredentials fi if [ ! -f "/etc/smbcredentials/mystorageaccount.cred" ]; then sudo bash -c 'echo "username=mystorageaccount." >> /etc/smbcredentials/mystorageaccount..cred' sudo bash -c 'echo "password=supergreatpassword" >> /etc/smbcredentials/mystorageaccount..cred' fi sudo chmod 600 /etc/smbcredentials/mystorageaccount..cred sudo bash -c 'echo "//mystorageaccount.file.core.windows.net/test /mnt/test cifs nofail,vers=3.0,credentials=/etc/smbcredentials/mystorageaccount..cred,dir_mode=0777,file_mode=0777,serverino" >> /etc/fstab' sudo mount -t cifs //mystorageaccount..file.core.windows.net/test /mnt/test -o vers=3.0,credentials=/etc/smbcredentials/mystorageaccount..cred,dir_mode=0777,file_mode=0777,serverino I´m quite new to Linux so my main questions is, how to I translate this to be working on unraid? Where shall I put my .cred file so it persists after reboot? Where shall I put the mount string so it persists after reboot and auto mount? Is there anything else I shall think about or do you have any concerns regarding this setup?
  21. Hi, the docker Adminer updates really often, I have updated it 3 times today.. is something wrong or is new version released this often? it is not the first time I have updated it several times on a single day.
  22. Not sure if this have been mentioned before. When going from 6.9.2 to 6.10-rc2 I could no longer open the VMS tab on my iPhone (v15.3.1) without long press and "open in new tab". With 6.10-rc4 I can no longer access the tab from my phone at all. I have tried both with Safari and DuckDuckGo browser. Just pressing the VMS results in nothing, long press and "open in new tab" just results in a new tab with the "Main" page. This is really annoying since I no longer have a good way to start my main VM without booting up another computer and then start my VM.
  23. Not really a bug report, but I installed a new Win11 VM. The installation completed without issues but my VM says: "Standard hardware security not supported". Secure Boot is off but it is a requirement to have it on. Guessing we will get the new shiny watermark from MS in the future, https://www.techspot.com/news/93862-unsupported-windows-11-devices-get-desktop-watermark-after.html
  24. Thanks for your response! Have deleted the files now.
  25. Hi, My Appdata share says that "some or all files unprotected". My share settings was prefer: cache. I disabled docker and changed this to cache only and then ran the mover. But it still says "some or all files unprotected". After looking into the appdata folder on disk2 and appdata folder on cache drive i can see that several files exists on both places. Is there any way to be sure about which files that are in use? i would like to just delete/rename the appdata folder on disk2 but im afraid that i will break something. Looking at last modified i see that many files on disk2 has a more recent date then the files on the cache drive.