当前位置:网站首页>Kali latest update Guide
Kali latest update Guide
2022-07-02 06:40:00 【zb0567】
1、 Update source
Method 1
sudo mv /etc/apt/sources.list /etc/apt/sources.list.bak
edit /etc/apt/sources.list file , Add the following entry to the front of the file :
deb https://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib deb-src https://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
End of change sources.list Please run after the file sudo apt-get update Update index to take effect .
Method 2
#(! Optional !) Back up the original file
mv /etc/apt/sources.list /etc/apt/sources.list.bak
# New source file
nano /etc/apt/sources.list
# Write source
# China University of science and technology kali Source
deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib
deb http://mirrors.ustc.edu.cn/kali-security/ kali-rolling/updates main contrib non-free
deb-src http://mirrors.ustc.edu.cn/kali-security/ kali-rolling/updates main contrib non-free
# Alibaba cloud kali Source
deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
deb http://mirrors.aliyun.com/kali-security/ kali-rolling/updates main contrib non-free
deb-src http://mirrors.aliyun.com/kali-security/ kali-rolling/updates main contrib non-free
#Ctrl+X preservation
# Update source
sudo apt update
Tool intensive 7G
Terminal execution :
sudo apt-get install kali-linux-all
Be careful : In the new version kali-linux-all Renamed kali-linux-everything
For the above reasons , If an error is reported, please execute :
sudo apt-get install kali-linux-everything
2、 to update
sudo apt-get update
3、 chinese
sudo dpkg-reconfigure locales
en_us UTF8 UTF8
zh_cn UTF8 UTF8
zh_cn gbk
Check the space
Choose zh_cn UTF-8
reboot
4、 install zsteg
git clone https://github.com/zed-0xff/zsteg cd zsteg/ gem install zsteg
Git Clone Error resolution :GnuTLS recv error (-110): The TLS connection was non-properly terminated.
apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
zsteg How to use
view help
zsteg -h
see LSB Information
zsteg pcat.png
testing zlib
# -b The number of digits is from 1 At the beginning zsteg zlib.bmp -b 1 -o xy -v
also wbStego Please refer to github Of README.md
5、 install exiftool
apt-get install exiftool
6、 install imagemagick
apt-get install imagemagick
边栏推荐
- Detailed definition of tensorrt data format
- 2020-9-23 use of QT timer qtimer class.
- 最新CUDA环境配置(Win10 + CUDA 11.6 + VS2019)
- 自学table au
- Hydration failed because the initial UI does not match what was rendered on the server. One of the reasons for the problem
- Redis——Cluster数据分布算法&哈希槽
- DeprecationWarning: .ix is deprecated. Please use.loc for label based indexing or.iloc for positi
- CUDA中的异步数据拷贝
- 分布式事务 :可靠消息最终一致性方案
- 构建学习tensorflow
猜你喜欢
随机推荐
AtCoder Beginner Contest 253 F - Operations on a Matrix // 树状数组
记录一次RDS故障排除--RDS容量徒增
js中正则表达式的使用
After reading useful blogs
【每日一题】写一个函数,判断一个字符串是否为另外一个字符串旋转之后的字符串。
Pytest (1) case collection rules
CUDA中的Warp matrix functions
构建学习tensorflow
重载全局和成员new/delete
Self cultivation of programmers - Reflection on job hunting
CUDA与Direct3D 一致性
Golang -- map capacity expansion mechanism (including source code)
Detailed definition of tensorrt data format
apt命令报证书错误 Certificate verification failed: The certificate is NOT trusted
Loops in tensorrt
Warp matrix functions in CUDA
部署api_automation_test过程中遇到的问题
js中map和forEach的用法
[literature reading and thought notes 13] unprocessing images for learned raw denoising
查询GPU时无进程运行,但是显存却被占用了









