Dear reader,
Recently I updated my Windows version of my MacBook Pro 16,1 BootCamp setup to Windows 11. Now I ran into the problem that my build in keyboard and trackpad were not working anymore. I had to overcome this issue by connecting a separate keyboard and mouse on a USB port.
I downloaded the software in the BootCamp utility on macOS that is compatible with my laptop, in this case version: Boot Camp drivers 6.
What Mac are you using?
iMac (Retina 5K, 27-inch, Late 2015)
Model Identifiers: iMac17,1
What version of OCLP are you using?
2.3.1
What OS version do you have installed or are trying to install?
Installed: Sequoia 15.3.2 (24D81)
What exactly is the problem you are facing?
After installing OCLP 2.3.1 to disk my iMac refuses to boot. At boot I press the Option key to get the menu I choose the blue OCLP icon.
Boot into the Windows installer
On the first screen press SHIFT + F10
# diskpart # list disk # select disk 0 # list part Look for the Windows partition # select part 3 # assign letter=W # format quick fs=NTFS # list volume Look for the EFI volume # select volume 2 # assign letter=Z # exit # D: Goto the USB installer of Windows # cd D:\sources # dir install* The file install.
# hdiutil convert /path/to/refit-0.14.cdr -format UDRW -o /path/to/refit-0.14.img # diskutil list # diskutil unmountDisk /dev/disk2 # sudo dd if=/path/to/refit-0.14.img.dmg of=/dev/rdisk2 bs=1m Using rdisk2 here seems to speed up things # diskutil eject /dev/disk2
/home/martijn/Downloads/concourse $ curl -LO https://concourse-ci.org/docker-compose.yml $ cat /etc/systemd/system/docker-compose-concourse.service [Unit] Description=Docker Compose Application Service for Concourse Requires=docker.service After=docker.service [Service] Type=oneshot RemainAfterExit=yes WorkingDirectory=/home/martijn/Downloads/concourse ExecStart=/usr/bin/docker-compose up -d ExecStop=/usr/bin/docker-compose down TimeoutStartSec=0 [Install] WantedBy=multi-user.target