Skip to content

Instantly share code, notes, and snippets.

View Mkurbanov's full-sized avatar
🎯
Focusing

Mukam Kurbanov Mkurbanov

🎯
Focusing
View GitHub Profile
@mohamadaliakbari
mohamadaliakbari / ubuntu-run-dhclient-on-startup.md
Last active July 31, 2024 08:46
Run dhclient on Startup in Ubuntu 18.04

dhclient is the Dynamic Host Configuration Protocol (DHCP) Client one would use to allow a client to connect to a DHCP server.

$ sudo nano /etc/rc.local

#!/bin/bash
dhclient
exit 0