linux 常用脚本、命令
程序员文章站
2023-10-18 17:45:09
linux下一些简单的命令,需要的朋友可以参考下。... 09-10-18...
1、简单去掉注释的行
cat httpd.conf|grep -v ^\ *# >mayuehehe
2、修改ssh的端口
/usr/sbin/sshd -p 1433
3、查看某用户
id username
4、查看环境变量
set 或 env
5、换 yum源
cd /etc/yum.repos.d
mv centos-base.repo centos-base.repo.save
wget http://centos.ustc.edu.cn/centos-base.repo
6、打开指定端口
iptables -a input -p udp --dport 58 -j accept
7、测试硬盘速度
hdparm -tt /dev/sda
8、时间同步
ntpdate -s time.nist.gov
hwclock --systohc
cat httpd.conf|grep -v ^\ *# >mayuehehe
2、修改ssh的端口
/usr/sbin/sshd -p 1433
3、查看某用户
id username
4、查看环境变量
set 或 env
5、换 yum源
cd /etc/yum.repos.d
mv centos-base.repo centos-base.repo.save
wget http://centos.ustc.edu.cn/centos-base.repo
6、打开指定端口
iptables -a input -p udp --dport 58 -j accept
7、测试硬盘速度
hdparm -tt /dev/sda
8、时间同步
ntpdate -s time.nist.gov
hwclock --systohc
上一篇: Linux 后台执行程序如何操作?