Jump to content

steini84

Community Developer
  • Posts

    435
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by steini84

  1. Of the top of my mind you should do: zpool export pool01 zfs set mountpoint=/mnt/zfs pool01 zpool import pool01 If you run into any problems (like pool busy) pm me and I will get back to you when I'm on a computer tomorrow. Sent from my iPhone using Tapatalk
  2. It's already uploaded - just press "check for updates" in the unRAID plugin manager
  3. First of all thanks I did not even realize that 6.2.2 was out, i thought regjc01 had updated to the new 6.3 RC - I have to setup notifications when a new release is out! No worries I can compile it now and upload later tonight. About your napp-ip VM.. if you dont have a newer version of zfs that is in zfs on linux you should be able to import it no problem. The plugin tries to mount all pools on startup. Try that and if that does not work you can try zpool import -a or zpool import [poolname]
  4. I have updated the plugin for 6.3 rc3 (kernel 4.8.4) But compiling is pretty easy. Here is a rough guide for building the packages: First off download this awesome script from gfjardim wget https://gist.githubusercontent.com/gfjardim/c18d782c3e9aa30837ff/raw/224264b305a56f85f08112a4ca16e3d59d45d6be/build.sh Change this line from: LINK="https://www.kernel.org/pub/linux/kernel/v3.x/linux-${KERNEL}.tar.xz" to LINK="https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL}.tar.xz using: nano build.sh then make it executable chmod +x build.sh run it with ./build.sh answer 1, 2 & 3 with Y answer 3.1, 3.2 with N answer 3.3 with Y answer 4 and 6 with N then make the modules that are needed: cd kernel make modules Then we need to build some dependencies #Libuuid wget "http://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Flibuuid%2F&ts=1453068148&use_mirror=skylink" tar -xvf libuuid* cd libuuid-1.0.3 ./configure make make install #Zlib wget http://zlib.net/zlib-1.2.8.tar.gz tar -xvf zlib-1.2.8.tar.gz cd zlib-1.2.8 ./configure make make install Then we build zfs and spl First download the latest zfs and spl from zfsonlinux.org wget https://github.com/zfsonlinux/zfs/releases/download/zfs-0.6.5.8/spl-0.6.5.8.tar.gz tar -xvf spl-0.6.5.8.tar.gz cd spl-0.6.5.8 ./configure --prefix=/usr make make install DESTDIR=$(pwd)/PACKAGE cd $(pwd)/PACKAGE makepkg -l y -c n ../spl.tgz installpkg ../spl.tgz load the module depmod modprobe spl Same for zfs wget https://github.com/zfsonlinux/zfs/releases/download/zfs-0.6.5.8/zfs-0.6.5.8.tar.gz tar -xvf zfs-0.6.5.8.tar.gz cd zfs-0.6.5.8 ./configure --prefix=/usr make make install DESTDIR=$(pwd)/PACKAGE cd $(pwd)/PACKAGE makepkg -l y -c n ../zfs.tgz installpkg ../zfs.tgz depmod modprobe zfs
  5. No pain at allt. Just had a baby so I have not been keeping up with the releases. Thanks for the heads up, will compile in a few hours [emoji482] Sent from my iPhone using Tapatalk
  6. Updated to new zfs/spl to 0.6.5.8 and built for 6.2 final
  7. It was early. I meant 6.2 [emoji28] Sent from my iPhone using Tapatalk
  8. There are really good performance tests over at http://www.phoronix.com/ but for me it's more about stability and usability (snapshots replication etc that fits my workflow) When unRaid is updated you have to wait for a plugin update. I try to update the plugin as fast as I can, but sometimes it can be a couple of days. If you accidentally update the worst thing that happens is that your Zfs pool won't be imported and the data the won't be accessible until a plugin update is pushed. In my setup that would mean all my dockers and vms. I wanted to wait for 6.1 final before writing a complete how to for Zfs on unRaid, but if there was any interest I could get on that right away. Sent from my iPhone using Tapatalk
  9. Same segfaults here using this docker. Tested celedhrim/kodi-server on a arch server and that works fine. Hope you can figure this one out Sent from my iPhone using Tapatalk
  10. Updated for unRAIDServer-6.2.0-rc2
  11. Updated for unRAIDServer-6.2.0-rc1-x86_64
  12. Updated for unRAIDServer-6.2.0-beta22
  13. In my experience pfsense was stable as a rock. It just added a lot of headache when the hypervisor needed to be restarted or had problems.
  14. Ran it for a couple of years under esxi(unraid as a guest). Was pretty good unless I had to reboot the host. Also pretty fine under proxmox and later unRaid but after being in another country and locking myself out of the network (after unraid killed my vm because of a memory shortage) I decided to get a seperate box. It's been turned on twice: when I got it and when I moved. Really happy to be free of that hassle
  15. Awesome. Thanks for that! I updated the plugin based on your code. The plugin will continue to work for the later betas/rc while the kernel does not change from 4.4.4
  16. Updated for 6.2.0-beta18 (kernel 4.4.4) I also made the plugin compatible with versions 6.1.2 - 6.2.0-beta18 The only downside is that you need to keep every version of the tgz files (around 50mb now). If someone knows how I can make the plugin download files (using the build in plugin downloader+md5 checker) based on a kernel version a PM would be greatly appreciated .. if not I guess I could always do everything in bash, but do not have time for that right now
  17. In the next Ubuntu release ZFs will be shipped by default and I think that will push a lot of other distros in that direction... Hopefully Limetech will follow that trend.
  18. Please test the new version and let me know
×
×
  • Create New...