在OpenSolaris上安装与配置proftpd

Posted by 4Aiur on 06/17/2010 in OpenSolaris |

在OpenSolaris上安装与配置proftpd Install proftpd # pkgin in proftpd Setup proftpd proftpd configuration examples /opt/local/share/examples/proftpd modify /opt/local/etc/proftpd.conf TimeoutLogin 120 TimeoutIdle 600 TimeoutNoTransfer 900 TimeoutStalled 3600 RootLogin off DefaultRoot ~ UseReverseDNS off IdentLookups off #VALID LOGINS AllowUser ftpuser DenyALL Setup openSolaris SMF # vi /var/svc/manifest/network/proftpd.xml ProFTPD Server # svccfg import /var/svc/manifest/network/proftpd.xml # svcadm enable proftpd # svcs proftpd

Tags: ,

在不浪费磁盘空间的情况下测试网络

Posted by 4Aiur on 06/09/2010 in SysAdmin |

在不浪费磁盘空间的情况下测试网络 time dd if=/dev/zero bs=1024 count=1048576 | ssh user@remotehost ‘cat > /dev/null’ 在数据传输过程中可以使用iptraf进行观察

不需要反引号的运行ssh复杂远程命令方式

Posted by 4Aiur on 06/07/2010 in Shell |

不需要反引号的运行ssh复杂远程命令方式 之前当我需要执行复杂的运程命令时,总是要先处理好引号、变量等问题,之后再执行命令写起来太麻烦,今天在commandlinefu上学了一招非常棒的方法,记录一下。 举个例子,之前需要用\反引$符号 [root@localhost ~]# ssh 127.0.0.1 -l root “echo a b c | awk ‘{print \$2}'” b 现在我们可以把复杂的命令写到文件中执行。 [root@localhost ~]# cat cmd echo a b c | awk ‘{print $2}’ 方法1: [root@localhost ~]# ssh 127.0.0.1 -l root “$( 方法2: [root@localhost ~]# ssh 127.0.0.1 -l root “cat cmd” b 方法3,使用标准输入执行,输入完毕后使用ctrl-D提交命令: [root@localhost ~]# ssh 127.0.0.1 -l […]

Tags: ,

Copyright © 2010-2024 4Aiur All rights reserved.
This site is using the Desk Mess Mirrored theme, v2.5, from BuyNowShop.com.