-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstart-vmplayer.sh
executable file
·81 lines (72 loc) · 2.27 KB
/
start-vmplayer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/sh
########################################################################
# start-vmplayer.sh: VMware Player Startup Script
#
# Description:
# This script starts VMware Player in a virtual X server environment.
# It uses xvfb, fluxbox, x11vnc, and vmplayer to set up a virtual desktop
# accessible via VNC.
#
# Author: id774 (More info: http://id774.net)
# Source Code: https://github.com/id774/scripts
# License: LGPLv3 (Details: https://www.gnu.org/licenses/lgpl-3.0.html)
# Contact: [email protected]
#
# Version History:
# v0.2 2023-12-20
# Replaced 'which' with 'command -v' for command existence check.
# Updated script header for consistency.
# v0.1 2011-11-07
# First release.
#
# Notes:
# This script requires xvfb, fluxbox (non-free), x11vnc (non-free),
# and vmplayer (non-free) packages.
# Start with the privileges of the user.
# To connect from a client, use SSH port forwarding:
# $ ssh servername -L5900:localhost:5900
# Then, connect to localhost:5900 using xtightvncviewer.
# Kill the VNC and fluxbox for safety after starting VM.
#
########################################################################
test -n "$TMP" || export TMP=$HOME/.tmp
test -n "$1" && export DISPLAY=$1
test -n "$1" || export DISPLAY=:99
# Start a virtual X server using Xvfb.
start_xvfb() {
sudo Xvfb $DISPLAY -screen 0 1024x768x24 2>&1 >> $TMP/xvfb.log &
sleep 10
}
# Launch the Fluxbox window manager.
start_fluxbox() {
fluxbox 2>&1 >> $TMP/window-manager.log &
sleep 5
}
# Start x11vnc server to expose the virtual display over VNC.
start_vnc() {
x11vnc -display $DISPLAY -loop -bg -nopw -listen localhost -xkb 2>&1 >> $TMP/vnc.log &
sleep 10
}
# Launch VMware Player twice (for redundancy or multiple instances).
start_vmplayer() {
vmplayer 2>&1 >> $TMP/vmplayer1.log &
vmplayer 2>&1 >> $TMP/vmplayer2.log &
sleep 10
}
# Start all required background processes in sequence.
start_daemon() {
start_xvfb
start_fluxbox
start_vnc
start_vmplayer
}
# Main function to execute the script
main() {
command -v Xvfb > /dev/null && \
command -v fluxbox > /dev/null && \
command -v x11vnc > /dev/null && \
command -v vmplayer > /dev/null && \
start_daemon
}
# Execute main function
main "$@"