Package Details: jameica 2.10.4-2

Git Clone URL: https://aur.archlinux.org/jameica.git (read-only, click to copy)
Package Base: jameica
Description: free runtime environment for java applications
Upstream URL: https://www.willuhn.de/products/jameica/
Licenses: GPL2
Submitter: jakob
Maintainer: fordprefect
Last Packager: fordprefect
Votes: 87
Popularity: 0.21
First Submitted: 2006-10-21 16:11 (UTC)
Last Updated: 2024-02-11 15:01 (UTC)

Dependencies (4)

Sources (9)

Pinned Comments

fordprefect commented on 2020-03-06 08:28 (UTC) (edited on 2022-05-10 09:33 (UTC) by fordprefect)

In case of unknown PGP key run gpg --receive-keys 5A8ED9CFC0DB6C70

Due to widespread keyserver rot the use of keys.openpgp.org is encouraged, e.g. by adding keyserver keys.openpgp.org to your ~/.gnupg/gpg.conf.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 16 Next › Last »

Mad_One commented on 2022-04-23 15:33 (UTC)

Can confirm strubbisch's solution works.

strubbisch commented on 2022-04-22 09:13 (UTC)


#!/bin/sh

# Linux Start-Script fuer regulaeren Standalone-Betrieb.
# Jameica wird hierbei mit GUI gestartet.

cd /opt/jameica

_JLP="-Djava.security.manager=allow"

if uname -m |grep -q aarch64; then
    archsuffix="arm64"
    _JLP=" -Djava.library.path=lib/swt/linux-arm64"
elif uname -m |grep -q 64; then
    archsuffix="64"
else
    archsuffix=""
fi

# Zur Anpassung der Skalierung auf HiDPI-Displays kann der Parameter "-Dswt.autoScale" verwendet werden.
# Siehe https://www.willuhn.de/wiki/doku.php?id=develop:highdpi
LIBOVERLAY_SCROLLBAR=0 GDK_NATIVE_WINDOWS=1 SWT_GTK3=1 exec java $_JLP -Djava.net.preferIPv4Stack=true -Xmx512m -Xss64m $_JCONSOLE -jar jameica-linux${archsuffix}.jar $@

Icecube63 commented on 2022-04-22 08:18 (UTC) (edited on 2022-04-22 08:27 (UTC) by Icecube63)

"I added the option "-Djava.security.manager=allow" in "/usr/bin/jameica" in the _JLP-String, then jameica starts."

This don't work for me, can you please post your changed /usr/bin/jameica?

strubbisch commented on 2022-04-20 10:55 (UTC)

The error message is the same as Icecube63 posted.

I added the option "-Djava.security.manager=allow" in "/usr/bin/jameica" in the _JLP-String, then jameica starts.

Icecube63 commented on 2022-04-20 09:58 (UTC) (edited on 2022-04-20 10:01 (UTC) by Icecube63)

With Java 18 there is the following error at startup:

[de.willuhn.jameica.system.Application.startupError] FATAL ERROR WHILE JAMEICA STARTUP java.lang.UnsupportedOperationException: The Security Manager is deprecated and will be removed in a future release at java.base/java.lang.System.setSecurityManager(System.java:416) at de.willuhn.jameica.services.SecurityManagerService.init(SecurityManagerService.java:41) at de.willuhn.boot.BootLoader.resolve(BootLoader.java:139) at de.willuhn.boot.BootLoader.resolve(BootLoader.java:119) at de.willuhn.boot.BootLoader.getBootable(BootLoader.java:70) at de.willuhn.jameica.system.Application.init(Application.java:103) at de.willuhn.jameica.system.Application.newInstance(Application.java:87) at de.willuhn.jameica.Main.main(Main.java:78)

The Option "-Djava.security.manager=allow" don't work

fordprefect commented on 2022-04-20 09:21 (UTC)

@strubbisch: Please post the error messages if seeking for help. Also, everyone should patch their java ASAP to the most recent version after the disclosure of a critical ECDSA bug.

strubbisch commented on 2022-04-20 09:08 (UTC)

This version didn't start with Java 18.

With the console-option "-Djava.security.manager=allow" the program starts.

MicSpabo commented on 2021-12-05 18:07 (UTC) (edited on 2021-12-06 14:35 (UTC) by MicSpabo)

$ gpg -k 5A8ED9CFC0DB6C70
uid [unknown] Olaf Willuhn <info(at)willuhn.de>

Error installing jameica with my favourite AUR wrapper:
==> Verifying source file signatures with gpg...
jameica-linux64-2.10.1.zip ... FAILED (unknown public key 5A8ED9CFC0DB6C70)

but Successful if installing jameica manually:
$ git clone https://aur.archlinux.org/jameica
$ cd jameica/
$ makepkg --syncdeps
$ makepkg --install

einsteinchen commented on 2021-10-10 09:01 (UTC)

The .desktop file included in this package is currently broken.

It should be
Exec=/usr/bin/jameica instead of Exec=/usr/share/java/jameica/jameica.sh
and
Icon=/opt/jameica/jameica-icon.png instead of Icon=/usr/share/java/jameica/jameica-icon.png