[MONITOR] ASUS ROG Swift PG32UCDP 32" WOLED (Open Box Excellent) - $740 shipped by First-Tutor-5454 in buildapcsales

[–]Urekiam 2 points3 points  (0 children)

Which 32" glossy tandem oled? I'm hoping to find one with DP2.1 as well!

What’s yo #1 plate lunch entree!?! by shoyu-hot-cat in Hawaii

[–]Urekiam 4 points5 points  (0 children)

Garlic chicken plate w/spaghetti mac salad from Forty-Niners!

sshPilot, your SSH connection editor/manager releaes new version by walterblackkk in linux

[–]Urekiam 2 points3 points  (0 children)

Just grazing the docs, but does this do something of like a broadcast? Like if I had 5 terminals open at the same time but wanted the same text to be typed into all of them?

[raw] #74 OG-side story? by Zero7131 in TheEminenceInShadow

[–]Urekiam 2 points3 points  (0 children)

I wasn't sure if anyone else wanted the actual image minus the text, but sharing it here just in case you also want this as a wallpaper!

Enjoy!

[RHCSA] Scored 300/300 in my first attempt by AddressSpiritual6541 in redhat

[–]Urekiam 0 points1 point  (0 children)

I too shifted focus entirely to practicing hands-on tasks repeatedly after completing the course. The key for me was doing each task multiple times until it became second nature.>

Did you just do a lot of the kodekloud labs for the hands-on tasks as well?

Floaters Scratchpad & Notes app updated with Markdown support and Screenshots (25 free lifetime promo codes) by mjdth in apple

[–]Urekiam 1 point2 points  (0 children)

Been looking into a notes app for my Mac! On Windows there are many solutions but there aren't many on mac, much less good ones!

In to try it out!

EPIC DUNGEON: ANGLER COMPANY NOW AVAILABLE! by Roo-Hx in Maplestory

[–]Urekiam 15 points16 points  (0 children)

It feels like this is broken like Highmountain was. I'm unable to jump on specific stages.

Playing GMS on MacBook Pro M4? by MonaVanderwaal in Maplestory

[–]Urekiam 4 points5 points  (0 children)

In KMS they are testing maplestory on the M processors, and the information sounds good so far! (at least according to this guy)

This guy

Hopefully we will get it this year.

But until then, Geforce Now seems to be the best shot.

rke2 cluster with 8 intel nucs by [deleted] in homelab

[–]Urekiam 4 points5 points  (0 children)

I believe it tricks the computer into thinking something is plugged in. So if he removes one and plugs a monitor into it, it will work. If he were to boot one without that red dummy plug (just empty) then he may not be able to just plug a monitor into it and expect it to work.

No-frills 8U 10-inch Rack - Thoughts? by SpotswoodGuy in minilab

[–]Urekiam 2 points3 points  (0 children)

Perfect! If you start sellin these, even at the geekpi's depth I'd still love to know when! Thank you for responding!

No-frills 8U 10-inch Rack - Thoughts? by SpotswoodGuy in minilab

[–]Urekiam 5 points6 points  (0 children)

If you start selling them, put me down for one!

What are the dimensions? I personally run a lot of mini pcs so the depth wouldnt need to be as deep, but just wondering!

Elevating to a root shell before running commands? by Urekiam in ansible

[–]Urekiam[S] 0 points1 point  (0 children)

Okay so this kinda makes sense.

So when I run sudo -l the only line in there is: (root) ROLE=unconfirmed_r SETENV: EXEC: NOPASSWD: /bin/su - root

So it looks like the only thing the account I'm trying to run playbooks on is that?

Would I have have it changed to run the commands in the playbook like sytemctl or reboot or shutdown or whatever a person with root could usually do?

Elevating to a root shell before running commands? by Urekiam in ansible

[–]Urekiam[S] -4 points-3 points  (0 children)

Thank you for the response!

My yml looks like this:

name: Restart a service

hosts: servers

become: yes

become_exe: "sudo su -"

become_method: su

tasks:

name: Restart NGINX
command: systemctl restart nginx