About Ayotunde

Re-invent ...

Installing Mac OSX 10.15 Catalina on HP EliteBook Folio 9740m

Installing Mac OSX 10.15 Catalina on HP EliteBook Folio 9740m


You need to create the Installation USB on a Mac (real or a VM).
You can find VM images for Mac OSX suitable for use with Oracle VirtualBox or VMWare Workstation on the Internet. In this research, I used the Mac OSX 10.13 High Sierra VM deployed on VirtualBox to create the Installation USB for Mac OSX Catalina (I had instability issues when I tried to use the Mojave/Catalina VMs). Please remember to follow the instructions associated with deploying the VM on VirtualBox/Workstation – e.g., there are “vboxmanage” commands you need to run otherwise the VM will be stuck in a continuous reboot loop.
Also I found out the hard way that the latest VirtualBox (6.1.4-136177) crashed my Windows laptop on which I deployed the Mac OSX VM consistently once I started the VM. I then tried the older VirtualBox version 6.0.18-136238 and that worked with no issues. Also note that on Linux, you must register the VM (“vboxmanage registervm “) before running the other vboxmanage commands specified in the procedure for deploying the VM. You also need to add the Linux user you are running VirtualBox as to the Linux group vboxusers otherwise you will not be able to attach a USB drive to the VM. Remmeber to install the VirtualBox extension pack as well.


  • Login to the mac OSX VM
  • Download “macoS Catalina Patcher” utility abd use it to download the macOS catalina installation files from Apple
  • Download https://github.com/chris1111/HP-Probook-EliteBook-Package-Creator
  • The instructions for running it to create the boot installation USB are on the same page. There is also an English walk-through video at https://www.hackintosh-montreal.com/t7559-hp-probook-elitebook-macos#111778
  • Summary:
    – run the “Gatekeeper” app (it is in the HP-ProBook-EliteBook-Package-Creator directory after you decompress the downloaded zip file);
    – run the Packager (needs Internet access) to create the “Create Install Media HP Laptop” app; attach a (minimum size 16GB) USB drive to the MAC oSX VM;
    – run the “Create Install Media HP Laptop” app which launches disk utility app where you need to erase the whole USB drive with “Format” set to “Mac OSX Extended (Journaled)”, “Scheme” set to “GUID Partition Map”.
    – once erase is completed, exit the disk utility and you will get a drive list from which you select the drive you just erased/formatted;
    – you then get a dialog box asking you to select the location of your “Install macOS Catalina.app” (either “10.9 to 10.12” OR “10.13.to 10.15”), then browse to where you downloaded the installation files and select the “Install macOS Catalina” installer; the HP Probook/EliteBook creator app will then copy files to the USB;
    – once completed, it will automatically launch the “Clover EFI” installation app, click the “continue” button, change the installation location to the USB drive that was just created (likely named “Install macOS Catalina”), click on the “Customize” button, the relevant selections for my laptop are below, then click “Install” button:

-> Install Clover in the ESP
-> Drivers off
-> Boot Sectors -> Install boot0af in MBR
-> Clover for BIOS (legacy) booting -> Clover EFI 64-bits SATA
-> BIOS Drivers, 64 bit -> Recommended drivers (all)
                                     -> File System drivers (all)
-> UEFI Drivers -> Recommended drivers (all)
                          -> File System drivers -> apfs, Fat, HFSPlus
                          -> Memory fix drivers -> OsxAptioFixDrv
                          -> Additional drivers -> OsxFatBinaryDrv, PartitionDxe
