
Linux
iteye_15878
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Installing Guest Additions on Debian
转载自:http://virtualbox.wordpress.com/doc/installing-guest-additions-on-debian/ Follow these steps to install the Guest Additions on your Debian virtual machine: Login as root; Update your...原创 2009-12-09 11:58:38 · 191 阅读 · 0 评论 -
VirtualBox数据空间的使用方法
最近给机器装上了Archlinux的操作系统,可是windows有时还不得不用,所以下载了virtual Box,准备安装个虚拟机;安装比较简单,可装好后与主系统(archlinux)如何交换数据呢?看到了数据空间,想到是用这个,可一直也没有搞清楚如可进行设置,所以就放了下来。 最近在网上看到一篇文章,对数据空间进行了说明,才搞清楚是这么回事。闲话少说,就说怎么设置吧: ...2009-12-12 23:05:08 · 201 阅读 · 0 评论 -
使用putty运行GUI程序
方法一 打开X-manager Passive; 打开putty,并连接到服务器上; export DISPLAY=<windows IP address on which you are logged in>:0.0; 运行GUI程序(如:xclock) 方法二,与方法一原理一致,不用手动设置DISPLAY,putty会帮你设置 打开X-manager Pas...原创 2010-08-20 11:08:18 · 851 阅读 · 0 评论 -
Centos5+denyhosts阻止SSH暴力破解的方法
一、检查安装要求 首选检查Sshd是否支持 Tcpwrap,只有支持Tcpwrap才可以安装Denyhost # ldd /usr/sbin/sshd |grep wrap libwrap.so.0 => /usr/lib/libwrap.so.0 (0x00864000) //出现此信息时表示支持 再检查 Python的版本,Python2.3以上版本可以直接安装 # pytho...原创 2010-07-01 17:30:37 · 274 阅读 · 0 评论 -
Shell笔记
1、给ping加上时间 #!/bin/bash ping -c3 192.168.0.8 | grep 'ttl' | awk '{now=strftime("%Y-%m-%d %H:%M:%S "); print now $0}' 2、日志处理 # mv machine.log machine.log.2011-10-19 cat machine.log* | gre...原创 2011-10-20 10:56:30 · 114 阅读 · 0 评论