linux-服务启动

判断linux 系统服务 是否启动的脚本

1
2
3
4
5
6
7
8
9
10

#!/bin/bash

if service sshd status &> /dev/nll
then
echo "service is running"
else
echo "service is stopd"

fi

修改系统的默认语言环境

vim /etc/sysconfig/i18n

LANG=”en_US.UTF-8”