Mim

McSkill TechnoMagic 1.7.10 | Лог клиента

Mim
Nov 21st, 2024
147
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.18 KB | Gaming | 0 0
  1. Picked up _JAVA_OPTIONS:
  2. OpenJDK 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
  3. Exception in thread "main" java.lang.ExceptionInInitializerError
  4.     at launcher.coM6.isValidCertificates(SourceFile:128)
  5.     at launcher.coM6.verifyCertificates(SourceFile:378)
  6.     at launcher.cOM1.main(SourceFile:146)
  7. Caused by: java.lang.NullPointerException
  8.     at jdk.internal.platform.cgroupv2.CgroupV2Subsystem.getInstance(CgroupV2Subsystem.java:81)
  9.     at jdk.internal.platform.CgroupSubsystemFactory.create(CgroupSubsystemFactory.java:108)
  10.     at jdk.internal.platform.CgroupMetrics.getInstance(CgroupMetrics.java:173)
  11.     at jdk.internal.platform.SystemMetrics.instance(SystemMetrics.java:29)
  12.     at jdk.internal.platform.Metrics.systemMetrics(Metrics.java:57)
  13.     at jdk.internal.platform.Container.metrics(Container.java:41)
  14.     at sun.management.OperatingSystemImpl.<init>(OperatingSystemImpl.java:182)
  15.     at sun.management.ManagementFactoryHelper.getOperatingSystemMXBean(ManagementFactoryHelper.java:106)
  16.     at java.lang.management.ManagementFactory.getOperatingSystemMXBean(ManagementFactory.java:374)
  17.     at launcher.cOm5.<clinit>(SourceFile:25)
  18.     ... 3 more
  19.  
  20. Exit code 1
Advertisement
Comments
  • AndrewTrumenov
    224 days (edited)
    # text 0.79 KB | 0 0
    1. To solve this error you need to Enable CGROUPv1 in your linux system.
    2. How to Enable CGROUPv1 on Linux Mint 22.1
    3. Check current cgroup mounts:
    4. mount | grep cgroup
    5.  
    6. If you see both cgroup2 (v2) and multiple cgroup mounts (v1), you’re in hybrid mode — cgroup v1 is already active.
    7. To force pure cgroup v1 (disable unified cgroup v2), edit GRUB:
    8. sudo nano /etc/default/grub
    9.  
    10. Find the line starting with GRUB_CMDLINE_LINUX_DEFAULT and add: systemd.unified_cgroup_hierarchy=0
    11. Example:
    12. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash systemd.unified_cgroup_hierarchy=0"
    13.  
    14. Update grub and reboot:
    15. sudo update-grub
    16. sudo reboot
    17.  
    18. After reboot, verify with:
    19. mount | grep cgroup
    20.  
    21. You should see only cgroup v1 mounts.
    22.  
    23. Now you can launch your java app) I made it for minecraft 1.7.10 from mcskill).
    24.  
    25.  
Add Comment
Please, Sign In to add comment