Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

dmacias

Community Developer
  • Joined

  • Last visited

Everything posted by dmacias

  1. I added borgbackup. You'll need python 3.6 also.
  2. I'm not sure but that may be moot since I don't have the time to figure out compiling this. I looked at this a bit and there's no info since slackware 12. And I could only find one script for aufs4 that would need to be heavily modified. Then if it's cut out of the kernel...
  3. Does anything show up on the scan page now after running the command manually? If not, what browser are you using?
  4. I'm not sure about deleting the old MAC. Maybe corruption of the xml file on the flash. For scanning try the following command, substituting you ip and subnet. /usr/bin/nmap -sn -oX /var/log/wakeonlan/scan.xml --exclude 192.168.1.1 192.168.1.0/24 Maybe post your network.cfg again also.
  5. Try editing the sensors config from the webgui again. Then check the file ipmi-sensors.config. Let me know if the file is saved/changed from the webgui. If the file looks good then you can run this command. Otherwise edit the file then run the command. ipmi-sensors-config --filename=/boot/config/plugins/ipmi/ipmi-sensors.config --commit
  6. From your event log it is showing that your lower critical is 500 and lower non recoverable is 300. And that your fan4 rpm drops below or equal to those settings triggering an alert. Your config shows 300, 225, 150 for fan4. I would click select the sensor config in the editor again then click Revert (this gets the config again from the bmc and saves it to the flash drive). Then select sensor config again. Let me know if the values for fan4 are still 300, 225, 150 or if they changed back to 500, 300. There could be a problem saving config to bmc.
  7. I don't really use encoded icons and images. I actually create a slackware package (plugin-2017.07.10-x86_64-1.txz) that contains all the files for the plugin. Within this package is a special "install" directory with a doinst.sh. When a slackware package is installed it executes this script. NerdPack's doinst script looks like this. #!/bin/shln -sf /usr/local/emhttp/plugins/NerdPack/scripts/packagemanager /usr/sbin/packagemanagerchmod +0755 /usr/sbin/packagemanager If you look at my NerdPack repo, in the readme I explain how I create the slackware package on my linux laptop. You can also do this on unRAID itself. I use a script I modified from gfjardim. Much like a slack.build script.
  8. Maybe. What exactly are you doing? Are you clicking on the APPLY at the bottom? What browser and version of unRAID? Do you have fan.cfg in /boot/config/plugins/ipmi/? Maybe a screenshot and contents of fan.cfg.
  9. If you're on 6.4, python should be 2.7.13 for both speedtest and NerdPack. There was a problem with 6.3 prior to them upgrading ncurses. Python 2.7.13 required ncurses 6 and unRAID had 5.9, so I had to amend the 6.3 version to 2.7.13a and ncurses 5.9.
  10. I think I fixed it. Check also if you have any python packages in /boot/config/plugins/NerdPack/packages/6.4/
  11. It's moving along. You can always check my github to see.
  12. Did you try toggling it off then apply then toggle on then apply?
  13. I usually use the Utah slack repo and the packages.txt. I think the packages you were looking at are for unRAID 6.3 which is more inline with Slackware64 14.2 and unRAID 6.4 is closer to Current. Devpack 6.4 does have gcc 7.1 not sure why I had 5.4 for devpack 6.3 but it was probably a dependency issue. E.g. to use gcc 7.1 you need newer versions of the other C packages but then that causes issues when you try and run what you compiled on 6.3. Same reason I don't have some of the newest packages in the devpack 6.4 repo. They match what is present in unRAID 6.4. Another example is ncurses until recently unRAID 6.3 had version 5.9 and unRAID 6.4 had 6.0. Many of the pre compiled packages were compiled with ncurses 6.0 so they won't run on 6.3 unless you have 6.3.5 or which ever point release they added it. So that's why I haven't upgraded screen for 6.3 but did for 6.4. I have 4 separate unRAID VM's (6.1, 6.2, 6.3.5 & 6.4.rc6) I can load up with the latest from each version of unRAID when I compile.
  14. I set in my asus/merlin router in the dnsmasq.conf.add on the jffs partition (/jffs/configs/dnsmasq.conf.add). Or you can add it to your router's dnsmasq.conf with your domain name and the local ip formatted like this # add local addressaddress=/yourserver.example.com/xxx.xxx.xxx.xxx
  15. I couldn't find sqlite, glib2 and kernel headers to match. So the ones included are slightly different. The glib2 is only an incremental release and sqlite is newer. The kernel headers are older. I need to find the newer source. They will show as update in the table.
  16. Give this a try if you want. I couldn't find a couple packages to match the built-in packages though, sqlite, glib2 and the kernel-headers. So those are slightly different versions. unRAID DevPack
  17. unRAID 6 DevPack - Dev tools Assorted tools for unRAID development, mostly for compiling packages. For 6.3 and 6.4+ https://raw.githubusercontent.com/dmacias72/unRAID-DevPack/master/plugin/DevPack.plg Everything is set to install when toggled On and applied. Toggling Off and Apply will just toggle off and delete the package from the flash drive. There's no uninstall since some of these are default packages built in to unRAID. To remove: Toggle Off, Apply and reboot. Anything set to On will be installed at unRAID boot also. Change Log ###2018.10.23 - fix only include headers for inherent unRAID packages - add autov to css and js - remove support link from readme ###2017.10.12 - plugin version still 2017.10.01b - fix libunistring package, include symlink for libunistring.so.0 - added full glibc package - removed everything but headers for all preinstalled unRAID packages ###2017.10.01b - fix stickyheaders for new themes - update tablesorter to 2.29.0 - add status for installed and not installed packages ###2017.07.02 - fork Nerdpack to create DevPack - add all dev packages and descriptions - rename all variables and file names to reflect fork - remove all non relevant code ###2017.06.17 - combine delete and uninstall switch - add cleanup of old packages - add support for azure and gray themes - change to separate repo - update tablesorter ###2017.02.06 - fix support link - add perl toggle for vim ###2017.01.31 - move local tablesorter to cdn - add support link to readme ###2016.10.20 - fix: php7 compatibility ###2016.10.09 - fix: not creating package directory ###2016.10.08 - fix: false positive of installed packages - fix: packagemanager bug if cookies are missing ###2016.09.18 - fix: packagemanager array errors ###2016.09.16 - fix: empty package list on new install or upgrade - update tablesorter to 2.27.6 ###2016.09.10 - add: popup for unRAID version change or empty downloads folder - add: always compare package checksums - fix: remove corrupted packages - fix: remove failed downloads - fix: add package desc and json to scandir filter ###2016.03.15 - enable apply button if update ready - fix: remove old package settings from config after package update - create separate package repos for 6.1 and 6.2 - update plugin for unRAID 6.2 compatibility - update packages for 6.2 ###2016.02.23 - fix: search for a partial match of packages used in other plugins ###2016.02.17 - remove curl progress bar - separate plugin depends by comma - only show update status of selected packages when processing ###2016.02.15 - update tablesorter - fix spacing of processing messages - remove array start event package install - move initial package install to plugin install ###2016.02.08 - fix permissions on event script ###2016.02.02 - add check for other plugin dependencies on uninstall ###2016.01.25 - Merge eschultz pull request - tweaks to tablesorter to restore saved filters - minor optimizations ###2016.01.24 - Merged eschultz's package repo and following fixes - Fixed first time running warnings about missing packages.json / desc files - Fixed bug preventing Select All from being toggle-able - Fixed bug in Select All and dependent package checkboxes / race condition - Eliminated vertical space gap between page header and table ###2016.01.16a - add metric parser to sort units ###2016.01.16 - minor diplay changes - add tablesorter as a separate package ###2016.01.15 - fix filter save - add filter reset button ###2016.01.10a-c - fix name of package description file ###2016.01.10 - added dynamic package description tootips - updated tablesorter to v2.25.0 - add tablesorter widgets (filter, saveSort, stickyHeaders, hover-highlight) - added cli options to packagemanager script ###2015.12.30 - create packages directory on install ###2015.12.15a - remove command output ###2015.12.15 - minor fixes ###2015.12.14 - add update functions - add delete package function - fix some minor bugs ###2015.12.13 - initial commit of wrapper plugin for packages in repo
  18. There was some discussion about this before. I think those would be better in a separate Dev Pack. I could just clone this repo and change all the names and variables. Then add the packages you wanted and the others that I use. What version you need it for? 6.3 or 6.4? I have versions for both to match.
  19. Thanks. I just went ahead and added the screen terminal info to the screen 4.6 package. Other packages like tmux have their own terminal info included.
  20. Thanks. I was wondering if you could help me with a problem. I thought I needed the updated version ncurses-6.0-x86_64-3.txz for unRAID 6.4 for the problem with the Screen package and backspace not working. But I tracked it down to the /usr/share/terminfo/v/vt100. When I installed the full ncurses-6.0-x86_64-3.txz package the vt100 term info was installed and backspace worked. So the problem is, I compiled and installed the same screen-4.6.0-x86_64-1.txz on unRAID 6.3.5 and 6.4 but the backspace doesn't work on 6.4 unless I add the vt100 terminal info. It works fine on 6.3.5. So why is /usr/share/terminfo/v/vt100 required for 6.4. I could just add the vt100 term info to the screen package.
  21. What version of the plugin are you using? latest is 2017.06.17. I moved everything to its own repo.
  22. I recompiled tmux. Should work now.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.