Jump to content

BobPhoenix

Members
  • Posts

    3,031
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by BobPhoenix

  1. Agreed. Better description of the included tools and where they are used. Where are nerds used?
  2. You have not loaded the above correctly. "07" is the bus not the slot and you need to load all of them not just one as saarg said. So replace: <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> </source> </hostdev> With this: <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x07' slot='0x00' function='0x0'/> </source> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x07' slot='0x00' function='0x1'/> </source> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x07' slot='0x00' function='0x2'/> </source> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x07' slot='0x00' function='0x3'/> </source> </hostdev>
  3. They just haven't tested any so they say they don't support them. If you look at supported drives you will probably find lots of drives that are NOT on the list and would get the same response for them.
  4. The way I did it for my WHSv1 VM was to create a floppy image of a driver disk for Win2003 drivers and then use the following XML added to the VMs XML to install the drivers while I installed WHSv1. <disk type='file' device='floppy'> <source file='/mnt/cache/VMs/ISOs/whs-viostor.vfd'/> <target dev='fda'/> </disk> I did have to fix the floppy image in virtio-win-0.1.96.iso to install with. The existing image was broken. Hopefully newer ISOs have the floppy images fixed.
  5. I might get one myself. It looks like it should work fine once flashed to IT mode. Based on comparison here: http://www.servethehome.com/current-lsi-hba-controller-features-compared/ The only thing that might turn me off of them is that they come from China and I could swear I saw posts of counterfeit M1015s coming out of China on eBay. I read a lot of the feedback on that seller, no one has complained or mentioned about any counterfeits. Maybe worth checking out. How would you know if it's a counterfeit? Note This Is From Memory so may not be reliable. What I remember in the posts I saw was problems with drives dropping or other controller errors that were fixed by switching the drives to alternate controllers. Other than that I don't think there was a way. But as I said that is from memory and the whole issue may just be from my imagination and not be a fact unless someone else can remember the same posts and maybe provide a link. Those look like a good deal to me and as I said I may try to get one myself.
  6. I might get one myself. It looks like it should work fine once flashed to IT mode. Based on comparison here: http://www.servethehome.com/current-lsi-hba-controller-features-compared/ The only thing that might turn me off of them is that they come from China and I could swear I saw posts of counterfeit M1015s coming out of China on eBay.
  7. The reason I don't worry about bit rot is I have backups of important files. The others are media files and it is unlikely I would notice a single bit change when playing it back. At most it might give a tiny glitch and my recorded media has more glitches than would EVER be caused by bit rot when they are brand new. If I start with pristine media files like DVD or BluRay rips where errors are even less likely - I can just re-rip the media again if it would become unplayable or a glitch in playback becomes noticeable in them.
  8. The only time it sould be needed on unRAID is if you wanted to run a command as the user nobody so that it is done the same way as across the network. For instance if you wanted to run MC as the user nobody: "sudo -u nobody mc". Awesome. Learn something new everyday. I always thought of sudo as raising permissions not lowering them or running as another user Correct. It would be different if unRAID ever addresses the security concerns, but in the mean time you can even surf the net using the highest permissions possible (root) in the unraid-gui of 6.2 series. Maybe when they no longer phone home on the betas they will get rid of internet access from the unRAID GUI? Tbh I don't see that. Maybe not running as root perhaps. The problem is that people have the misunderstanding that one computer can take the place of all of them. All well and good and it is a true statement. Until you get to the point that there's a problem and none of your vms work because of trouble with the server. Now you're in the situation of how do I access the gui when I don't own a phone, tablet, or other computer (and its happened at least once here) hence Firefox being included. Sent from my LG-D852 using Tapatalk They can't stop browsing IP addresses outside the network and leave the GUI running as Root?
  9. The only time it sould be needed on unRAID is if you wanted to run a command as the user nobody so that it is done the same way as across the network. For instance if you wanted to run MC as the user nobody: "sudo -u nobody mc". Awesome. Learn something new everyday. I always thought of sudo as raising permissions not lowering them or running as another user Correct. It would be different if unRAID ever addresses the security concerns, but in the mean time you can even surf the net using the highest permissions possible (root) in the unraid-gui of 6.2 series. Maybe when they no longer phone home on the betas they will get rid of internet access from the unRAID GUI?
  10. The only time it sould be needed on unRAID is if you wanted to run a command as the user nobody so that it is done the same way as across the network. For instance if you wanted to run MC as the user nobody: "sudo -u nobody mc".
  11. I've had that before. This is just speculation but what I think happens: The drive could have sectors that didn't meet specs after the drive electronics were installed so some of the spare sectors were remapped and thereby slowing the drive slightly as it has to seek to the spare sectors instead of the original ones.
  12. With out the bios you get a faster boot. I always flash the bios too. I want to see it list the drives connected when it boots. I don't mind the longer boot time.
  13. If you are trying to move files off and then format the drive why not just COPY the files instead and then format it like you intended?
  14. First off you have to pass through all three of these devices it is really only 1 device but it shows up as three. Why I hated USB2.0 and VMWare. It had a 6 device limit on pass through on ESXi 5.0 and a USB controller like this used up 3 of the 6 allowed devices. I would put the following into your VM's XML and remove everything else you changed trying to add this controller. <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x08' slot='0x00' function='0x0'/> </source> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x08' slot='0x00' function='0x1'/> </source> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x08' slot='0x00' function='0x2'/> </source> </hostdev>
  15. Any idea when stable 6.2 will be resealed? Thanks Some time in the coming YEARS!
  16. I've had several drives fail in the 2nd and 3rd pass. But your percentages are probably close.
  17. Actually that is not true. Attached is a graphic of a mount on unRAID to the C$ share that Windows automatically creates. But I can certainly create a windows share without the $ in the name. As I said, doesn't work for me. Username and password triple checked. mount -t cifs -o rw,nounix,iocharset=utf8,_netdev,file_mode=0777,dir_mode=0777,username=***,password=********* '//HANDYMAN/C$' '/mnt/disks/DiskC' mount error(13): Permission denied Refer to the mount.cifs( manual page (e.g. man mount.cifs) I don't know how it works for you. I can mount shares without $ in the names. Bottom line is that with this situation and the fact that the $ character is a reserved character in php, it is not worth the effort to pursue it further since you have an alternative. It might have worked for me because I left off the "rw,nounix,iocharset=utf8,_netdev,file_mode=0777,dir_mode=0777" from my mount command. I will see if I get the same error as you got when I put it in and then see what is actually causing it. NOTE I am only curious here. I will just not put the $ in the shares on Windows when I use it. Just wanted to let you know about it and putting in a check and not allowing a $ should be sufficient for me and anybody else that tries it. I will let you know if I determine why I can mount and you cannot as in which mount parameter is causing the problem. Found it I think. For me I get an error if I use iocharset=utf8 in the mount command but when I removed that the mount succeeded. Edit:Of course the error I was getting was different then yours: mount error(79): Can not access a needed shared library. So I wonder do you have UAC turned on or off on your windows box? Mine is turned off. Edit2:well I found out I was WRONG I made a typo when I tried it with the iocharset. I can mount mine with your command specifically I used this: mount -t cifs -o rw,nounix,iocharset=utf8,file_mode=0777,dir_mode=0777,username=sagetv,password=SageTV //HDServer/C$ /mnt/disks/DriveC So I wonder if it is UAC related on the Windows box will try turning it on and see if that makes a difference. The user SageTV I used is an administrator on the box too so I will try a regular user next as well as the UAC turned on. Edit3: Yep when I turned on UAC I get the same as you a "13 permission denied." So mystery solved. Normal windows setup with UAC active prevents connecting to $ shares on a Windows box. Doubt I will find a way to actually connect to one either. Anyway had to find out what was causing the difference.
  18. Actually that is not true. Attached is a graphic of a mount on unRAID to the C$ share that Windows automatically creates. But I can certainly create a windows share without the $ in the name. As I said, doesn't work for me. Username and password triple checked. mount -t cifs -o rw,nounix,iocharset=utf8,_netdev,file_mode=0777,dir_mode=0777,username=***,password=********* '//HANDYMAN/C$' '/mnt/disks/DiskC' mount error(13): Permission denied Refer to the mount.cifs( manual page (e.g. man mount.cifs) I don't know how it works for you. I can mount shares without $ in the names. Bottom line is that with this situation and the fact that the $ character is a reserved character in php, it is not worth the effort to pursue it further since you have an alternative. It might have worked for me because I left off the "rw,nounix,iocharset=utf8,_netdev,file_mode=0777,dir_mode=0777" from my mount command. I will see if I get the same error as you got when I put it in and then see what is actually causing it. NOTE I am only curious here. I will just not put the $ in the shares on Windows when I use it. Just wanted to let you know about it and putting in a check and not allowing a $ should be sufficient for me and anybody else that tries it. I will let you know if I determine why I can mount and you cannot as in which mount parameter is causing the problem.
  19. Actually that is not true. Attached is a graphic of a mount on unRAID to the C$ share that Windows automatically creates. But I can certainly create a windows share without the $ in the name.
  20. So the share with the $ was created on a Windows computer? I know why that is happening and I'll see if I can reproduce. EDIT: Windows doesn't let me share a folder with a $ in the name. How did you set up a smb share with a $ in the name? It is easy to share in Windows 7 just go to advanced sharing and when the default name for the share comes up or if you type in your own name then add the $ to the end and hit apply. That is how you create shares that are hidden from windows machines as far as browsing the network anyway. The dollar sign has to be at the END of the share name only I don't think you are allowed to create a share with a $ anywhere else but the end of the share name. I just shared Input folder on my laptop D drive. I added the dollar sign to the end of the share name and hit apply. This is the PC I am typing this post from. I can't browse the share but I can bring up the share in a Windows Explorer window if I type the share name.
  21. Found a problem not sure if it is fixable or not. When I try to map a SMB share that has a dollar sign in it "Drives$" for instance or the Windows created "ADMIN$" I get the following showing up in the GUI. NOTE the error is over printing the headers: Warning: Invalid argument supplied for foreach() in /usr/local/emhttp/plugins/unassigned.devices/include/lib.php on line 751 Device Source Mount point Remove Size Used I am using unRAID 6.1.9 and 2016.04.16a of unassigned devices. Attached is the diagnostics if you want to look at them. Last operation I did was to add "Drives$" as a share. unraidserver-diagnostics-20160417-0845.zip
  22. "this controller" could stand for any controller mentioned in this thread so which one ARE you talking about? If "this controller" is LSI SAS2008 based or newer then it would be many times greater then 10TBs maximum drive size I've seen.
  23. unRAID as a VM? Seems likely given the subforum it's in and that it's referring to ESXI. Sent from my LG-H815 using Tapatalk Yep. Been running unRAID as a VM on ESXi since I was using 5.0 betas. Haven't tried the unRAID beta's yet but I wouldn't expect any problems as long as the VMWare tools have been compiled for the linux kernel.
×
×
  • Create New...