kali

系统

下面操作最好用 root

1.更新 apt-get

最好直接去阿里云官网换源换源LUG’s repo file generator (ustc.edu.cn)

vim /etc/apt/sources.lis

清空换成下面的源

Debian 的 kali(24.3.16)

1
2
3
4
5
6
7
8
9
10
11
deb https://mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb-src https://mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware

deb https://mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
deb-src https://mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware

deb https://mirrors.ustc.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
deb-src https://mirrors.ustc.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware

deb https://mirrors.ustc.edu.cn/debian-security/ bookworm-security main contrib non-free non-free-firmware
deb-src https://mirrors.ustc.edu.cn/debian-security/ bookworm-security main contrib non-free non-free-firmware

之后

1
2
apt-get update
apt-get upgrade

2.docker&docker-compose

一句命令结束

1
apt-get install docker.io docker-compose

3.配置 go 编译环境

1
2
apt-get install golang
go env -w GOPROXY=https://goproxy.cn,direct

一般编译:go build -o xxx.exe

go build -ldflags="-w -s"用于去除调试信息

go build -trimpath用于编译时移除编译路径信息以减小可执行文件的大小

4.ufw

Ubuntu之ufw安装和使用_ubuntu ufw-CSDN博客

1
2
3
4
5
6
7
8
9
10
11
apt-get install ufw#下载
ufw status#查看防火墙状态
ufw status verbose#查看防火墙状态详细信息
ufw enable#启动防火墙并设置开机自启动
ufw disable#停止防火墙并取消开机自启动
ufw reload#重启防火墙
ufw reset#重置防火墙
ufw allow 8080#添加放行一个端口策略
ufw allow 8081/tcp#添加放行一个协议端口策略
ufw allow http#添加放行一个应用协议策略
ufw allow proto tcp to any port 81#添加放行一个端口策略

武器

1.Stacer

用来清理垃圾文件的

apt-get install stacer

然后在左上角的应用里面就能找到