-
In open Ubuntu 18.04 machine click Parallels Actions -> "Install Parallels Tools"
-
A "Parallels Tools" CD will popup on your Ubuntu desktop.
-
Open it by double mouse click, copy all the content to a new, empty directory on a desktop, name it for e.g. "parallels_fixed"
-
Open terminal, change directory to parallels_fixed (
cd ~/Desktop/parallels_fixed
) -
Make command line installer executable (
chmod +x install
) -
Change directory to "installer" (
cd installer
) -
Make few other scripts executable:
chmod +x installer.* *.sh prl_*
This file contains hidden or 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
#!/bin/bash | |
# | |
# usdt - trace user statically defined tracepoints. User-level dynamic tracing. | |
# Written using Linux ftrace. Experimental. | |
# | |
# WARNING: This is a proof of concept for USDT tracing from Linux ftrace, and | |
# is not safe to use in production environments. In particular, the -i option | |
# sets memory semaphores by piping the output of printf through dd and then | |
# to process memory via /proc/PID/mem. Yes, this program pipes the output of | |
# the shell directly over top of live process memory. If you don't understand |