【Unraid系列】解决unRaid中的APP市场(应用商店)打开失败的问题

问题描述

点APP,过了很久出来个Download of appfeed failed,如下图:


image.png

解决方案

综合官方论坛里的解决方案。

应用商店版本:2021.06.21,下面的方案可能不兼容老版本

  1. 安装应用商店:https://raw.githubusercontent.com/Squidly271/community.applications/master/plugins/community.applications.plg
    如果这个安装失败可以尝试修改 /etc/hosts

  2. 在unraid的console中,备份paths.php

cd /usr/local/emhttp/plugins/community.applications/include

cp paths.php path.php.bak

  1. 进入paths.php (unraid可以用nano paths.php), 全文替换为如下代码。

nano下的全文替换方式:光标定位到页首,按command/ctrl + shift + end全选,再按command/ctrl + k剪贴,再复制下面的代码,按command/ctrl + v粘贴下面的代码。


  1. 保存,并退出nano

  2. 不用重启(重启后配置就失效了),回到unraid,再次点击APP,发现可以进去了。

image.png

注意:该配置修改在unraid重启后会丢失,要想重启后配置不丢,可以写个启动脚本,每次重启后让系统自动执行上述修改,方法如下:

重启后配置不丢的方法

  1. 在应用商店中搜索:CA User Script,并安装

  2. 在SETTINGS中点击User Scripts


    image.png
  3. 点击ADD NEW SCRIPT创建一个新的脚本

  4. 脚本名称随意

  5. 复制以下内容为作为脚本内容:

#!/bin/bash

# 
tee /usr/local/emhttp/plugins/community.applications/include/paths.php << 'EOF'

EOF
  1. 点击SAVE CHANGES

  2. 将该脚本的启动时间设为:At First Array Start Only

image.png
  1. 点击APPLY应用上述修改即可。

你可能感兴趣的:(【Unraid系列】解决unRaid中的APP市场(应用商店)打开失败的问题)