i actually made a PAR executable for windows and it would just eval load all the dependencies until it managed to launch, and that was my "framework" for the cross platform launcher
bad design but i wanted something cross platform i could just slap onto a usb and port the game around with
had to do a lot of random java arguments to fix lots of weird stuff and i wanted to be as verbose in the output as possible so other people could learn from it
most of the people that contributed to my project now manage the flatpak funny enough, so i like to think it has helped in some way for them to start working on that
That's some impressive work there. I've unfortunately had to use Mac for work and I swear it is designed to be as unhelpful for power users as possible
i know my client checked which java version you had (sun/oracle/openjdk) and applied fixes for getting opengl working depending on which version sun java6 no fixes needed, oracle java6 no fixes needed, java7 and newer you had to spoonfeed java the location of its own opengl library
it would also check if it was 32bit or 64bit java you used and apply appropriate parameters for memory management and garbage collection and then also activate the experimental parallel garbage collection which would speed up loading dramatically
and i know mod dibs got the game running on a raspberry pi using my client while i got it running on a nintendo wii (would crash once you logged in but hey IT LAUNCHED!)
Sign up to RuneScape today and access more than 150 incredible story arcs, new skills, play 20 awesome minigames, construct your own amazing home, and more.
i remember someone messaging me ingame once saying they got it running on a solaris machine in a datacenter just out of curiosity and sent me a picture of it on skype
A tool to list devices in iommu groups, useful for setting up VFIO - GitHub - HikariKnight/ls-iommu: A tool to list devices in iommu groups, useful for setting up VFIO
A project to remove the complexity of setting up GPU passthrough for qemu - GitHub - HikariKnight/quickpassthrough: A project to remove the complexity of setting up GPU passthrough for qemu
very nice for just getting the info and the project spawned from a very simple ADHD annoyance with the usual bash script people use for ls-iommu
#!/bin/bash
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done
#!/bin/bash
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done
#!/bin/bashfor d in /sys/kernel/iommu_groups/*/devices/*; do n=${d#*/iommu_groups/*}; n=${n%%/*} printf 'IOMMU Group %s ' "$n" lspci -nns "${d##*/}"done
#!/bin/bashfor d in /sys/kernel/iommu_groups/*/devices/*; do n=${d#*/iommu_groups/*}; n=${n%%/*} printf 'IOMMU Group %s ' "$n" lspci -nns "${d##*/}"done