Ubuntu 初始化配置

本文简要介绍了 Ubuntu 常用配置。

网络配置

静态IP

编辑 /etc/network/interface 文件。

1
2
3
4
5
6
7
8
# 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 文件

1
2
# configure your subscribers configuration files below.
name_servers=127.0.0.1

常用软件

1
2
$ sudo apt install gcc g++ \
openssl libssl-dev

mail

1
$ apt install mailutils

update-alternatives

娱乐

网易云音乐

mpv 播放器

1
2
3
$ sudo add-apt-repository ppa:mc3man/mpv-tests
$ sudo apt update
$ sudo apt install mpv

工具

Atom

Chrome

tilix 终端

1
2
3
$ sudo add-apt-repository ppa:webupd8team/terminix
$ sudo apt update
$ sudo apt install terminix

OBS 录屏工具

1
2
3
$ sudo apt-get install ffmpeg
$ sudo add-apt-repository ppa:obsproject/obs-studio
$ sudo apt-get update && sudo apt-get install obs-studio

Firefox Flash 插件

1
$ sudo cp /home/khs1994/下载/libflashplayer.so /usr/lib/firefox-addons/plugins

Adobe重新支持Linux平台:Flash Player 23开始测试

虚拟机

双网卡 卡1桥接 卡2hostonly

搜狗拼音输入法

PDF

主题

不建议使用,使用默认就好

1
2
3
#移动启动器到底部和恢复默认
$ gsettings set com.canonical.Unity.Launcher launcher-position Bottom
$ gsettings set com.canonical.Unity.Launcher launcher-position Left
0%