第一章
修改root用户密码:
passwd root
添加普通用户
adduser noroot
共享文件夹
vmware 开启文件共享
共享文件在mnt文件或者在hgfs文件夹
CutyCapt
cutycapt --url=http://www.baidu.com --out=baidu.png --min-width=300 --min-height=250
ls
display baidu.png
xhsell 远程连接kali linx
vi /etc/ssh/sshd_config
将#PasswordAuthentication no的注释去掉,并且将NO修改为YES //kali中默认是yes
将PermitRootLogin without-password修改为
PermitRootLogin yes
保存退出
将默认的SSH密钥移动到备份文件夹,然后通过下列命令生成新的密钥
cd /etc/ssh/
mkdir keys_default
mv ssh_host_* keys_default
dpkg-reconfigure openssh-server
启动SSH服务
命令为:
service ssh start
查看SSH服务状态是否正常运行,命令为:
service ssh status
或者
关闭ssh
service ssh stop
使用SSH登录工具(Putty\SecureCRT\XShell)登录kali即可
如果连接失败
那么要先生成两个密钥:
ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
ssh-keygen -t dsa -f /etc/ssh/ssh_host_rsa_key
执行命令后都会让输入密码,直接敲回车设置为空即可