-> Themes (select all)
-> Drivers Kext -> FakeSMC, VoodooPS2Controller


  • Once done, copy the Gatekeeeper application and the HP-ProBook-EliteBook-macOS.pkg post-installation package to the USB drive volume “Install macOS Catalina”
  • Eject the USB drive and plug it to your target HP laptop
  • Power on your target laptop, press ESC key to interrupt the boot process, press F10 to enter BIOS setup – make the changes recommended on the “HP ProBook EliteBook Package Creator” web page then save and exit. For my laptop, the BIOS settings are: Deactivate Fast Boot, deactivate “SecureBoot”, set “Boot Mode” to “UEFI Hybrid (With CSM)”, deactivate LAN switching, deactivate Wake On LAN and Wake on USB, “SATA Device Mode” to “AHCI”, disable firewire/IEEE1394, disable “Trusted Execution Technology (TXT)”
  • Boot the target HP laptop with the USB drive, use disk utility to erase the laptop’s disk – if you only see volumes and not the disk devices, select “View -> Show All Devices” from the Disk Utility menu (if planning to multiboot, use disk utility to create all the partitions you need – in my example I erased the HDD using “GUID Partition Map” scheme, then created 3 partitions: OSXHDD, LINUXOS, WINOS. I set all the non-OSX partitions set to type ExFAT), install the macOS Catalina to your newly formatted OSX volume.
  • When completed, reboot with the USB in place, once started from the USB, select the option to boot from the OSX disk you just installed Catalina to – the install will continue – when it reboots again, select the option to boot from the OSX disk again, it may reboot again, select the OSX disk again, it will then boot to the GUI to complete the setup – go through the setup wizard to complete the configuration and create your login user account.
  • At the desktop, open the USB install drive (should be named “Install macOS Catalina”), copy the Gatekeeper and HP-ProBook-EliteBook-macOS.pkg to your Desktop.
  • Run gatekeeper and choose “Disable” to allow you to run software from any source
  • Run the Post-Installer “HP-ProBook-EliteBook-macOS.pkg”, change the installation target location to your laptop disk, select the customize button, and select all the options necessary for your specific laptop (see video on the creator web page), and complete the clover installation. My customized selection were as follows:

HP-ProBook-EliteBook-macOS
        -> HP Laptop Clover V2.5K r5103
                  -> 7 series macOS 10.12>10.15 -> Elitebook 9x70m
                  -> Intel HD 3000/4000 Graphics -> Intel HD 4000 -> Low screen 1366×768
                  -> HDMI -> HDMI Low screen
                  -> Fan Patch -> FanSmooth
        -> SSDT Generator
        -> Airport WIFI Fix -> AirportBrcmFixup (for Broadcom or Atheros for Atheros card)
        -> Bluetooth
        -> HWMonitor
        -> Applications

  • DO NOT reboot the laptop yet otherwise you will get kernel panics and it will be stuck in a loading/panic/reboot loop.
  • Open Terminal app:

# sudo su -
# mount -o rw /
# mkdir /tmp/efi
# df -h
# mount -t msdos /dev/disk0s1 /tmp/efi (*see note below)
# cd /tmp/efi/EFI/CLOVER/ACPI/patched/
# rm DSDT.dsl DSDT.aml SSDT.aml origin.dsl

Note: the EFI partition on the HDD may already be mounted (usually under /Volumes/ESP) so this mount command will throw a “Resource busy” error. If it is already mounted as /Volumes/ESP then you should “cd /Volumes/ESP/EFI/CLOVER/ACPI/patched/ ” in order to delete the files indicated above.

  • Edit /tmp/efi/EFI/CLOVER/config.plist and set the DefaultVolume to your OSX volume name, and the ScreenResolution key to your actual resolution (1366×768 for my laptop) if necessary.

# cd /
# diskutil umount /tmp/efi

Fix Sound: To get sound to work properly (AppleALC kext that comes with the post installer enables the headphone jack but not the in-built speaker), you need to use the VoodHDA kext:

  • Download VoodooHDA 2.9.2 install package from https://github.com/chris1111/VoodooHDA-2.9.2-Clover-V15/releases
  • Unzip the downloaded file and open/run the package
  • Click the Continue button (x3), agree to the license terms, then click the Customize button -> Expand “VoodooHDA Clover UEFI/ESP” -> Select “macOS Catalina” -> “Install”

