TranslateProject/translated/tech/20190729 Top 8 Things to do after Installing Debian 10 (Buster).md

289 lines
9.3 KiB
Markdown
Raw Normal View History

2019-08-02 05:48:52 +08:00
[#]: collector: (lujun9972)
[#]: translator: (robsean)
2019-08-02 14:02:53 +08:00
[#]: reviewer: (wxy)
2019-08-02 05:48:52 +08:00
[#]: publisher: ( )
[#]: url: ( )
[#]: subject: (Top 8 Things to do after Installing Debian 10 (Buster))
[#]: via: (https://www.linuxtechi.com/things-to-do-after-installing-debian-10/)
[#]: author: (Pradeep Kumar https://www.linuxtechi.com/author/pradeep/)
2019-08-02 14:02:53 +08:00
Debian 10Buster安装后要做的前 8 件事
2019-08-02 05:48:52 +08:00
======
2019-08-02 14:02:53 +08:00
Debian 10 的代号是 Buster它是来自 Debian 家族的最新 LTS 发布版本,并包含大量的特色功能。因此,如果你已经在你的电脑上安装了 Debian 10并在思考接下来该做什么那么请继续阅读这篇文章直到结尾因为我们为你提供在安装 Debian 10 后要做的前 8 件事。对于还没有安装 Debian 10 的人们,请阅读这篇指南 [图解 Debian 10 (Buster) 安装步骤][1]。 让我们继续这篇文章。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/Things-to-do-after-installing-debian10.jpg)
2019-08-02 05:48:52 +08:00
### 1) 安装和配置 sudo
2019-08-02 14:02:53 +08:00
在设置完成 Debian 10 后,你需要做的第一件事是安装 sudo 软件包,因为它能够使你获得管理员权限来安装你需要的软件包。为安装和配置 sudo请使用下面的命令
2019-08-02 05:48:52 +08:00
变成 root 用户,然后使用下面的命令安装 sudo 软件包,
```
root@linuxtechi:~$ su -
Password:
root@linuxtechi:~# apt install sudo -y
```
添加你的本地用户到 sudo 组,使用下面的 [usermod][2] 命令,
```
2019-08-02 14:02:53 +08:00
root@linuxtechi:~# usermod -aG sudo pkumar
2019-08-02 05:48:52 +08:00
root@linuxtechi:~#
```
2019-08-02 14:02:53 +08:00
现在验证是否本地用户获得 sudo 权限:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ id
uid=1000(pkumar) gid=1000(pkumar) groups=1000(pkumar),27(sudo)
root@linuxtechi:~$ sudo vi /etc/hosts
[sudo] password for pkumar:
root@linuxtechi:~$
```
### 2) 校正日期和时间
在你成功配置 sudo 软件包后,接下来,你需要根据你的位置来校正日期和时间。为了校正日期和时间,
转到系统 **设置** > **详细说明** > **日期和时间** ,然后更改为适合你的位置的时区。
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/Adjust-date-time-Debian10.jpg)
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
一旦时区被更改,你可以看到时钟中的时间自动更改。
2019-08-02 05:48:52 +08:00
### 3) 应用所有更新
2019-08-02 14:02:53 +08:00
在 Debian 10 安装后,建议安装所有 Debian 10 软件包存储库中可用的更新,执行下面的 `apt` 命令:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt update
root@linuxtechi:~$ sudo apt upgrade -y
```
2019-08-02 14:02:53 +08:00
**注意:** 如果你是 vi 编辑器的忠实粉丝,那么使用下面的 `apt` 命令安装 `vim`
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install vim -y
```
2019-08-02 14:02:53 +08:00
### 4) 安装 Flash 播放器插件
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
默认情况下Debian 10Buster存储库不包含 Flash 插件,因此,用户需要遵循下面的介绍来在他们的系统中查找和安装 flash 播放器。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
为 Flash 播放器配置存储库:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ echo "deb http://ftp.de.debian.org/debian buster main contrib" | sudo tee -a /etc/apt/sources.list
deb http://ftp.de.debian.org/debian buster main contrib
root@linuxtechi:~
```
2019-08-02 14:02:53 +08:00
现在使用下面的命令更新软件包索引:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt update
```
2019-08-02 14:02:53 +08:00
使用下面的 `apt` 命令安装 Flash 插件:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install pepperflashplugin-nonfree -y
```
2019-08-02 14:02:53 +08:00
一旦软件包被成功安装,接下来,尝试播放 YouTube 中的视频:
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/Flash-Player-plugin-Debian10.jpg)
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
### 5) 安装软件,如 VLC、Skype、FileZilla 和截图工具
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
如此,现在我们已经启用 Flash 播放器,是时候在我们的 Debian 10 系统中安装所有其它的软件,如 VLC、SkypeFilezilla 和截图工具flameshot
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
#### 安装 VLC 多媒体播放器
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
为在你的系统中安装 VLC 播放器,使用下面的 `apt` 命令:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install vlc -y
```
2019-08-02 14:02:53 +08:00
在成功安装 VLC 播放器后,尝试播放你喜欢的视频。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/Debian10-VLC.jpg)
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
#### 安装 Skype
2019-08-02 05:48:52 +08:00
首先,下载最新的 Skype 软件包:
```
root@linuxtechi:~$ wget https://go.skype.com/skypeforlinux-64.deb
```
2019-08-02 14:02:53 +08:00
接下来,使用 `apt` 命令安装软件包:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install ./skypeforlinux-64.deb
```
2019-08-02 14:02:53 +08:00
在成功安装 Skype 后,尝试访问它,并输入你的用户名和密码。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/skype-Debian10.jpg)
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
#### 安装 Filezilla
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
为在你的系统中安装 Filezilla使用下面的 `apt` 命令,
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install filezilla -y
```
2019-08-02 14:02:53 +08:00
一旦 FileZilla 软件包被成功安装,尝试访问它。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/FileZilla-Debian10.jpg)
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
#### 安装截图工具flameshot
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
使用下面的命令来安装截图工具flameshot
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install flameshot -y
```
2019-08-02 14:02:53 +08:00
**注意:** Shutter 工具在 Debian 10 中已被移除。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/flameshoot-debian10.jpg)
2019-08-02 05:48:52 +08:00
### 6) 启用和启动防火墙
2019-08-02 14:02:53 +08:00
总是建议启动防火墙来使你的网络安全。如果你希望在 Debian 10 中启用防火墙, **UFW**简单的防火墙是最好的控制防火墙的工具。UFW 在 Debian 存储库中可用,它非常容易安装,如下:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt install ufw
```
2019-08-02 14:02:53 +08:00
在你安装 UFW 后,接下来的步骤是设置防火墙。因此,设置防火墙,通过拒绝端口来禁用所有的传入流量,并且只允许需要的端口传出,像 ssh、http 和 https。
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo ufw default deny incoming
Default incoming policy changed to 'deny'
(be sure to update your rules accordingly)
root@linuxtechi:~$ sudo ufw default allow outgoing
Default outgoing policy changed to 'allow'
(be sure to update your rules accordingly)
root@linuxtechi:~$
```
2019-08-02 14:02:53 +08:00
允许 SSH 端口:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo ufw allow ssh
Rules updated
Rules updated (v6)
root@linuxtechi:~$
```
2019-08-02 14:02:53 +08:00
假使你在系统中已经安装 Web 服务器,那么使用下面的 `ufw` 命令来在防火墙中允许它们的端口:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo ufw allow 80
Rules updated
Rules updated (v6)
root@linuxtechi:~$ sudo ufw allow 443
Rules updated
Rules updated (v6)
root@linuxtechi:~$
```
2019-08-02 14:02:53 +08:00
最后,你可以使用下面的命令启用 UFW
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo ufw enable
Command may disrupt existing ssh connections. Proceed with operation (y|n)? y
Firewall is active and enabled on system startup
root@linuxtechi:~$
```
2019-08-02 14:02:53 +08:00
假使你想检查你的防火墙的状态,你可以使用下面的命令检查它:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo ufw status
```
2019-08-02 14:02:53 +08:00
### 7) 安装虚拟化软件VirtualBox
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
安装 Virtualbox 的第一步是将 Oracle VirtualBox 存储库的公钥导入到你的 Debian 10 系统:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
OK
root@linuxtechi:~$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
OK
root@linuxtechi:~$
```
如果导入成功,你将看到一个 “OK” 显示信息。
2019-08-02 14:02:53 +08:00
接下来,你需要添加存储库到仓库列表:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian buster contrib"
root@linuxtechi:~$
```
2019-08-02 14:02:53 +08:00
最后,是时候在你的系统中安装 VirtualBox 6.0
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt update
root@linuxtechi:~$ sudo apt install virtualbox-6.0 -y
```
2019-08-02 14:02:53 +08:00
一旦 VirtualBox 软件包被成功安装,尝试访问它,并开始创建虚拟机。
2019-08-02 05:48:52 +08:00
2019-08-02 14:02:53 +08:00
![](https://www.linuxtechi.com/wp-content/uploads/2019/07/VirtualBox6-Debian10-Workstation.jpg)
2019-08-02 05:48:52 +08:00
### 8) 安装最新的 AMD 驱动程序
2019-08-02 14:02:53 +08:00
最后,你也可以安装需要的附加 AMD 显卡驱动程序(如 ATI 专有驱动)和 Nvidia 图形驱动程序。为安装最新的 AMD 驱动程序,首先,我们需要修改 `/etc/apt/sources.list` 文件,在包含 **main****contrib** 的行中添加 **non-free** 单词,示例如下显示:
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo vi /etc/apt/sources.list
2019-08-02 14:02:53 +08:00
```
```
...
2019-08-02 05:48:52 +08:00
deb http://deb.debian.org/debian/ buster main non-free contrib
deb-src http://deb.debian.org/debian/ buster main non-free contrib
deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free
deb http://ftp.us.debian.org/debian/ buster-updates main contrib non-free
2019-08-02 14:02:53 +08:00
...
2019-08-02 05:48:52 +08:00
```
2019-08-02 14:02:53 +08:00
现在,使用下面的 `apt` 命令来在 Debian 10 系统中安装最新的 AMD 驱动程序。
2019-08-02 05:48:52 +08:00
```
root@linuxtechi:~$ sudo apt update
root@linuxtechi:~$ sudo apt install firmware-linux firmware-linux-nonfree libdrm-amdgpu1 xserver-xorg-video-amdgpu -y
```
2019-08-02 14:02:53 +08:00
这就是这篇文章的全部内容,我希望你了解在安装 Debian 10 后应该做什么。请在下面的评论区,分享你的反馈和评论。
2019-08-02 05:48:52 +08:00
--------------------------------------------------------------------------------
via: https://www.linuxtechi.com/things-to-do-after-installing-debian-10/
作者:[Pradeep Kumar][a]
选题:[lujun9972][b]
译者:[robsean](https://github.com/robsean)
2019-08-02 14:02:53 +08:00
校对:[wxy](https://github.com/wxy)
2019-08-02 05:48:52 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://www.linuxtechi.com/author/pradeep/
[b]: https://github.com/lujun9972
2019-08-02 14:02:53 +08:00
[1]: https://linux.cn/article-11083-1.html
2019-08-02 05:48:52 +08:00
[2]: https://www.linuxtechi.com/linux-commands-to-manage-local-accounts/