跟换国内源
sudo vim /etc/apt/sources.list
#下面选择其一
deb http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
deb-src http://mirrors.aliyun.com/kali kali-rolling main non-free contrib
#保存之后执行下列命令
apt-get clean && apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y
#或者
apt update && apt upgrade && apt full-upgrade
#也可以依次执行下面的命令
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo reboot
apt autoremove #自动卸载软件
#安装File Roller(归档管理器)
apt-get install unrar unace rar unrar p7zip zip unzip p7zip-full p7zip-rar file-roller -y
apt-get clean #删除以下载的包
reboot #重新启动
数字签名无效
#数字签名无效或没有数字签名
wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add #下载并安装
wget archive.kali.org/archive-key.asc #下载签名
apt-key add archive-key.asc #安装签名
#跟新
apt-get remove 软件名 #删除相应的软件,但保留配置文件
apt-get purge 软件名 #同时清除软件包和软件的配置文件
apt-get clean #删除软件包缓存(/var/cache/apt/archives)
apt-get autoremove #自动清理无用的依赖包
dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P #清理系统残存配置
apt update && apt full-upgrade
apt install #安装软件包
apt update#刷新存储库索引
apt upgrade #升级所有可升级的软件包
apt autoremove #自动删除不需要的包
apt full-upgrade #在升级软件包时自动处理依赖关系
apt search #搜索应用程序
#软件包密钥管理命令
apt-key list #列出已保存在系统中key。
apt-key add keyname #把下载的key添加到本地trusted数据库中。
apt-key del keyname #从本地trusted数据库删除key。
apt-key update #更新本地trusted数据库,删除过期没用的key。
#卸载jdk
sudo apt-get remove openjdk*
安装idea创建桌面快捷方式
#安装idea创建桌面快捷方式
vim idea.desktop #在桌面创建文件,内容如下:
[Desktop Entry]
Name=IntelliJ IDEA
Comment=IntelliJ IDEA
Exec=/usr/local/idea/bin/idea.sh
Icon=/usr/local/idea/bin/idea.png
Terminal=false
Type=Application
Categories=Developer
#添加权限
sudo chmod +x idea.desktop
安装字体
#从 Windows 系统下字体文件夹(C:\Windows\Fonts) ,拷贝如下文件到当前Ubuntu用
#Courier New:courbd.ttf、courbi.ttf、couri.ttf 和 cour.ttf
sudo mkdir /usr/share/fonts/truetype/windows-font
#移动字体到wiondow-font目录下
sudo mv *.TT* /usr/share/fonts/truetype/windows-font
#修改权限,并更新字体缓存
sudo chmod -R 777 /usr/share/fonts/truetype/windows-font
cd /usr/share/fonts/truetype/windows-font
sudo mkfontscale
sudo mkfontdir
sudo fc-cache -fv
#重启下系统吧!
sudo reboot
使用xshell远程连接
apt-get install openssh-server#安装ssh-server服务
ps -ef |grep ssh #如果系统显示只有ssh-agent,那ssh-server还没有启动
/etc/init.d/ssh start
service ssh start
netstat -tnl #可以看到端口22是不是已经开启
vim /etc/ssh/sshd_config #找到
# Authentication:
LoginGraceTime 120
PermitRootLogin without passwd
StrictModes yes
#改成
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
#重启虚拟机;
添加ssh开机自启动
update-rc.d ssh enable #添加开机自启动命令
update-rc.d ssh disabled #关闭
service ssh status
卸载mysql
#首先在终端中查看MySQL的依赖项:
dpkg --list|grep mysql
卸载: sudo apt-get remove mysql-common
卸载:sudo apt-get autoremove --purge default-mysql-server
清除残留数据:dpkg -l|grep ^rc|awk '{print$2}'|sudo xargs dpkg -P
再次查看MySQL的剩余依赖项:dpkg --list|grep mysql
继续删除剩余依赖项,如:sudo apt-get autoremove --purge mysql-apt-config