Eject the USB install drive, and reboot your “Mac” laptop, it should come up with WiFI, LAN, SD card, and Sound fully functional.

NOTE: the SSDT.aml was responsible was responsible for the continuous reboot “memory panic stackshot succeeded …” kernel panic that made my laptop continuously reboot. The only file you should have in the EFI/CLOVER/ACPI/patched/ directory in the EFI partition on your boot volume is the SSDT-FIXCAT.aml

Bootloader Setup: The easiest way to use CLOVER bootloader is to mount the EFI partition and copy EFI\CLOVER\CLOVERX64.efi to EFI/Boot/BOOTX64.efi (yes, overwrite BOOTX64.efi if prompted). Note that if you are multi-booting and you installed Windows or Linux after installing Mac OSX, you may need to repeat the copy again afterwards if you still want to use CLOVER bootloader. Alternatively, you may setup your laptop (BIOS) to use CLOVER by setting up the BIOS: System Configuration -> Boot Options -> Define Customized Boot Option -> Add -> enter “EFI\CLOVER\CLOVERX64.efi” -> in “UEFI Boot Order” (Move “Customized Boot to the top position) -> Save -> Exit. If you choose this alternative option, you should delete any other file that is in EFI/Boot/ directory.

Fun stuff: You can cast sound or video or your laptop desktop to a recent TV such as the Samsung series 8 that supports AirPlay. If I select my TV, I am prompted for the Airplay code which is displayed on my TV. You can even decide whether to just mirror your desktop to the TV or use the TV as a second screen (“As Separate Display”)!

Other: In Microsoft Windows, to mount the EFI partition on a O/S disk, run “mountvol <driveletter>: /s” from any admin cmd.exe session. To mount the EFI partition on a USB drive, run “mountvol” which will list all available volume, you can then run “mountvol <driveletter>: <\\?\volume-name-as-displayed-in-mountvol-output>”

Disclaimer: if you like Mac OSX buy a real Mac. This is for educational research purposes only.

Acknowledgement: chris1111

Refs:
https://github.com/chris1111/HP-Probook-EliteBook-Package-Creator
https://www.hackintosh-montreal.com/t7559-hp-probook-elitebook-macos#111778
https://unix.stackexchange.com/questions/129305/how-can-i-enable-access-to-usb-devices-within-virtualbox-guests

Vampire Diaries

For some reason I cannot donate blood. Back in 2017 I volunteered but was turned down because I hadn’t been in the country long enough and my last country of residence was Nigeria which is known for malaria.

Fast forward some 2.5 years and I got a notice from the Red Cross that I can now donate blood. In January the Red Cross had a blood donation drive in my office. Three different people attempted to draw blood from both arms. Lucky that I am not squeamish or afraid of needles because the needle they used looked humongous compared to a regular hypodermic needle. After poking both my arms several times without getting any blood to flow into the tube talk-less of the bag, they finally gave up. I joking asked the lady if she’s sure I am alive.

Another 2 months passes and I got another call that they need blood and every “whole blood” (as opposed to plasma for example) donation can potentially help three people. I signed up again and drove to the center the following morning at 10 AM (a Saturday). We basically repeated the same “show” from two months earlier. The youngest person on staff (and I suspect the most junior had a go first). In and out, left and right the needle went, she’s sure she’s in the vein but no blood comes out. She got a little blood into the tube but that was all. Finally she calls her colleague who she says is very good. He too starts on the same arm. I mentioned the January issue and he kind of laughed it off stating they probably just weren’t good enough to make it happen. After a while, his younger colleague suggested he may want to try my other arm as the vein seems to be more “hydrated”

So he switched to the other arm and repeated the same process. Finally he gave up and called the most experienced staff there who I think was the leader as well. She comes and repeats the same process and actually got the flood flowing slowly through the tube but she says at that rate, the device will time out.

