linux装机后的注意事项

一、初始化root密码
第一种:输入sudo su就转换为root了,然后passwd设置root密码
第二种: sudo passwd
第三种:sudo passwd root

二、关闭SELinux
1.临时关闭(不用重启机器):
setenforce 0 ##设置SELinux 成为permissive模式
##setenforce 1 设置SELinux 成为enforcing模式

2.修改配置文件需要重启机器:
修改/etc/selinux/config 文件
将SELINUX=enforcing改为SELINUX=disabled
重启机器即可

三、开启ssh服务
1.安装ssh
如果你用的是redhat,fedora,centos等系列linux发行版,那么敲入以下命令:
sudo yum install sshd 或sudo yum install openssh-server(由osc网友 火耳提供)

如果你使用的是debian,ubuntu,linux mint等系列的linux发行版,那么敲入以下命令:
sudo apt-get install sshd 或
sudo apt-get install openssh-server(由osc网友 火耳提供)

1.1安装sshd服务
yum install openssh-server

2.配置网卡
2.1 vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
gateway 10.210.66.251

3.配置文件修改以及启动ssh
3.1 修改sshd服务配置文件
vi /etc/ssh/sshd_config
3.1.1 开启端口监听,地址监听。
开启端口监听,地址监听。
3.1.2 允许远程登录
在这里插入图片描述
3.1.3 开启使用密码登录
在这里插入图片描述
service(systemctl) sshd start
service(systemctl) sshd status
ps -e | grep sshd

你可能感兴趣的:(linux,linux)