kali2018-1安装
官网下载:https://www.kali.org/downloads/
出处http://www.weixianmanbu.com/article/2336.html
Vmtools问题
成功安装Vmtools后仍然无法使用文件复制粘贴,(在2016 rolling版本后遗弃了vmtools)
就放弃了Vmtools,改用open-vmtools
先改kali源
vi /etc/apt/sources.list
中科大更新源
1 | deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib |
然后apt-get install open-vm-tools-desktop fuse
再reboot
即可
mysql任意密码登录问题
mysql -u root
,进入mysql,输入1
2GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'youpassword' WITH GRANT OPTION; #youpassword你的新密码
flush privileges; #刷新一下
配置ssh远程登录
一、修改ssh配置
1、修改sshd_config文件,命令为:
vi /etc/ssh/sshd_config
将#PasswordAuthentication no的注释去掉,参数为yes
2、将PermitRootLogin without-password修改为
PermitRootLogin yes
保存,退出vim
二、启动ssh服务
命令为:/etc/init.d/ssh start
或者service ssh start
查看SSH服务状态是否正常运行,命令为:/etc/init.d/ssh status
或者service ssh status
如有其他问题可参考https://jingyan.baidu.com/article/eae07827a3e6bc1fec5485e3.html
配置ssh免密
修改sshd_config 文件, 将#PasswordAuthentication yes的注释(“#”号)去掉,然后保存退出vim /etc/ssh/sshd_config
生成密钥ssh-keygen -t rsa
追加文件cat id_rsa.pub >> authorized_keys
修改文件权限chmod 600 authorized_keys
cd /root/.ssh/
lsauthorized.keys id_rsa id_rsa.pub known_hosts
将ssh服务加入开机自启update-rc.d ssh enable