This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 278
Add install.sh for Linux Mint 20 Cinnamon #122
Open
voney
wants to merge
1
commit into
microsoft:master
Choose a base branch
from
voney:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# This script is for Linux Mint 20 Ulyana Cinnamon Edition to install and | ||
# configure xrdp to be used with Hyper-V's Enhanced Mode. | ||
# | ||
# | ||
|
||
############################################################################### | ||
# Use HWE kernel packages | ||
# | ||
HWE="" | ||
|
||
############################################################################### | ||
# Update our machine to the latest code if we need to. | ||
# | ||
|
||
if [ "$(id -u)" -ne 0 ]; then | ||
echo 'This script must be run with root privileges' >&2 | ||
exit 1 | ||
fi | ||
|
||
apt update && apt upgrade -y | ||
|
||
if [ -f /var/run/reboot-required ]; then | ||
echo "A reboot is required in order to proceed with the install." >&2 | ||
echo "Please reboot and re-run this script to finish the install." >&2 | ||
exit 1 | ||
fi | ||
|
||
############################################################################### | ||
# XRDP | ||
# | ||
|
||
# Install hv_kvp utils | ||
apt install -y linux-tools-virtual${HWE} | ||
apt install -y linux-cloud-tools-virtual${HWE} | ||
|
||
# Install the xrdp service so we have the auto start behavior | ||
apt install -y xrdp | ||
|
||
systemctl stop xrdp | ||
systemctl stop xrdp-sesman | ||
|
||
# Configure the installed XRDP ini files. | ||
# use vsock transport. | ||
sed -i_orig -e 's/port=3389/port=vsock://-1:3389/g' /etc/xrdp/xrdp.ini | ||
# use rdp security. | ||
sed -i_orig -e 's/security_layer=negotiate/security_layer=rdp/g' /etc/xrdp/xrdp.ini | ||
# remove encryption validation. | ||
sed -i_orig -e 's/crypt_level=high/crypt_level=none/g' /etc/xrdp/xrdp.ini | ||
# disable bitmap compression since its local its much faster | ||
sed -i_orig -e 's/bitmap_compression=true/bitmap_compression=false/g' /etc/xrdp/xrdp.ini | ||
|
||
# Add script to setup the ubuntu session properly | ||
if [ ! -e /etc/xrdp/startcinnamon.sh ]; then | ||
cat >>/etc/xrdp/startcinnamon.sh <<EOF | ||
#!/bin/sh | ||
export XDG_CURRENT_DESKTOP=X-Cinnamon | ||
export XDG_SESSION_DESKTOP=cinnamon | ||
export XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share:/usr/share:/usr/share | ||
export XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg | ||
exec /etc/xrdp/startwm.sh | ||
EOF | ||
chmod a+x /etc/xrdp/startcinnamon.sh | ||
fi | ||
|
||
# use the script to setup the ubuntu session | ||
sed -i_orig -e 's/startwm/startcinnamon/g' /etc/xrdp/sesman.ini | ||
|
||
# rename the redirected drives to 'shared-drives' | ||
sed -i -e 's/FuseMountName=thinclient_drives/FuseMountName=shared-drives/g' /etc/xrdp/sesman.ini | ||
|
||
# Changed the allowed_users | ||
sed -i_orig -e 's/allowed_users=console/allowed_users=anybody/g' /etc/X11/Xwrapper.config | ||
|
||
# Blacklist the vmw module | ||
if [ ! -e /etc/modprobe.d/blacklist_vmw_vsock_vmci_transport.conf ]; then | ||
cat >>/etc/modprobe.d/blacklist_vmw_vsock_vmci_transport.conf <<EOF | ||
blacklist vmw_vsock_vmci_transport | ||
EOF | ||
fi | ||
|
||
#Ensure hv_sock gets loaded | ||
if [ ! -e /etc/modules-load.d/hv_sock.conf ]; then | ||
echo "hv_sock" >/etc/modules-load.d/hv_sock.conf | ||
fi | ||
|
||
# Configure the policy xrdp session | ||
cat >/etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla <<EOF | ||
[Allow Colord all Users] | ||
Identity=unix-user:* | ||
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile | ||
ResultAny=no | ||
ResultInactive=no | ||
ResultActive=yes | ||
EOF | ||
|
||
# reconfigure the service | ||
systemctl daemon-reload | ||
systemctl start xrdp | ||
|
||
# | ||
# End XRDP | ||
############################################################################### | ||
|
||
echo "Install is complete." | ||
echo "Reboot your machine to begin using XRDP." |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found a syntax error