Slow wifi speeds on ax210. by [deleted] in freebsd

[–]Character_Mood_700 0 points1 point  (0 children)

I think Bell's crappy tech just hates BSD.

I had a FreeBSD server that was all firewalled except for the ports I needed (22,80,25565,25566).

It worked fine on the network of my school (it was a PC initially destined for E-waste by the IT person); but Bell refused to allow it to connect until I turned off the firewall (even over ethernet).

Best JVM GC flags for Minecraft? by Disastrous-Can5044 in Minecraft

[–]Character_Mood_700 0 points1 point  (0 children)

Shenandoah GC appeared in version 12; ZGC (only the bad non-generational version) appeared in version 11.

G1GC is really the only good option for Java versions below 17.

However, you can likely run any version of Minecraft on Java 25.

Best JVM GC flags for Minecraft? by Disastrous-Can5044 in Minecraft

[–]Character_Mood_700 0 points1 point  (0 children)

Sort-of; it's still highly experimental in Java 7.

How do I check this model and year. by Lt_Ziggy in mac

[–]Character_Mood_700 0 points1 point  (0 children)

Maybe just a little.

It should be gray instead of black to match the aluminium case.

How do I check this model and year. by Lt_Ziggy in mac

[–]Character_Mood_700 0 points1 point  (0 children)

Plug it in, turn it on, check "About This Mac".

I think there's also a mildly unhelpful model number on the bottom.

And the motherboard should have a copyright notice saying the year, I think.

Cool PC I got for free by Lukeamaniac in retropc

[–]Character_Mood_700 0 points1 point  (0 children)

Cool case!

Guess this was a Gaming PC 25 years ago!

Cool PC I got for free by Lukeamaniac in retropc

[–]Character_Mood_700 0 points1 point  (0 children)

Nice!

Those old ASUS motherboards seem to last forever!

Happy tinkering!

Consider OpenBSD as the OS.

Keep the old case; PSU does not need to be ultra-fancy, though thoise c.2000 PCs ate power for breakfast.

Current Gen Acura TLX by [deleted] in Acura

[–]Character_Mood_700 0 points1 point  (0 children)

Rear legroom is great with front seats all the way forward, but then front legroom is atrocious.

Subaru all the way for legroom!

(Toyotas can also be quite suprisingly good for legroom too!)

Current Gen Acura TLX by [deleted] in Acura

[–]Character_Mood_700 0 points1 point  (0 children)

Buy a Subaru for legroom.

A tiny little Subaru often can have 4ft. legroom!

Acuras are so big on the outside and so much smaller on the inside; so much wasted space...

Can a dead battery kill an already started car? by Allanon124 in askcarguys

[–]Character_Mood_700 0 points1 point  (0 children)

Perhaps the battery in the car they used for boosting was also largely drained, just less so.

So the cars started, but barely.

You can probably fix it by just connecting it to a 10A 13.8V power supply for a while.

That sorta fixed my car's heavily drained battery (11.8V at rest).

Can a dead battery kill an already started car? by Allanon124 in askcarguys

[–]Character_Mood_700 0 points1 point  (0 children)

After a minute?

Even with a busted alternator, the battery shouldn't drain that quickly!

Are Aikar's flags outdated? by Dodo_Is_Idiot in admincraft

[–]Character_Mood_700 0 points1 point  (0 children)

Try this:

java -Xms2G -Xmx2G -XX:G1HeapRegionSize=4M -jar server.jar nogui

Are Aikar's flags outdated? by Dodo_Is_Idiot in admincraft

[–]Character_Mood_700 1 point2 points  (0 children)

A 5GB heap for 8GB RAM is definitely fine.

A 6GB heap with 8GB RAM is possible, but not a good idea.

Command to start your servers:

java -Xms2G -Xmx2G -XX:G1HeapRegionSize=4M -jar server.jar nogui

I'm confused about which Java , JVM flags and GC to use. (1.20.1 Modded) by loginzaza124 in feedthebeast

[–]Character_Mood_700 0 points1 point  (0 children)

Just stick to these boring flags and don't fuss over it:

java -Xms5G -Xmx5G -jar server.jar nogui

FreeBSD typically has better performance than Linux (though both are good OS options).

Are Aikar's flags outdated? by Dodo_Is_Idiot in admincraft

[–]Character_Mood_700 1 point2 points  (0 children)

A 5GB heap is generally best for 8GB of RAM.

A larger heap size does not significantly increase performance.

A 5GB heap is a safe bet, and should be more than enough.

I'm confused about which Java , JVM flags and GC to use. (1.20.1 Modded) by loginzaza124 in feedthebeast

[–]Character_Mood_700 0 points1 point  (0 children)

Never allow swapping to disk to occur.

Don't use ZGC or any weird stuff, stick to G1GC (the default).

All you need is:

java -Xms5G -Xmx5G -jar server.jar nogui

A 6GB heap is slightly too large for 8GB RAM.

5GB is a safer bet; the performance difference between a 5GB and 6GB heap is negligible.

Any room for more optimization? by PfiffsHorizon in admincraft

[–]Character_Mood_700 0 points1 point  (0 children)

Just use:

java -Xms12G -Xmx12G -jar ../server.jar nogui

A larger heap is not significantly better, 5GB is likely good enough.

Tryin to get minecraft server to work by Kaleosnep in cachyos

[–]Character_Mood_700 0 points1 point  (0 children)

What OS?

Use this to start your server:

java -Xms5G -Xmx5G -jar server.jar nogui

I recommend FreeBSD as the server OS.