Send F11 key to nested ESXi in Proxmox on Mac
When press FN-F11 key to VNC browser window of Proxmox VM console, it only shows the desktop.
To send the F11 key to ESXi installation screen, press FN-CMD-F11 instead.
When press FN-F11 key to VNC browser window of Proxmox VM console, it only shows the desktop.
To send the F11 key to ESXi installation screen, press FN-CMD-F11 instead.
The default dd
command in MacOS doesn't have progress
option.
Send SIGINFO
signal to the dd
command.
By pressing the Control-T
character in dd
terminal, you are sending the same SIGINFO
signal to the dd
command.
Run following command in another Shell.
pkill -INFO -x dd
or
kill -INFO <pid>
I tried, but failed for Control Arrow Keys. Anyway I decided drop this idea, because it is a partial solution, the Control Arrow Keys doesn't work.
Create a file ~/Library/KeyBindings/DefaultKeyBinding.dict
has following contents
{
"\UF729" = moveToBeginningOfLine:; // home
"\UF72B" = moveToEndOfLine:; // end
"$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift+home
"$\UF72B" = moveToEndOfLineAndModifySelection:; // shift+end
"^\UF729" = moveToBeginningOfDocument:; // ctrl+home
"^\UF72B" = moveToEndOfDocument:; // ctrl+end
"^$\UF729" = moveToBeginningOfDocumentAndModifySelection:; // ctrl+shift+home
"^$\UF72B" = moveToEndOfDocumentAndModifySelection:; // ctrl+shift+end
"^\UF702" = "moveWordBackward:"; // ctrl+leftarrow
"^\UF703" = "moveWordForward:"; // ctrl+rightarrow
"^$\UF702" = "moveWordBackwardAndModifySelection:"; // shift+ctrl+leftarrow
"^$\UF703" = "moveWordForwardAndModifySelection:"; // shift+ctrl+rightarrow
}
Alternatively, change Line to Paragraph, depending on your prefers.
It is very easy for Apple mouse understands wrongly, and take action to back to my previous page. As the result, my few hours working on WordPress disappered.
Then I start using normal mouse, but hard to change between screen using keyboard, my remote control and virtual machine doesn't understand the keys, and holding keyboard actions made wrong password in login screen.
Then I found the way to disable swipe action as below
system preferences>trackpad or mouse>more gestures tab>uncheck "swipe between pages".
I just accidentally swiped right on my web page...how do I get it back?
When performing nslookup
, the IP can be returned. But when performing ping
, return following error
ping: cannot resolve <hostname>: Unknown host
The second DNS server isn't resolving the IP address.
Another DHCP server provide different DNS server.
killall -HUP mDNSResponder
Recently, upgrade iMac memory from 4GB each to 8GB. Officially this 2011 iMac only supports 4GB each, but 8GB memory can be installed.
It can also install mixed memory size and mixed speed. I also installed the memory which supported both 1.3v and 1.5v.
Recently upgraded my DS1812+ memory, the backup job was stuck, but I don't know whether they are related. Because I was rebooting in the morning, but the backup was stuck at 4pm.
To fix the issue, run following command
sudo killall backupd
Some people mentioned commands
sudo service com.apple.metadata.mds stop
sudo service com.apple.metadata.mds start
But there is no service
command in my MacOS.
Open Disk Utility
View => Show All Devices
Select Disk (not partition)
Click on Erase or Partition
Select GUID Partition Map in Scheme
Select APFS in Format
The reinstallation was hung with following message:
Preparing to restore "Machintosh HD"...
After a few hours, still the same. Hard reboot later found that no modification in old OS, even requested erasing the disk.
Formatted disk before retry, got same issue.
The possible issue could be that the Mac can not reach Time Machine backup, because there is no blinking of the backup USB disk.
Install fresh OS, then start performing OS transfer from Time Machine backup.
Download following packages, install first two packages.
Xcode_10.1.xip
Command_Line_Tools_macOS_10.13_for_Xcode_10.1.dmg
Kernel_Debug_Kit_10.13.6_build_17G10017.dmg
Swift_5_Runtime_Support_for_Command_Line_Tools.dmg
Swift_Playgrounds_Author_Template_for_Xcode_10.xip
Font_Tools_for_Xcode_11.dmg
Additional_Tools_for_Xcode_10.1.dmg
Run following command to install
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"