The latest VMWare Server is only supporting Web Access for configuration including console access to a Virtual Machine.
There is a Firefox Plugin for the remote console, but that did not work in my setup. The Web Access will no longer complain about a missing plugin after installation, but the console will not start either.
While searching for a fix, I also found instructions to run the remote console in the command line. Combining this with an environment setting for GTK, I am now able to run a remote console.
My solution is starting with the normal installation of the Firefox Plugin. If that's available the following script should start a remote console from command line:
#!/bin/bash ################################################################################ # Call VMWare Server's Remote Console in a clean GTK setup. ################################################################################ # Clean GTK setup for VMWare export VMWARE_USE_SHIPPED_GTK=yes # Find console executable in Firefox plugins. vmrc="$(find "$HOME/.mozilla/firefox" -name vmware-vmrc -type f -perm -111 | tail -1)" [ -x "$vmrc" ] || exit 1 set -x cd "$(dirname "$vmrc")" && "$vmrc" -h 127.0.0.1:8333
It should also be possible to run Firefox by VMWARE_USE_SHIPPED_GTK=yes firefox in your Linux command line to fix the GTK issue.
Comments
12 hours 8 min ago
1 day 14 hours ago
1 week 5 days ago
3 weeks 3 days ago
3 weeks 3 days ago
3 weeks 6 days ago
5 weeks 2 days ago
6 weeks 9 hours ago
6 weeks 10 hours ago
6 weeks 13 hours ago