欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux虚拟机相关设置 博客分类: linux linux 

程序员文章站 2024-03-12 14:05:26
...

设置root用户密码

sudo passwd root

Password: <--- 输入你当前用户的密码
Enter new UNIX password: <--- 新的Root用户密码
Retype new UNIX password: <--- 重复新的Root用户密码

 

允许局域网访问:使用桥接模式

 

安装apt-get install openssh-server

允许root用户远程访问

安装apt-get install vim-gtk

vi /etc/ssh/sshd_config

PermitRootLogin值改成yes

service sshd restart /etc/init.d/sshd restart

相关标签: linux