jo
  • Home
  • Arthur
  • Photos
  • Hobbies
  • About Me
  • Blog
  • coronavirus
  • Gallery
  • Home
  • Arthur
  • Photos
  • Hobbies
  • About Me
  • Blog
  • coronavirus
  • Gallery

WDS PXE boot fails with Dell Precision 3460 and AIO 7400

12/29/2022

0 Comments

 
The reason boot.win doesn’t boot is because the Dells are too new and missing network drivers.
Picture
Solution: install the following network drivers from
​https://www.dell.com/support/kbdoc/en-us/000109842/dell-command-deploy-driver-packs-for-precision-models
Picture
Very important: after adding three drivers in wds, and enabling them, do not forget to right click on the boot image and add the drivers there, so the boot image to rebuild including the network drivers.
0 Comments

Cannot login initially Outlook 365 on Mac

11/24/2022

0 Comments

 
Close Outlook 365.
Go to folder
  • ~/Library/Group Containers
Erase directories:
  • UBF8T346G9.ms
  • UBF8T346G9.Office
  • UBF8T346G9.OfficeOsfWebHost
Empty the trash bin.
Start Outlook 365.
Make sure when you are using MFA, you are using MS Authenticator for confirmation, not SMS code. If you use SMS code to confirm MFA, you'll end up with the same problem.
0 Comments

LG LRDCS2603S /00: How can I take out the pin from the fridge door bottom hinge for reversal?

3/25/2022

0 Comments

 
I recently purchased an LG Fridge (Model LRDCS2603S/00) and am attempting to reverse the door (so it opens from right to left instead of left to right). I have been following along in the manual how to do so and have come to a snag. When attempting to switch the center assembly hinge, I am unable to loosen the pin. The manual says
Use a 1/4 in. hex socket wrench to loosen the hinge pin (1) and remove it.
See the image of the step:
Picture
But when I attempt to do so, it doesn't budge at all - not even a turn or anything. I attempted a normal hex screwdriver, a socket wrench, and I even used my drill with 1/4 in. attachment - I ended up marring the pin head so bad it was no longer able to be grabbed with the wrench. I decided to purchase a new assembly thinking there was something wrong with my part, but the new one has the same issue. Here is an image of my new part:
Picture
Has anyone gotten past this issue before and have suggestions on how to proceed? I know links are frowned upon, but if it helps, here is the link to the refrigerator owner's manual and a youtube videoshowing how it is done.
EDIT
As per requested by Criggie, here is a view from the underside:
Picture
And a close up of the pin (the little marks around it are where I was trying to hit at it with a hammer and flathead):
Picture

And the answer is …

It took me a new bottom hinge ($40 from LG’s website, p/n AEH75957701 Center Hinge Assembly) to learn how. Simply make sure your 1/4” hex range goes all the way in the hinge’s pin and unscrew it as a regular screw. That’s all. On the photo is my original hinge which I managed to unscrew with an ease, after I knew what to do. The manual has to read “unscrewed like a regular screw” instead of “loosen”.
Picture
0 Comments

remove old ubuntu kernel/s

1/19/2022

0 Comments

 
 ​$ uname -a
Linux CGAsync 5.11.0-1022-azure #23~20.04.1-Ubuntu SMP Fri Nov 19 10:20:52 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

$ uname -r
5.11.0-1022-azure

$ dpkg --list | egrep -i --color 'linux-image|linux-headers|linux-modules' | awk '{ print $2 }'
linux-headers-5.11.0-1021-azure
linux-headers-5.11.0-1022-azure
linux-headers-5.11.0-1025-azure
linux-headers-azure
linux-image-5.11.0-1022-azure
linux-image-unsigned-5.11.0-1021-azure
linux-modules-5.11.0-1021-azure
linux-modules-5.11.0-1022-azure

$ sudo apt purge linux-headers-5.11.0-1021-azure linux-modules-5.11.0-1021-azure linux-image-unsigned-5.11.0-1021-azure
0 Comments

clean sysprep image and dism image capture

10/17/2021

0 Comments

 
these in red vary.

to modify the image you are going to prep you might need these locations and commands

Windows 10 desktop shortcuts all users:
C:\Users\Public\Public Desktop (hidden)

Windows 10 taskbar LayoutModification.xml location:
C:\Users\Default\AppData\Local\Microsoft\Windows\Shell

Taskbar shortcuts pointing to in the file above:
C:\ProgramData\Microsoft\Windows\Start Menu\Programs

Zoom 32/64bit MSI installing options:
ZoomInstallerFull.msi ZoomAutoupdate=True zNoDesktopShortCut=True ZConfig="EnableSilentAutoUpdate=1" ZConfig="AlwaysCheckLatestVersion=1"

to put an existing image in oobe mode, press windows key + R and type

%windir%\system32\sysprep\sysprep.exe /audit /reboot

​after rebooting, check options "generalize" and "shutdown", delete all existing users and proceed with the commands below:

run "disk cleanup"

from cmd run:


dism /Online /Cleanup-Image /StartComponentCleanup /ResetBase

shutdown the vm using the sysprep program, change the boot order to boot from winpe, boot winpe. from diskpart assign A (the disk you will capture from) to the source, and B to the target (the disk where you'll put the .wim on).

small diskpart commands guide: 

diskpart
list disk
select disk 0
list part
select part 3
assign letter=A
select disk 1
create part pri
select part 1
format fs=ntfs quick
assign letter=B
exit

run command:

dism /Capture-Image /ImageFile:B:\install.wim /CaptureDir:A: /Name:"Win 10 Pro" /Compress:max
0 Comments

CentOS 8 Removing old kernel/s

3/15/2020

0 Comments

 
​dnf remove $(rpm -qa | awk '/^kernel/' | grep -v $(uname -r))
0 Comments

Centos 7 Apache 2.4 and Azure AD SSO

3/15/2020

1 Comment

 
The configuration below took me a bit, so I am putting it down to save you the time I spent.

You have to have a running Apache2.4 with mod_ssl and, configured SSL certificate in place already.

Below is the conversion matrix you need, in order not to get confused.
​I used LastPass to generate my password, but using anything else is fine.
Picture
Use yum to install these libraries and mod_auth_openidc

yum install jansson hiredis mod_auth_openidc jose

Below are my Azure AD parameters followed by my exact working auth_openidc config. It is placed in my "/etc/httpd/conf.d/auth_openidc.conf". The config file, begins with "OIDCProviderMetadataURL" =]
Picture
Below is how you add a connector (app registration)
Picture
These are the configuration settings in Azure Ad once you add the connector above.
Picture
This is how you get all the values you need. Just copy and paste them.
Picture
That URI below and the one in the apache configuration have to be the same.
Picture
Just add new client secret and Azure AD will generate a password for you, which password you will use in the apache configuration.
Picture
1 Comment

    Author

    Write something about yourself. No need to be fancy, just an overview.

    Archives

    October 2021
    March 2020

    Categories

    All

    RSS Feed

Powered by Create your own unique website with customizable templates.