CommandBox и RPI 4 приводят к ошибке java .io.FileNotFoundException - PullRequest
0 голосов
/ 22 марта 2020

У меня установлено Java на моем Pi 4:

    root@raspberrypi:/usr/local# java -version
    openjdk version "11.0.6" 2020-01-14
    OpenJDK Runtime Environment (build 11.0.6+10-post-Raspbian-1deb10u1)
    OpenJDK Server VM (build 11.0.6+10-post-Raspbian-1deb10u1, mixed mode)

Я следовал https://commandbox.ortusbooks.com/setup/installation:

    curl -fsSl https://downloads.ortussolutions.com/debs/gpg | sudo apt-key add -
    echo "deb https://downloads.ortussolutions.com/debs/noarch /" | sudo tee -a /etc/apt/sources.list.d/commandbox.list
    sudo apt-get update && sudo apt-get install apt-transport-https commandbox

Когда я запускаю окно:

    root@raspberrypi:/usr/local# box

    *updating installed jars
    Library path: /root/.CommandBox/lib
    Initializing libraries -- this will only happen once, and takes a few seconds...
    Cleaning old Felix Cache...
    Exception in thread "main" java.io.FileNotFoundException: Failed to delete file: /root/.CommandBox/engine/cfml/cli/lucee-server/felix-cache
            at cliloader.Util.deleteDirectory(Util.java:428)
            at cliloader.LoaderCLIMain.initialize(LoaderCLIMain.java:685)
            at cliloader.LoaderCLIMain.main(LoaderCLIMain.java:552)

Чего мне не хватает?

...