WinDbg can help you read the memory dump file, which may help you find what file or process caused the crash.
Posts made by EddieJennings
-
RE: BSOD error 0x0000139 Bug Check
-
RE: I can't even
This thread, https://access.redhat.com/discussions/669573, likely requires a Red Hat account to view, but it wins the necro post award.
The last relevant comment was in October 2011. Here's the latest comment nearly 12 years later
-
RE: What Are You Doing Right Now
Finished a Sunday evening by recording a couple of jazz etudes.
-
RE: Small office replacement network
@AdamF I stand corrected and good to know.
-
RE: Small office replacement network
Been a while since I had looked at Ubiquiti's store, but it looks like they're not bothering to show EdgeRouter 4 as an out-of-stock option anymore.
-
RE: What Are You Doing Right Now
Trying to figure out why reposync seems to have missed downloading a few RPMs.
-
RE: Zerotier installs but no conectivity on Fedora 38
Are either of the addresses of those two systems in conflict with another on the Zerotier network?
Anything odd in the routing tables for either system? -
RE: What Are You Doing Right Now
Testing
cost
parameter for dnf repo configuration. -
RE: What Are You Doing Right Now
Yum. Reading about policy based routing for Linux.
-
RE: What Are You Doing Right Now
@nadnerB said in What Are You Doing Right Now:
Getting started with Intune... getting caught up with seeing what Android Enterprise is about... sigh scope creep for todays work
A couple of people on my team have to deal with InTune. I don't envy them. Luckily, I have plenty of Linux work to keep me from being roped in.
-
RE: If starting from scratch, would you suggest learning BASH or Ansible?
@openit said in If starting from scratch, would you suggest learning BASH or Ansible?:
Hi there,
While I'm preparing for RedHat certification, I was thinking to learn BASH, for general use and also exam has requirement to write simple bash scripts.
But, in long run and to be more efficient, I feel deep learning of Ansible is better than BASH? If I left BASH, and go with Ansible do I lose anything? I assume Ansible covers what BASH can do?
Appreciate your suggestions.
They different, complementary things that are both used for administering RHEL systems (and other systems as well, but you mentioned Red Hat certs). There will be times when you will use Ansible to execute the same commands on a remote system as you would with BASH when there isn't a specific Ansible module available to do the thing you want.
If you're learning about administering RHEL and other Linux systems (which I assume you are since you're seeking those certs), there is no realistic "leaving" of BASH. You could use other shells to run the commands needed to work on your skills, but if you're training for the real world of working on RHEL, why not use BASH?
Consider the first two certs in the Red Hat path, RHSCA and RHCE. RHCSA is designed to teach fundamentals of managing RHEL. RHCE is teaching the fundamentals of Ansible for the purpose of taking the things you learned with RHCSA and automating them potentially at scale.
-
RE: What Are You Doing Right Now
@dafyre said in What Are You Doing Right Now:
@EddieJennings said in What Are You Doing Right Now:
Quality saxophone time with major and minor scales = done. On to home Ansible stuff.
I haven't played mine in such a long time, I'd probably sound like a cat stuck in a blender, a dying duck, or some combination thereof.
My tone is acceptable, but trying to regain some technique.
-
RE: What Are You Doing Right Now
Quality saxophone time with major and minor scales = done. On to home Ansible stuff.
-
RE: What Are You Doing Right Now
Testing new Ansible control node deployments.
-
RE: What Are You Doing Right Now
Reading through the legalese of a work benefit.
-
RE: What Are You Doing Right Now
Being humbled as I test firewall rules on my home Edge Router Lite 3.
-
RE: sssd and user ID mapping
@Semicolon said in sssd and user ID mapping:
@EddieJennings we use a combination. We use the ids generated by sssd and automate the population of the AD attributes to align with them to ensure consistency. Where it comes in handy is when we have NFS mounts exported from an LDAP-aware NAS device. The NAS device doesn't natively understand the sssd mappings, and relies upon LDAP calls to find the accounts.
You can't really have a conflict, unless you were looking for a user and group to have the same number (which they can't with sssd, because it appends the principle's RID (padded to 5 digits). If you have a need to manually specify a UID/GID,, that would be for a local account, I presume. In those scenarios, we do create AD accounts that have manually defined UIDs that line up with the local user (always less than 1000) for the NAS appliance to find when evaluating access.
I'm curious. How do you gather the ids generated by sssd and populate them in to uidNumber and gidNumber attributes in AD?