CHBMB

Community Developer
  • Posts

    10620
  • Joined

  • Days Won

    51

Everything posted by CHBMB

  1. Your question is nothing to do with Unraid, it's a question about Nextcloud, so you post your question in the support thread for Nextcloud, rather than a new topic in the General Unraid section. We try and make it easy for you to find where to post....
  2. Yes, you ask your question in the thread. You can't create new posts, but you can respond to existing ones. Sent from my Mi A1 using Tapatalk
  3. That's why there is a dedicated support thread already created for each container. Sent from my Mi A1 using Tapatalk
  4. I didn't think you came over pushy, don't worry about it. When I started the DVB stuff I wasn't married, had no children, and I had a lot of free time in my job. That has all changed, so I just don't have as much free time as I used to.... Sent from my Mi A1 using Tapatalk
  5. This really should be in the Nextcloud support thread rather than general Unraid support. Sent from my Mi A1 using Tapatalk
  6. We're running this version from the Alpine package repository. https://pkgs.alpinelinux.org/package/v3.8/main/x86/unrar
  7. Glad you said that, confused me too..... Sources would be useful too..... Sent from my Mi A1 using Tapatalk
  8. V6.6.1 uploaded. Those drivers above are definitely compiled. Sent from my Mi A1 using Tapatalk
  9. Yes, you would need to be running on latest to run the script. I'm not willing to pick this one up to be honest, since I started the DVB plugin I've got a lot less time on my hands and really don't want to take on anything more. Happy to help @1812 from the sidelines on this one though.
  10. Another old git checking in. I liked the bigger text as well, but in reality I can work with whatever I get. Got spectacles for a reason. Sent from my Mi A1 using Tapatalk
  11. Why not just use LetsEncrypt/Nginx to reverse proxy the Unifi webui? Seems a more logical way of doing things to me.
  12. Probably better to ask @SpaceInvaderOne as it's his guide you're following and it's impossible to tell anyone where they've gone wrong without a lot more detail.
  13. Impossible /usr/local/emhttp/plugins/dynamix/styles/ is a location in RAM. Cannot survive a reboot.
  14. It won't, that line is the one that starts emhttp. Jonathan told you to remove the line with sed in it.
  15. Also I've taken a look at the script you're using again and tried to simplify things. #!/bin/bash ##Pull variables from github wget -nc https://raw.githubusercontent.com/CHBMB/Unraid-DVB/master/build_scripts/variables.sh . "$(dirname "$(readlink -f ${BASH_SOURCE[0]})")"/variables.sh ##Install packages [ ! -d "$D/packages" ] && mkdir $D/packages wget -nc -P $D/packages -i $D/URLS_CURRENT wget -nc -P $D/packages https://github.com/CHBMB/Unraid-DVB/raw/master/files/patchutils-0.3.4-x86_64-2.tgz wget -nc -P $D/packages https://github.com/CHBMB/Unraid-DVB/raw/master/files/Proc-ProcessTable-0.53-x86_64-2.tgz installpkg $D/packages/*.* #Change to current directory cd $D ##Download and Install Kernel [[ $(uname -r) =~ ([0-9.]*) ]] && KERNEL=${BASH_REMATCH[1]} || return 1 LINK="https://www.kernel.org/pub/linux/kernel/v4.x/linux-${KERNEL}.tar.xz" rm -rf $D/kernel; mkdir $D/kernel [[ ! -f $D/linux-${KERNEL}.tar.xz ]] && wget $LINK -O $D/linux-${KERNEL}.tar.xz tar -C $D/kernel --strip-components=1 -Jxf $D/linux-${KERNEL}.tar.xz rsync -av /usr/src/linux-$(uname -r)/ $D/kernel/ cd $D/kernel for p in $(find . -type f -iname "*.patch"); do patch -N -p 1 < $p done make oldconfig ##Make necessary changes to fix HP RMRR issues cd $D sed -i '/return -EPERM;/d' $D/kernel/drivers/iommu/intel-iommu.c ##Compile Kernel cd $D/kernel make -j $(grep -c ^processor /proc/cpuinfo) #Package Up new bzimage mkdir -p $D/$VERSION/ cp -f $D/kernel/arch/x86/boot/bzImage $D/$VERSION/bzimage md5sum bzimage > bzimage.md5 ##Return to original directory cd $D Think that should work. Here's a bzimage for someone to check on v6.6.0 bzimage
  16. The kernel version did not get bumped between v6.6.0rc4 and v6.6.0 so that explains why the bzimage does not need changing
  17. Might get more help if you posted in the actual support thread for either of these containers.
  18. He hasn't visited the forum for a month and those have been there since April looking at the github.
  19. Are you cutting and pasting? Try typing the command in. Sent from my Mi A1 using Tapatalk
  20. Seems like you've sorted it, but you don't need specific kernel headers for the kernel you're compiling afaik. Just use whatever version is in slackware64-current.
  21. Good to hear, sorry about the hassle, PEBKAC error. Can't claim credit for the second issue, that's a kernel fix I think. Thanks for testing and providing all the info. Sent from my Mi A1 using Tapatalk