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
# install https://rustup.rs/ | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | |
source $HOME/.cargo/env | |
# install https://github.com/rustdesk/rustdesk-server-demo | |
git clone https://github.com/rustdesk/rustdesk-server-demo && cd rustdesk-server-demo | |
# install it and run | |
IP=172.17.45.211 cargo run |
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
touch /etc/apt/sources.list | |
rm /etc/apt/sources.list | |
echo "deb http://deb.debian.org/debian/ buster main contrib non-free" >> /etc/apt/sources.list | |
echo "deb-src http://deb.debian.org/debian/ buster main contrib non-free" >> /etc/apt/sources.list | |
echo "deb http://deb.debian.org/debian/ buster-updates main contrib non-free" >> /etc/apt/sources.list | |
echo "deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free" >> /etc/apt/sources.list |