Horje
add dns in ubuntu permanently Code Example
add dns in ubuntu permanently
sudo apt update
sudo apt install resolvconf

sudo systemctl start resolvconf.service
sudo systemctl enable resolvconf.service
sudo systemctl status resolvconf.service

sudo vim /etc/resolvconf/resolv.conf.d/head
and add the following lines in it:
nameserver 8.8.8.8 
nameserver 8.8.4.4

sudo systemctl start resolvconf.service




Shell

Related
cut last field delimiter Code Example cut last field delimiter Code Example
interface graphique sur python Code Example interface graphique sur python Code Example
git reset file to master Code Example git reset file to master Code Example
UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show() Code Example UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show() Code Example
install module to current directory pip Code Example install module to current directory pip Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12