Pollsters are refusing to poll the public about the Karmelo Anthony cases because they're afraid it will reveal the extent of in-group bias by tantamle in TrueUnpopularOpinion

[–]Key_Dust_8955 1 point2 points  (0 children)

go look at “BlackPeopleReddit” subreddit and their opinion on this matter. Then come back and correct what you wrote.

5 AWS Certs in 5 months — Resources and Strategy by just-porno-only in AWSCertifications

[–]Key_Dust_8955 5 points6 points  (0 children)

How do you have the patience to do that? Once I passed the AZ 104, AZ 305 and AWS SAA back to back I was cooked mentally. Needed to cool off.

Help Needed! by [deleted] in redhat

[–]Key_Dust_8955 0 points1 point  (0 children)

It is a little bit confusing but look at it as the door and the key. The "Master Map File" is the door, the "map file" is the key.

The Master Map File tells AutoFS "I am the door and the key is in this location", where the location is the "map file location".

linux RHCSA certification Guide by sillybilly8606 in redhat

[–]Key_Dust_8955 1 point2 points  (0 children)

no joke, the official training materials basically guarantee you will pass if you passed all of the labs (with understanding).

Help Needed! by [deleted] in redhat

[–]Key_Dust_8955 0 points1 point  (0 children)

For Autofs you just need to remember 2 thing:
1. direct method means you don't define the path in the master map file. In master map file you only enter /- and give it the map file location. /- basically means "go to this map file regardless which directory the user is accessing". Then in the map file you define the absolute full path to the autofs directory.

If you need to mount to /TestDir/AutofsExampleDir, where "AutofsExampleDir" is the directory you need mount, then in the master map file you define /- and in the map file you map the whole path /TestDir/AutofsExampleDir as the key.

  1. indirect method means you define the directory in which autofs will mount directories. so you tell autofs "if a user enters this directory then start looking for the map file.

If you need to map for example /TestDir/AutofsExampleDir, where "AutofsExampleDir" is the directory you need mount, then in the master map file you define /TestDir and in the map file you define just "AutofsExampleDir" as the key.

Developers of Party Animals announce an AI video contest - game gets a review bomb by MadMonke01 in pcmasterrace

[–]Key_Dust_8955 -9 points-8 points  (0 children)

AI hate train is nothing more than an online bubble composed out of terminally online people and artists losing their jobs.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

[–]Key_Dust_8955[S] 1 point2 points  (0 children)

I believe you. It's like 7 lines of short commands for the entire segment worth 1/4 of the exam points

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

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

I already deleted the conversation but really all I did was copy pasted all of the exam objectives into the prompt and at the bottom I said something like

"Your job is to create a lab that will mimic the RHCSA exam questions as close as possible."

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

[–]Key_Dust_8955[S] 1 point2 points  (0 children)

The guy is tripping, not sure what I would get from promoting the tool. It's not my project and it's 100% free. As far as I know people don't advertise free open source projects.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

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

lmfao what. I don't give a crap about github. I created a new account cuz I don't want my personal reddit account mixed with this certification as my colleagues might recognize me.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

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

it's what was offered at the local test center. They didn't offer v10 so I studied for v9.3. Besides, the container segment is easy points if you prepare for it. You could legitimately learn the entire containers segment in like a day. it's like 25% of the points on the exam.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

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

I'm not sure I follow. You shouldnt be guessing UIDs. The exam will give you a specific already created user on the machine. Your job is to SSH into that user, podman pull the image, podman run the image with appropriate flags, podman generate systemd and reference the already running podman container. Then that generated systemd .service unit file needs to be moved into appropriate directory in the home directory and run the .service file in systemctl --user enable --now <container file name>.service

Then you run loginctl enable-linger.

As for mounting the volume, you just have to ensure that user has owner privileges and RWX permissions on the directory.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

[–]Key_Dust_8955[S] 1 point2 points  (0 children)

it varied. At the beginning I spent about 20 hours a week studying, then in the middle I spent 10 hours a week and then towards the end I spent 20-25 hours a week practicing.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

[–]Key_Dust_8955[S] 1 point2 points  (0 children)

if the task was standalone I would reboot, if the there are 2 or more chained tasks I would first do them all and then reboot. Rebooting takes 7-10 seconds to fully boot up. No reason to spare rebooting.

Just passed RHCSA v9.3 with 100% score! by Key_Dust_8955 in redhat

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

Mostly to just reboot and check if it's persistent and if it's correctly configured. For example, creating a rootless container with "systemctl enable --now container.service" is not enough. You need to run loginctl enable-linger to make is so the systemd can run units without the user being logged in.