Kali Linux抓包破解WiFi

不会吧不会吧,不会真有人1202年还要破WiFi吧.jpg

2021-08-20 1 min 95 words

Linux Cloud 内核介绍与安装

介绍 https://packages.debian.org/sid/linux-image-cloud-amd64 This package depends on the latest Linux kernel and modules for use on Amazon EC2, Google Compute Engine and Microsoft Azure cloud platforms. 在基于虚拟化的64位设备,如 KVM Xen(不包括VMWare)的虚拟服务器(VPS)中,Cloud内核往往是最佳选择。 且本人已成功在128M内存安装并启动Debian10。 安装步骤 安装所需依赖 apt install -y lsb-release 添加 Backports 源 1 2 3 4 5 6 7 8 cat >> /etc/apt/sources.list.d/backports.list << EOF deb http://deb.debian.org/debian $(lsb_release -sc)-backports main EOF #国内可考虑使用中科大的源 cat >> /etc/apt/sources.list.d/backports.list << EOF deb https://mirrors.ustc.edu.cn/debian $(lsb_release -sc)-backports main EOF 执行升级 apt -t $(lsb_release -sc)-backports update && apt -y -t $(lsb_release -sc)-backports upgrade...

1 min 107 words