1. 程式人生 > 其它 >Ubuntu 初始化配置

Ubuntu 初始化配置

本文簡要介紹了 Ubuntu 常用配置。

網路配置

靜態IP

編輯 /etc/network/interface 檔案。

# The primary network interface
auto enp0s3
iface enp0s3 inet dhcp

auto enp0s8
iface enp0s8 inet static
address 192.168.56.130
netmask 255.255.255.0

DNS

編輯 /etc/resolvconf.conf 檔案

# configure your subscribers configuration files below.
name_servers=127.0.0.1

常用軟體

$ sudo apt install gcc g++

mail

$ apt install mailutils

openssl

$ sudo apt install openssl
$ sudo apt install libssl-dev