1. 网络配置-设置静态IP
vi /etc/network/interface
添加以下内容
auto eth0
iface eth0 inet static
address 192.168.1.10
gateway 192.168.1.1
netmask 255.255.255.0
2. root密码设置
# passwd root
# 123(密码)
# 123 (再次输入)
3. ssh服务开启
前置条件:openssh模块已安装,如使用root用户登陆需要设置密码
vi /etc/ssh/sshd_config
PermitRootLogin yes # 添加或开启
PasswordAuthentication yes # 开启
4. 关闭串口调试信息输出
vi /etc/inittab
注释console行内容
5. 开机启动、后台运行程序、设置时区
1.创建启动文件 /etc/init.d/Sdemo
注意点:文件名以大写S开头
#!/bin/sh
# set timezone
export TZ=CST
# sleep one minute
sleep 1m
# run program
nohup /root/demo &
网友评论