Problem: VirtualBox創建COM對象失敗

Solution:

VBoxSVC.exe /ReRegServer
regsvr32.exe VBoxC.dll

Problem: VirtualBox Error in supR3HardenedWinReSpawn

Solution:

Untitled

sudo mount -t vboxsfXilinxVitis~/vitis_install

Problem: SSH error in VSCode: Permission denied, please try again.

Solution:

  1. Access normally the remote VM from MobaXterm or other ssh client to verify it's working.
  2. Generate a ssh key:ssh-keygen -t rsa
  3. Install the public key in the remote server:ssh-copy-id -i $HOME/.ssh/id_rsa.pub <username>@<ipaddress>
  4. Make sure that you can access the VM from the command line using ssh.
  5. Install the Remote - SSH extension on VSCode.
  6. Press F1 > search and click Remote-SSH: connect to a host > click Add New SSH Host
  7. Write ssh <username>@<ipaddress> and press Enter.
  8. Choose the config file generated with the ssh key.
  9. You can now connect to the remote server.

https://github.com/microsoft/vscode/issues/92579