黑客:Kali Linux on Any Devices
Kali Linux可以安装在多种硬件上,这个网站囊括了主流的各种系统:
https://whitedome.com.au/re4son/
大致内容如下:
Voodoo-Kali
Native Kali Linux desktop integration with Windows 10. True Voodoo magic.
Pocket-Kali
Kali Linux ISO image for the GPD Pocket.
The ultimate 7″ pocket rocket just got better – with the one and only Kali Linux image available for this marvel.
Pocket-Parrot
Parrot OS ISO image for the GPD Pocket.
Re4son-Kernel for Raspberry Pi 1/2/3B/3B+/Zero/Zero W
The One to rule them all
Re4son-Kernel for Oneplus 2
The One to make Nethunter shine on your Oneplus 2 with LineageOS
Re4son-Kernel for latest Intel hardware
The One to run Kali Linux on the latest hardware, such as GPD Pocket and atom tablets
Kali-Pi
Kali Linux distribution optimized for Raspberry Pi.
Available as Vanilla Kali-Pi or Sticky Fingers Kali-Pi with touch interface for small TFT screens.
Pi-Tail
Kali-Pi accessory for any smartphone, rooted or non-rooted.
Ideal for the casual hack on the go.
Kali-Pi Images
Pre-installed Kali-Pi images can be used with Sticky Fingers interface or without.
kalipi-config
The ultimate Kali-Pi setup tool.
Improved version of raspi-config for Kali Linux.
Eye of Amun
Remote wifi probe for Sticky Fingers Kali-Pi.
Kali-Pi Menus and features
Explanations and configuration options of the menu items and other tips and tricks.
Damn Vulnerable Pi (DV-Pi)
The red-headed stepsister of Kali-Pi comes with vulnerabilities to exploit.
Forums
Place to discuss all of the above.
树莓派:配置TeamViewer远程控制树莓派
一、下载树莓派版本的 TeamViewer 并安装
1 2 |
wget http://download.teamviewer.com/download/linux/version_11x/teamviewer-host_armhf.deb sudo dpkg -i teamviewer-host_armhf.deb |
1 2 |
sudo apt-get -f install sudo dpkg -i teamviewer-host_armhf.deb |
二、登录TeamViewer
可以用命令行方式登录(适合无显示器情况,就算有 VNC 也得这样,因为进入 VNC 是看不到 TeamViewer 的),也可以用图形化方式登录(有显示器情况)。
1 代码登录
如果树莓派没有接显示器,也没有VNC,只能用代码登录了,这时需要先关闭树莓派的图形界面,进入纯命令行界面。可以使用 raspi-config 配置到仅命令行模式。
1 |
sudo raspi-config |
选择 Boot Options -> Desktop / CLI -> Console AutoLogin ,回车,返回主菜单选择 Finish 并重启树莓派。
重启完成后重新连接树莓派,运行下面命令开始配置:
1 |
sudo teamviewer setup |
会让你输入用户名和密码。这里的用户名和密码是你在 TeamViewer 上注册的账户。有的话直接登录。
登录后会询问 是否加入树莓派到你的机器列表,当然选 y 。如果此时提示你需要邮件验证,请进行邮件验证,然后重新登录,无需退出本程序。
如无问题,此时提示我们成功加入到分组内了。同时,电脑的 TeamViewer 上也出现了设备了。设备名默认为 raspberrypi,名称事后可以在控制端修改。
最后,还原为图形界面登录。再次运行 raspi-config。选择 Boot Options -> Desktop / CLI -> Desktop AutoLogin 。返回主菜单选择 Finish 后 树莓派会再次重启。
这时就安装完成了。
2 图形登录
安装完成之后重启树莓派,TeamViewer 会出现在状态栏里。点击打开后要输入用户名和密码,并将设备授信。这种操作类似于在Windows一样了。完成登录并邮箱授信后就配置完成了。
用控制端链接树莓派之后的画面:
参考文章:
树莓派上面安装配置teamviewer:https://www.cnblogs.com/haochuang/p/6743800.html
十步配置TeamViewer远程控制Pi – 支持内网穿透: http://www.52pi.net/archives/549
树莓派:树莓派安装ss教程[转载]
原文地址:http://shumeipai.nxez.com/2014/07/27/build-shadowsocks-under-raspberry-pi-server-tutorial.html
因为关键词审查的问题,这里只放截图:
安装完毕后提示信息类似于:
Requirement already satisfied: shadowsocks in /usr/local/lib/python2.7/dist-packages (2.8.2)
创建的时候注意,配置文件其实可以任意起名,只需要在第4步,第5步时修改为对应的文件名就好。
提示:树莓派使用nano编辑器来创建文件,比如创建名称为 sslocal.json 的文件,则输入: sudo nano /etc/sslocal.json
nano编辑器的使用方法见这个教程:https://www.cnblogs.com/vamei/p/6228499.html
另外,自启动还有个方法:
后台长期启动ss
1 |
sslocal -c /etc/sslocal.json -d start |
开机自动启动:
1 |
sudo nano /etc/rc.local |
在 exit 之前加上一行:
1 |
/usr/local/bin/sslocal -c /etc/sslocal.json -d start |
按 Ctrl+O 并回车保存,按 Ctrl+X 退出编辑器。