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
#find your network device | |
:>networkctl | |
# Enable the interface and set an IP: | |
:>sudo ip address add 192.168.x.x/24 dev <interface> | |
:>sudo ip route add default via 192.168.x.1 dev <interface> | |
# if you connect local devices add this route | |
:sudo ip route add 192.168.x.0/24 via 192.168.x.1 dev <interface> |
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
-------------------------------------------- | |
Xrdp Server (Remote Desktop) Installation: | |
-------------------------------------------- | |
Tested in Ubuntu 22.04.03 LTS | |
1. Update Environment | |
$ sudo apt-get update | |
$ sudo apt-get upgrade |