I asked if she had any idea what was going on and she said while she’s not certain, it maybe that my platelets are overly aggressive and once the needle goes in, they react and start blocking the ingress point – basically clotting. The lady suggested that if I really wanted to help, seems it appears I can’t donated blood, I could donate my time in other ways such as welcoming people and ensuring they sign in properly when they arrive to donate blood.

I am going to give it one more try and after that if they still can’t get blood out of my veins, I may likely have them take my name off their list.

Valentine Blues

I have not been fair to all the retailers hoping to make a killing today. I confess I haven’t blown my fair share of cash on Valentine’s day(s). As far as I can remmeber I have only taken a lady out once on Valentine’s day and that ended disastrously – no not the night itself, that just left me “feeling one way” or “feeling somehow” in a manner of speaking common where I grew up – I was instead referring to the whole courtship attempt.
So tonight was not any different from the same night for several decades. I meant the whole relationship or lack of it to be accurate and not because I didn’t want it to happen.

“What about bumble?” asks a concerned cousin over the phone, “I have a lot of luck there” he says as his voice drops lower. He’s married. I am past judging anyone. I have my excuse ready “Mormons don’t do bumble”. Of cos that’s not true, there are Mormons on bumble but most want a fellow member of the church.

Bernie (not his real name) says to me in the afternoon: “Any plans for tonight?”. He is my house mate or more accurately my tenant.
I answered “No not really.”
He says “Damn bro! Ok, Ok, are you getting any p**sy tonight?” he can be persistent (for lack of a better word). He is 23.
“Not likely” I said.
“Well James isn’t getting any for sure.” James (not his real name) is our other housemate who actually has a wife, a home, and kids in the next state some 10 hours away. He calls home every night to talk to his kids.
I laughed, “Well you can take one for the team.”
“Definitely bro! I will!”
I heard him rev his Porsche as he headed out about an hour later.

James comes home and asks if the clothes in the washing machine are mine. I said it is likely Bernie’s.
“Well, he needs to learn to do his laundry when he is going to be home. He should realize someone else might want to use the washing machine.”
I offered to go check on the machine. Since he had already washed the large blanket that was in it, I moved it to the dryer and set it to 50.
A lady I didn’t know had put up a flier in an Afro group I belong to for a movies night. I got dressed and headed out. There were only 4 of us there which I guess is a good thing – I assume all the others in the group had partners to spend the night with. It is actually a studio. We watched Midsommar which is a weird movie.
Afterwards, I considered going to a bar to hang out for a while, but then I realize most people out on the town would be in pairs and it was already going on 11 PM. Too late to get into trouble. I set google maps to take me home.

As I flew home doing 77 in a 70, I had “The house of the rising sun” on repeat on my car stereo. I had the beginning of a story involving a serial killer that murdered his victims to this particular soundtrack but it didn’t come together so I dropped it. I have written sporadically in recent times – it is strange how some memories come back to you when the context is right – “Go find someone you can impress by your writing” she had said.

The female electronic voice was my date for the night.

Crossing America

I left Minot on the fourth of January 2018 after having lived there for a year. My car was packed full of everything I could manage to fit into it. I then made my way to Southfield (MI) with the intention of staying with a cousin for a week or two. That didn’t work out as madam went rogue, so I checked into an AirBnB with a young couple. They had a couple of cats who mostly lived in their room. The bigger one was several years and wouldn’t give you the time of day. The young one was about 6 months or so and would make a dash for the couple’s room if you so much as looked at it. The apartment had two rooms and the room I stayed in was the AirBnB room and the single bathroom was shared. They gave me the run of the whole place which was nice. The only thing that was of concern (for their health) was that they smoked way too much – fortunately not inside the apartment – but even in the January “freeze” they made the trip to the balcony several times to go smoke when they were home.

