# 配置SSH
## 安装ssh
```bush
sudo apt install ssh
```
## 编辑`sshd_config`文件
```bush
sudo vi /etc/ssh/sshd_config
```
## 设置允许密码登陆
将
```bash
#PasswordAuthentication yes
````
前面的注释符去掉
### 设置允许root登陆(不建议)
将`sshd_config`文件中的语句
```bash
#PermitRootLogin prohibit-password
```
修改为:
```bash
PermitRootLogin yes
```
并去掉前面的注释符
保存文件,启动SSH服务
```bash
sudo systemctl start ssh
```
或重启ssh服务
```bash
sudo systemctl restart ssh
```
## 设置SSH开机自启动
```bash
sudo systemctl enable ssh
```
# 换源
首先在终端中输入这条命令(以管理员身份)打开源文件:
```bush
sudo vi /etc/apt/sources.list.d/parrot.list
```
然后添加源 (我用着两个)
```bash
deb http://mirrors.ustc.edu.cn/parrot/ parrot main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/parrot/ parrot main contrib non-free
```
由于Parrot Security支持的源很多,我们又是在国内,我重点说一下**Parrot Security中国国内的镜像源有哪些?**
1、中国科技大学和USTCLUG
```
deb http://mirrors.ustc.edu.cn/parrot parrot main contrib non-free
```
2、TUNA(北京清华大学,TUNA协会)
```
deb https://mirrors.tuna.tsinghua.edu.cn/parrot/ parrot main contrib non-free
```
3、SHU(上海大学)
```
deb https://mirrors.shu.edu.cn/parrot/ parrot main contrib non-free
```
4、SJTUG(上海交通大学* NIX用户组)
```
deb https://mirrors.sjtug.sjtu.edu.cn/parrot/ parrot main contrib non-free
```