Unable to run PlanAhead
I am unable to run the PlanAhead tool within ISE, I initially got several errors about missing `libncurses.so.5`, but I was able to resolve them by symlinking them to `libncurses.so.6`:
```bash
RUN ln -s /usr/lib/x86_64-linux-gnu/libncurses.so.6 /usr/lib/x86_64-linux-gnu/libncurses.so.5
RUN ln -s /usr/lib/x86_64-linux-gnu/libncursesw.so.6 /usr/lib/x86_64-linux-gnu/libncursesw.so.5
```
However, I am now getting the following errors when I try to open PlanAhead:
```bash
Sep 02, 2024 8:03:01 PM java.util.prefs.FileSystemPreferences$1 run
WARNING: Couldn't create user preferences directory. User preferences are unusable.
Sep 02, 2024 8:03:01 PM java.util.prefs.FileSystemPreferences$1 run
WARNING: java.io.IOException: No such file or directory
Sep 02, 2024 8:03:33 PM java.util.prefs.FileSystemPreferences checkLockFile0ErrorCode
WARNING: Could not lock User prefs. Unix error code 2.
Sep 02, 2024 8:03:33 PM java.util.prefs.FileSystemPreferences syncWorld
WARNING: Couldn't flush user prefs: java.util.prefs.BackingStoreException: Couldn't get file lock.
```
For reference, the branch I'm working with is here: https://github.com/Doom4535/ise14/tree/feature/use_buildkit
1 条评论