树莓派安装kali


简介

树莓派4b安装kali2020.3

安装后开放ssh

sudo apt-get update;
sudo apt-get install -y ufw;
sudo ufw allow 22;
sudo reboot;

目前发现需要重启才生效

换源

sudo sed -i "s/http.kali.org/mirrors.aliyun.com/g" /etc/apt/sources.list;
sudo apt-get update;
export DEBIAN_FRONTEND=noninteractive;
sudo apt-get install sudo wget curl unzip netcat htop autojump unrar net-tools vim bash zsh git ttf-wqy-microhei ttf-wqy-zenhei xfonts-intl-chinese -y;

ssh

curl https://github.com/chnxyzz.keys >> ~/.ssh/authorized_keys;
sudo chmod 600 ~/.ssh/authorized_keys;
sudo sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config;
sudo systemctl enable ssh && sudo systemctl restart ssh;

vim配置

curl https://raw.githubusercontent.com/chnxyzz/linux_install/master/vim/vimrc.txt -o ~/.vimrc;
sudo cp ~/.vimrc /root/.vimrc;

oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/chnxyzz/oh-my-zsh/master/tools/install.sh)";

换时区

ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime;
echo 'Asia/Shanghai' >/etc/timezone;

设置locale

echo "export LC_ALL=en_US.UTF-8"  >>  /etc/profile
echo "export LC_CTYPE=en_US.UTF-8"  >>  /etc/profile

swap

export swapfile=/swap.img;
sudo swapoff $swapfile;
sudo dd if=/dev/zero of=$swapfile bs=4k count=512k;
sudo mkswap $swapfile;
sudo swapon $swapfile;

文章作者: xyzz
文章链接: http://www.xyzzpwn.top
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 xyzz !
 上一篇
远程连接的一些笔记 远程连接的一些笔记
简介主要是远程到远程服务器的一些用法 ssh配合xserver达到远程应用图像显示到本地 linux下smb文件共享 ssh+xserverserver配置编辑/etc/ssh/sshd_config修改下面的值 X11Forwardi
2020-08-28
下一篇 
esxi搭建opwnert esxi搭建opwnert
简介使用esxi7.0安装openwrt19.07.3openwrt做旁路由并且配置出全局代理,保证网络的唯一稳定 安装下载opwnwrt我使用的是 https://downloads.openwrt.org/releases/19.07.
2020-08-22
  目录