After 10 days, I packed up once again and headed south to Indianapolis where I stayed with another cousin and his family. I slept on the couch in the living room throughout which suited me perfectly as it meant I could watch TV as much as I wanted. Of course I paid for my late nights when the kids boisterously get ready for school in the mornings. All these while, I kept churning out job applications like a mill. I finally got an invite for a job at HPE in Aplharetta (GA). After another 10 days or so I was back on the road. Checked into an AirBnB that had a curious set up. It was a fairly large house with three rooms upstairs. Two rooms including the one I stayed in shared a bath and the master had a bath en-suite. The ground floor had a kitchen and a fairly open area which was the living room. This had about 4 beds as it seems they were also had low-paying short staying tenants. There was a very young couple (late teens or so) that had sectioned off a part of the living room with a hanging sheet, and a couple of other guys also staying on the ground floor. I guess the AirBnB guests stayed upstairs. There was a lady as well as the person running the place on behalf of the actual host listed on the AirBnB website – he lived in the master bedroom. The house was in a quiet middle-upper class area and I understand people actually lease some of these vacant homes and then run them as AirBnB guest houses.

I thought the interview went well and after not getting any feedback from HPE after another week or so, I was back on the road to my big cousin’s place in North Carolina. It was while I was staying with my uncle that I got the invite for a video interview for the job with Oracle. I was interviewed by the lady (Ericka) who would be my manager and a colleague (John). The interview possibly lasted 15 to 20 mins but the questions were not particularly difficult. I got a job offer some days afterwards. Most days I drove to my aunt’s place in Charlotte (about 20 miles away) and spent the day with her.

After a couple of weeks, I set out across the country to Corona (CA) where I stayed another couple of weeks with another cousin. It was one of those new luxurious housing complexes with a swimming pool in the center of the courtyard. I never did make it into the swimming pool – I mostly watched TV all day with the intention of getting into the pool at least once before I left California – didn’t happen. Finally it was time for the last leg of my journey to Lehi (UT) where I resumed work. Excluding the local journey within each city where I had stayed, I had covered at least 5,300 miles and possibly closer to 6,000 miles all side trips factored in.

I have since then gone by air to New York (passport renewal) and Florida (on the job training), but to truly “cover” the country I need to (at least) get to Seattle or Portland at one end and maybe Maine at the other.

across_usa

Don’t change

Don’t Change

I was talking to a friend on the phone as we walked into the “Ivie juice bar” in Orem. The lady behind the counter took our orders and I sat down to wait.
A lady walks out from the backroom to deliver a completed order to another sitting customer.
I got up once she returned with our order and engaged her in conversation. Something I wouldn’t have done in another life.
She laughed and noted that I cut off my friend in order to hand her my phone. She could see his picture on the screen. I said this was more important and he can always call me back. She appeared eager enough to give me her number. As she handed back my phone, my left hand which had been in my pocket up until that moment came out. Her eyes flashed very briefly at the hand and I saw her expression change ever so slightly.
I know that look and I know that smile that is a mixture of guilt and regret. May be it is 5% in my head, but I am certain it is 95% true.
I said I will call her as she walked away to which she nodded.
I sent a text the next day. No response.
I called two days after and let it ring until it went to voice mail. I didn’t leave any messages. There was no point.
You are different, you are special, why would you want to be normal when you were born to standout?
Don’t get me wrong, I subscribe to not being “normal”: be creative; be idiosyncratic; be colorful, be flowery; but be deformed (in any way) is not one of those normal you shouldn’t be. If I had the power, I would grow a normal hand with normal fingers. You would think at my age I would be used to it and sometimes I almost convince myself that I am, but events such as these are there to remind me that I am indeed different – not necessarily in a positive way.

Time proceeds without stopping and so must I – after all nothing is certain except death and taxes.

Dual-Booting Mac OSX and Windows on MacBookPro

NOTE: Thanks to @TGIK on the thread https://discussions.apple.com/thread/250137979 who came up with the solution.

System: MackBook Pro (13-inch, Late 2011), Intel Core i5, 4GB RAM, Intel HD Graphics 3000, SuperDrive

