Skip to content

Instantly share code, notes, and snippets.

View yasintuncer's full-sized avatar

Yasin Tunçer yasintuncer

View GitHub Profile
@yasintuncer
yasintuncer / gist:6d6f14cdcc3b6476a34ff7d3378d2e7f
Created February 15, 2024 13:11
Ubuntu Manual Configure Network Settings
#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>
--------------------------------------------
Xrdp Server (Remote Desktop) Installation:
--------------------------------------------
Tested in Ubuntu 22.04.03 LTS
1. Update Environment
$ sudo apt-get update
$ sudo apt-get upgrade