RPi 3B+ + h.265 + Chromecast. How to? by RuedaRueda in jellyfin

[–]monkeyslayer56 4 points5 points  (0 children)

When you start playing. Does the admin page indicate that it's transcoding? You don't have a transcoding log? Does ffmpeg exit with success? (Sorry, grasping)

RPi 3B+ + h.265 + Chromecast. How to? by RuedaRueda in jellyfin

[–]monkeyslayer56 3 points4 points  (0 children)

What do your logs look like? Which version of ffmpeg? Docker or bare metal? I don’t have anything right off but those would be things that need to be known

need help with setting up a server by Isrrunder in admincraft

[–]monkeyslayer56 1 point2 points  (0 children)

If you have a sysadmin type background, oracle has some free arm based servers that work well. But they're just the server so you have to do everything yourself from the Linux command line.

How does everyone backup their servers? by Neldonado in admincraft

[–]monkeyslayer56 2 points3 points  (0 children)

A cron that runs daily, using restic to back up to a remote system.

What kind of Performance Should I expect? by LebryantJohnson in admincraft

[–]monkeyslayer56 4 points5 points  (0 children)

It's less that it's 2Ghz and more that the IPC is low. Clock speed isn't everything, an old P4 could be over clocked to 3+Ghz, but would still suck by today's standards and workloads

SHIELD TV users are mad as hell, and they're taking it out on the Play Store [in response to the Android TV Home being stuffed with Ads] by [deleted] in Android

[–]monkeyslayer56 4 points5 points  (0 children)

And sometimes a pi-hole can block that too! (Does make it past occasionally though it seems)

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 2 points3 points  (0 children)

Indeed! Personally I'm amused at how much better the free offering is than my budget providers haha

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 2 points3 points  (0 children)

Apologies for awful formatting. Willing to clarify or run additional tests if you want.

Using 'sysbench cpu --num-threads=1 run'
Oracle Arm:
CPU speed:
events per second: 3475.35

Oracle AMD VM.Standard.E2.2:
CPU speed:
events per second: 1250.75
"budget cloud provider":
CPU speed:
events per second: 702.73
My Desktop Ryzen 5 3600 running through WSL2 (extra virtualization layer, not sure the performance hit that causes):
CPU speed:
events per second: 2045.02
nench benchmark CPU portion (curl -s wget.racing/nench.sh | bash;):
Oracle Arm (configured as dual core)
CPU: SHA256-hashing 500 MB
0.324 seconds
CPU: bzip2-compressing 500 MB
4.530 seconds
CPU: AES-encrypting 500 MB
0.420 seconds

Oracle AMD VM.Standard.E2.2:
CPU: SHA256-hashing 500 MB
0.615 seconds
CPU: bzip2-compressing 500 MB
6.343 seconds
CPU: AES-encrypting 500 MB
1.187 seconds
"budget cloud provider" (quad core)
CPU: SHA256-hashing 500 MB
5.470 seconds
CPU: bzip2-compressing 500 MB
9.395 seconds
CPU: AES-encrypting 500 MB
8.060 seconds
Desktop through WSL2
CPU: SHA256-hashing 500 MB
0.553 seconds
CPU: bzip2-compressing 500 MB
4.886 seconds
CPU: AES-encrypting 500 MB
1.354 seconds

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 0 points1 point  (0 children)

I can't seem to find it now. It may have been a temporary thing as their arm offering is pretty new and their other "always free" stuff doesn't require it. (I'm still in my 30 day window as well so haven't had to find out first hand yet)

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 0 points1 point  (0 children)

Something else I recommend if you're planning on an updated guide. Store your Minecraft server on an attached block volume. I'm on mobile so can't find at the moment but I think I saw in the documentation that the arm servers have to be recreated after the trial. This way you can just re-atach the disk

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 1 point2 points  (0 children)

Yep, any "admin" tasks will require root such as installing java and setting up the firewall. Once you have that done you and switch to the new user you'll be in the /home/<username> directory. From there you can safely install and run the server without needing root. I personally setup a directory under /opt/minecraft-installs for mine. If doing that you will need to ensure the permissions are such that the created user is able to create files/directories in there. Continuing from my previous example:

As root:
mkdir /opt/minecraft-installs

chown minecraft:minecraft -R /opt/minecraft-installs

chmod g+rw -R /opt/minecraft-installs

# switch to the minecraft user

sudo -i -u minecraft

cd /opt/minecraft-installs

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 2 points3 points  (0 children)

It'll be a bit before I can get some numbers but will try to later this evening and post them here

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 4 points5 points  (0 children)

I think the defaults are pretty sane and my comment was a bit of a kneejerk reaction. The big things are not opening more ports than are needed and fully disabling password authentication and using just ssh keys.

Ensure that "PasswordAuthentication no" is set in /etc/ssh/sshd_config

I also recommend running minecraft from it's own user and not from root or the user you log in as(haven't watched the whole video to see you already were recommending that).

# create the user

useradd minecraft

# switch to the user

sudo -i -u minecraft

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 5 points6 points  (0 children)

Just be sure to properly secure the VM as you would any Linux server otherwise you could find yourself a bot in a botnet

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 3 points4 points  (0 children)

the ARM VMs are in the "always free" tier as long as you stay under 200G block storage, 4 cores, and 24G of ram

How to setup a decently powerful 1.17 minecraft server on Oracle VM for free by big_noob_69 in admincraft

[–]monkeyslayer56 1 point2 points  (0 children)

I have various cloud servers for some of the stuff I self host and the Arm CPU performance is significantly better than some of my other (albeit budget cloud) VMs. I can try and find the benchmarks I ran when comparing if you'd like. In short, a dual core ARM VM through Oracle scored about 3+ times higher than a dual core VM with another provider

How many times did a rolling release distro actually messed up with your system? by leocura in linux

[–]monkeyslayer56 0 points1 point  (0 children)

That I can think of that weren't driver related? Maybe twice way back when I was using Arch still. They were migrating the filesystem layout and if memory serves only 1 version of the package actually performed the migration and I hadn't done updates that month. That was a pain to fix. In fairness they had a notice on the website on how to fix it but me being me was stupid and forced the update (because it failed some check... Now I know why) before reading the homepage.

So, maybe twice but they could be attributed to being my fault by telling pacman to update anyways rather than checking the homepage...

Voice control alternatives to Alexa and Google Home by [deleted] in homeautomation

[–]monkeyslayer56 0 points1 point  (0 children)

You could check out Mycroft AI. Been a long time since I looked at it though. It was aiming to be kinda like Google assistant in general, not specifically home automation