Background:

  • Purpose of this guide: Due to poor EFI support on the earlier MACs (think 2012 and earlier?), when Windows is installed in EFI mode, the audio card does not work (EFI boot mode exposes devices in a different way, which effectively leads to audio not working). This guide uses registry DSDT override in Windows to enable the audio card without using any third party bootloader so your Mac OSX is more or less still vanilla 🙂
  • I first tried to install Windows with BootCamp but got the “GPT/MBR wont install” issue after EFIbooting the Windows 8.1 USB.
  • I then converted the Hybrid GPT/MBR partition scheme the BootCamp had created to GPT with protected MBR by:
    (1) disabling SIP – boot the MAC while holding down command+R to get to OSX Recovery, start Terminal from the Utilities menu, run “crsutil disable”, restart the MAC.
    (2) download gdisk and install gdisk (https://sourceforge.net/projects/gptfdisk/ ), determine your disk device name (e.g., from Disk Utilities), update the partition by running gdisk against the disk, selecting x for advanced, type n, then type w to write, Y to accept changes.
    sudo gdisk /dev/disk0
    x (ENTER key)
    n (ENTER key)
    w (ENTER key)
    Y (ENTER key)
    (3) run gdisk again and check the output that the partition scheme is now listed as GPT with protected MR; quit gdisk
    (4) You may want to re-enable SIP (boot while holding Command+R to get into OSX Recovery, start Terminal from the Utilities menu, run “crsutil enable”, restart the MAC.
  • I installed Windows from the prepared USB (press Option key when booting and select the EFIboot – it should have a USB icon). I chose to reformat the partition I had created in Mac OSX for Windows in the installation wizard.
  • In Windows, I installed the BootCamp Drivers (The BootCamp Assistant should have copied it to the USB for you, otherwise download them from the Apple website). This enables enabled WiFi and everything else but with no audio and the audio device in device manager had the error “This device cannot start. (Code 10)”
  • I then found @TGIK’s solution thread on Apple’s Support Forum after which I did the following to get the audio to work:
  1. Boot into Mac OSX and use MaciASL software to dump your DSDT in OSX : https://sourceforge.net/projects/maciasl/
    Install and run MaciASL. From the MaciASL menu chose the save as disassembled DSL option e.g., with filename DSDT (MaciASL will tag on extension DSL once you choose the right file type in the “save as” dialog box)
  2. Copy the DSDT.DSL to a USB or put it online (e.g., your email or google drive)
  3. Re-boot the MAC into Windows

The remaining steps are extracted from the guide: https://egpu.io/forums/pc-setup/fix-dsdt-override-to-correct-error-12/

4. Download and install the required tools:

  • Windows Binary Tools (WBT – Dec 2016) extracted to c:\dsdt directory. [ https://acpica.org/sites/acpica/files/iasl-win-20161222.zip ]
  • Windows Driver Kit (WDK), which contains the Windows ASL Compiler (asl.exe) [ https://go.microsoft.com/fwlink/p/?LinkId=526733 ]
  • Notepad++ text editor
  • Copy WDK’s ASL compiler into the c:\dsdt directory. Do this by opening Command Prompt (run as administrator) and then copy-and-paste the commands below: mkdir c:\dsdt
    c: & cd \dsdt
    set 64bit_OS_asl=”C:\Program Files (x86)\Windows Kits\10\Tools\x64\ACPIVerify\asl.exe”
    set 32bit_OS_asl=”C:\Program Files (x86)\Windows Kits\10\Tools\x86\ACPIVerify\asl.exe”
    copy /y %32bit_OS_asl% c:\dsdt > nul & copy /y %64bit_OS_asl% c:\dsdt > nul
    if not exist c:\dsdt\asl.exe echo ERROR: Failed to copy asl.exe to c:\dsdt

5. Copy the DSDT.DSL into the c:\dsdt folder

6. Edit the DSL as described and add the QWordMemory section (I used the “Intel method” as recommended in the egpu.io guide). See (iii) under section “OPTION 1: Use the Intel method” i.e.:
… With Notepad++, open the resultant c:\dsdt\dsdt.dsl file and search for ResourceProducer. Beneath it will be a series of “DWordMemory” resource entries. Under the last DWordMemory entry in that area, typically above the _CRS method, add a ‘QWordMemory’ (64-bit) entry as shown in red below. …

(NOTE: the lines starting with “QWordMemory” to the line ending with ” TypeStatic)” are the lines introduced into the DSDT.DSL file)

DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
   0x00000000,         // Granularity
   0x000A0000,         // Range Minimum
   0x000BFFFF,         // Range Maximum
   0x00000000,         // Translation Offset
   0x00020000,         // Length
   ,, , AddressRangeMemory, TypeStatic)
QWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite,
   0x0000000000000000, // Granularity
   0x0000000C20000000, // Range Minimum,  set it to 48.5GB
   0x0000000E0FFFFFFF, // Range Maximum,  set it to 56.25GB
   0x0000000000000000, // Translation Offset
   0x00000001F0000000, // Length calculated by Range Max - Range Min.
   ,, , AddressRangeMemory, TypeStatic)
})
   Method (_CRS, 0, Serialized)  // _CRS: Current Resource Settings

