-
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager brew install virt-viewer
-
Once that's installed should be able make a call
remote-viewer
with a pve-spice.vv file downloaded from proxmox web interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/expect | |
############################################################## | |
# | |
# KILL-EMULATOR | |
# | |
# Kills an Android emulator which requires authentication. | |
# It works by opening a telnet session and authenticates, before issuing the | |
# kill command. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Foundation; | |
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace UICode.iOS | |
{ | |
public static class Extensions | |
{ | |
public static NSDate DateTimeToNSDate(this DateTime date) |