配置SSH
安装ssh
sudo apt install ssh
编辑sshd_config
文件
sudo vi /etc/ssh/sshd_config
设置允许密码登陆
将
#PasswordAuthentication yes
前面的注释符去掉
设置允许root登陆(不建议)
将sshd_config
文件中的语句
#PermitRootLogin prohibit-password
修改为:
PermitRootLogin yes
并去掉前面的注释符
保存文件,启动SSH服务
sudo systemctl start ssh
或重启ssh服务
sudo systemctl restart ssh
设置SSH开机自启动
sudo systemctl enable ssh
换源
首先在终端中输入这条命令(以管理员身份)打开源文件:
sudo vi /etc/apt/sources.list.d/parrot.list
然后添加源 (我用着两个)
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