In this tutorial, you will learn how to install and configure Chrome Remote Desktop on your netcup server to access it remotely.
Chrome Remote Desktop is a remote desktop software tool, developed by Google, that allows a user to remotely control another computer's desktop over the internet. With Chrome Remote Desktop, users can securely access files, applications and desktops from anywhere, allowing for remote collaboration and troubleshooting.
This tutorial assumes that you have a basic understanding of the Linux command line and have a netcup server set up.
The estimated time for completing this tutorial is 10-15 minutes.
Log in to your netcup Server Control Panel: https://www.servercontrolpanel.de
Click on the "Screen" option available on the left side of the window to open a VNC console where you can use the terminal to run commands.
Update the package index and install wget:
sudo apt update
sudo apt-get install -y wget
Download the installation script to install Chrome Remote Desktop and XFCE:
wget https://raw.githubusercontent.com/Nishantbhagat57/netcup/main/server.sh
chmod 777 *
./server.sh
The server.sh script automates the installation process and includes the following commands:
sudo apt update
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
sudo apt-get install --assume-yes ./chrome-remote-desktop_current_amd64.deb
sudo apt install xfce4 xfce4-goodies -y
sudo apt update && sudo apt upgrade
sudo usermod -a -G chrome-remote-desktop $USER
Note: If you're not already signed in with your Google Account, then you'll need to sign in. This will be the account used for authorizing remote access.
DISPLAY= /opt/google/chrome-remote-desktop/start-host \
--code="4/xxxxxxxxxxxxxxxxxxxxxxxx" \
--redirect-url="https://remotedesktop.google.com/_/oauthredirect" \
--name=
https://raw.githubusercontent.com/Nishantbhagat57/netcupserver/main/verify.sh
wget <paste raw file URL here>
chmod 777 *
./verify.sh
Note: Replace
<paste raw file URL here>
with the URL you copied in the previous step.
Congratulations! You have successfully installed and configured Chrome Remote Desktop on your netcup server and can now access it remotely. If you encounter any issues during the installation or configuration process, feel free to refer to the official Chrome Remote Desktop documentation.
Thank you for following this tutorial and happy remote desktoping!
Copyright (c) 2021 netcup
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicence, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
By making a contribution to this project, I certify that:
The contribution was created in whole or in part by me and I have the right to submit it under the licence indicated in the file; or
The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate licence and I have the right under that licence to submit that work with modifications, whether created in whole or in part by me, under the same licence (unless I am permitted to submit under a different licence), as indicated in the file; or
The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the licence(s) involved.