7. Create an updated dsdt.aml file from the update DSDT.DSL file (using the commands):
c: & cd \dsdt
iasl -ve DSDT.DSL

Note: the iasl actually creates a file called iASLcnnPCo.aml. Just rename it to anything you want e.g., DSDT.AML

8. Load the updated/modified AML using registry DSDT override:
cd c:\dsdt
asl /loadtable DSDT.aml
bcdedit -set TESTSIGNING ON

9. Reboot Windows and you should have audio working when it comes back up.
(I noticed two devices in the “Sound, video and game controllers” section in Device manager: “Cirrus Logic CS4206B(AB 28)” and “High Definition Audio Device” (with the error “This device cannot start. (Code 10)”).

– – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –

** If your MAC is equipped with a DVD drive (e.g., SuperDrive), you can avoid this long guide by installing Windows in legacy MBR boot mode. Write the Windows ISO to a DVD-R media (or if you have the Windows install DVD already even better). After creating a suitable partition for Windows within Mac OSX, just boot the MAC while holding the Option key, choose to boot from the DVD drive (not EFIboot !), and install Windows into the target partition. Install BootCamp Drivers within Windows and you are done! Everything should just work.

*The Windows USB can be created with unetbootbin, Rufus, or the Windows 7 USB/DVD creator tool.

Referencess:
https://mac.filehorse.com/download-daemon-tools/
https://sourceforge.net/projects/gptfdisk/
https://docs.google.com/viewer?url=http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
https://apple.stackexchange.com/questions/8044/how-can-i-install-boot-camp-off-a-windows-7-usb-flash-drive
https://www.cnet.com/how-to/install-win-7-on-macbook-air-from-a-usb-drive/
https://macriot.com/mcrt/2014/12/08/windows-cannot-be-installed-on-to-this-disk-the-selected-disk-is-of-the-gpt-partition-style/
https://bl.ocks.org/balupton/1603bb4b7769d1af0fd7
https://superuser.com/questions/508026/windows-detects-gpt-disk-as-mbr-in-efi-boot/508454#508454?newreg=06d03dd9848a46babff1704022ce593c
https://www.quora.com/How-do-I-turn-off-the-rootless-in-OS-X-El-Capitan-10-11

The Border Collie

Did you read about me?
Indestructible, or so I thought
Did you hear of me?
Inexhaustible, the tales I wrought

The open road is where I live
The wind in my face
A hard man with no give
Every stop is a new base

I used to wear full body armour
Over my Under Armour
The heat and the tight fit
My excuse for no extra kit

Left to my discretion
I ditched the protection
Forth, I sally
The law is my ally

Gas and oil and grease – my blend
Coming around the bend
The breaks didn’t save me
The road broke me

Doing sixty in a forty
Ahead of my party
It was a Border Collie
It ended my folly

08-Sep-2019

The Joshua Tree

Meet me at the Joshua tree
When the autumn is in full bloom
When you have been set free
In the dark of night – in the gloom

Meet me at the Joshua tree
The stars will be our witness
They did not flee
A light in the blackness

Meet me at the Joshua tree
In my dreams and yours
Beside the inland sea
Away from these shores

Meet me at the Joshua tree
But only if you are truly free

Scorez I

Big guy: Hey bro. Where are you from?
Me: Nigeria. You?
BG: Guess
Me: Not sure but definitely Polynesian
BG: Samoa. What’s your name?
Me: A-Y. Yours?
BG: Tau
BG: Do you play rugby?
Me: No
BG: Why not?
Me: I am too small (he’s probably 6 5” with the rock solid “Polynesian build”)
BG: What are you reading? (He opens the book). I had my hand between the pages.
Brief pause. Uncomfortable silence
BG: Oh. Sorry I didn’t notice the hand.
Me: No probs at all
BG: What happened?
Me: That’s how I was born. Congenital.
BG: Ok. What do you drink?
Me: Anything
BG: Well have a beer and a shot on me!

06-June-2019

Meals on Wheels

Meals on Wheels

I decided to volunteer for Meals on Wheels (a government program that provides meals to home-bound senior citizens).
I would join the thousands of volunteers that on any given day deliver lunch to senior citizens all over the country. For me that would be delivering lunch to about 9 people every other Monday. The food is prepared with the help of inmates at a correctional facility, then shipped to some center where volunteers like myself pick them up (already packed in a heater for the meal and a cooler for the milk, fruits, etc). I will then drive to each house on a list (“route”) and drop off the food. Some of the recipients have instructions on what to drop off (some don’t receive milk or bread) and what to do at the house (go right in; knock and wait; there’s a dog but it is harmless; etc).

I didn’t expect it to be as exhausting as it turned out to be. My first drop off was at a managed apartment complex for senior citizens, spent some time looking for the right building before making it to the right floor then the right apartment.
My second drop off almost had me in tears – a very old stooped lady seated by herself in this quaint house. I knocked and went in. She asked me to put the food on a little table right in front of her – I really can’t tell exactly why I was emotional for a few minutes after I got back to my car – maybe a combination of remembering my father; the fact that ultimately we are all alone; and the lady’s condition.

The rest got better. I dropped off a couple of food packages in a house where the 86-year old lady was still as feisty as ever. When I handed the trays over to her, I asked if she could manage, to which she responded with a twinkle in her eyes: “Do you know how old I am? I am 86 years and I can still whoop the world’s arse!”

From typing in the wrong address in Google Maps, to hunting down house addresses, it was quite interesting.

I did go to the house with the dog. It was this very tiny Chihuahua which was very aggressive – but like that meme that goes “Not all Australian animals will kill you. Don’t get me wrong … he wants to. He just can’t” – the dog’s size made it hilarious – but that level of aggression would have made it very dangerous if it wasn’t “size-challenged”. I knocked on the door, and a young boy opened it and I handed over the food. Almost immediately the dog went on a barking and growling spree which was loud enough to get the attention of the next door neighbors. The boy tried to call it to heel but it would have none of it. It followed me out with the boy in tow. Every few steps I took it would charge at my feet but stop just short of actually nipping at my trouser legs.


By the time I was done 1.5 hours later, I was exhausted. I got back to the senior center where I had picked up the packages from to return the heater and cooler.
I could see it was basically run by other senior citizens who were packing the food and so on. The old lady that attended to me earlier asked how it went and I told her a little difficult but since it was my first time, to be expected. An old gentleman that also worked there said “Thank you for doing this.”

Note: they have chapters all over the country if you are interested in volunteering.