从四月份到现在电脑上只有一个操作系统过,Ubuntu。真的不是盖的,开源软件万岁。Java/FireFox/Chrome,还有FlashGet(with Wine)。连咱公司远程办公也可以支持。编译个JDK,连接树莓派,远程SSH啥的超方便。最主要的原因,再也不会被莫名其妙的安装某些软件了。呵呵。
分类:
其他好文 时间:
2014-07-18 14:38:09
阅读次数:
262
问题描述:在VirutalBox中安装了CentOS操作系统,物理主机没有使用交换机或者是路由器等设备。需求:在物理机Windows里可以使用ssh连接虚拟机,并且可以访问虚拟机提供的web服务。前言:一般情况下,在Windows里使用VirutalBox虚拟出来的Linux虚拟机的网络设置应该使用...
分类:
其他好文 时间:
2014-07-18 14:13:35
阅读次数:
231
DenyHosts官方网站为:http://denyhosts.sourceforge.net1. 安装# tar -zxvf DenyHosts-2.6.tar.gz# cd DenyHosts-2.6# python setup.py install默认是安装到/usr/share/denyho...
分类:
其他好文 时间:
2014-07-18 12:08:55
阅读次数:
206
struts2 配置文件读取顺序 1. struts-default.xml 2. struts-plugin.xml 【 struts2-json-plugin-2.3.4.jar 】 4. struts.xml 5. struts.properties...
分类:
其他好文 时间:
2014-07-18 08:08:25
阅读次数:
235
ueditor是一个功能十分强大的在线文本编辑器,但是在ssh框架中,确切的说实在struts2中由于其拦截器需要对request,session对象进行重新封装,这个过程中会把request对象中保存的一些内容清空,所以会导致ueditor的上传功能获取不到需要上传的内容导致“未找到上传文件”的错...
分类:
编程语言 时间:
2014-07-17 22:15:47
阅读次数:
521
在本机上装的CentOS 5.5 虚拟机, 软件准备:jdk 1.6 U26 hadoop:hadoop-0.20.203.tar.gzssh检查配置Linux代码 [root@localhost~]#ssh-keygen-trsaGeneratingpublic/privatersakeypair...
分类:
其他好文 时间:
2014-07-17 21:39:54
阅读次数:
551
为了防止外界进行ssh端口攻击,需要修改ssh端口号。#vim/etc/ssh/sshd_configport33#servicesshdrestart
分类:
其他好文 时间:
2014-07-17 15:03:04
阅读次数:
154
#!/bin/bash#forsecurityofosforipin`catip.txt`doecho-e"\033[31m##################$ip#####################\033[0m"RedhatVersion=`ssh$ip-C"cat/etc/issue"|awkNR==1‘{print$7}‘`if[${RedhatVersion}=‘5.6’]thenssh$ip-C"chattr-i/etc/login.defs&&authconfig--..
分类:
其他好文 时间:
2014-07-17 09:41:28
阅读次数:
257
#!/bin/bash#forsecurityofosforipin`catip.txt`doecho-e"\033[31m##################$ip#####################\033[0m"scpopenssl-0.9.8za.tar.gz$ip:/tmp/ssh$ip-C"tar-xzvf/tmp/openssl-0.9.8za.tar.gz-C/tmp/&&cd/tmp/openssl-0.9.8za&&./configsharedno-z..
分类:
其他好文 时间:
2014-07-17 09:18:46
阅读次数:
205
题目描述:猜密码:远程连接,如果猜错密码超过五次,就拒绝访问实现描述:通过查看日志,找到相应ip地址的失败记录,累加次数超过五次的将这个ip地址丢到/etc/hosts.deny文件中,写法是:sshd:ip#!/bin/bashforipin$(cat/var/log/secure|grep"Failedpassword"|awk‘{print$11}..
分类:
其他好文 时间:
2014-07-17 08:54:09
阅读次数:
278