
操作系统
iteye_6618
这个作者很懒,什么都没留下…
展开
-
ssh2 config
[root@qxeden ~]# cat /etc/ssh/sshd_config # $OpenBSD: sshd_config,v 1.73 2005/12/06 22:38:28 reyk Exp $# This is the sshd server system-wide configuration file. See# sshd_config(5) for ...原创 2011-09-13 15:25:02 · 221 阅读 · 0 评论 -
awk 应用
实战文件:test.log 内容 1840 148990 0000 2738391841 87999 0001 1904321842 89306 0001 1904331843 90431 0002 1795911844 115357 0003 2446931845 69873 0004 1639911...原创 2013-10-12 15:16:15 · 114 阅读 · 0 评论 -
expect 远程登录操作
#!/usr/bin/expectset host [lindex $argv 0]set user [lindex $argv 1]set port [lindex $argv 2]spawn ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p $port -l $user $hostexp...2013-11-05 10:29:32 · 177 阅读 · 0 评论 -
centos的PHP环境初始化
1 初始化yum.repo#!/bin/shwget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm//rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rp...原创 2016-01-30 12:03:27 · 182 阅读 · 0 评论