##学习总结##超级用户权限vsftpd安装(l)yuminstallvsftpdapt-getinstallvsftpdvsftpd配置(本地用户登陆限制在自己的主目录,/etc/vsftpd.conf)listen=YES(连接被拒绝时查看是否打开)chroot_list_file=/etc/vsftpd.chroot_listchroot_list_enable=YESallow_writeable_chroot=YES(..
分类:
系统相关 时间:
2016-05-09 07:13:29
阅读次数:
162
1. for循环语句
1.1. 语法格式:
for var in list
do
commands
done1.2 简单示例:...
分类:
系统相关 时间:
2016-05-09 07:04:38
阅读次数:
208
#!/bin/bash ip_list=`cat $1` thead_num=5tmp_fifofile="/tmp/$$.fifo"mkfifo "$tmp_fifofile"exec 4<>"$tmp_fifofile"rm -f $tmp_fifofile for ((i=0;i<$thead ...
分类:
编程语言 时间:
2016-05-09 00:11:54
阅读次数:
243
6H 1.整理了 文本框:TextView、EditText 按钮:Button、RadioButton、RadioGroup、CheckBox、ImageButton 列表:List、ExpandableListView、Spinner、AutoCompleteTextView、GridView、 ...
分类:
其他好文 时间:
2016-05-08 23:47:21
阅读次数:
200
#include<stdio.h>#include<stdlib.h>typedef struct { int *elem; int length; int listsize;}SqList;#define LIST_MAX 10#define LIST_ADD 2int InitList(SqLi ...
分类:
其他好文 时间:
2016-05-08 19:53:50
阅读次数:
213
name: 单独一个网页中,一个控件是否设置name不会影响这个网页功能的实现。当我们需要把这个控件 所关联的数据传递到数据库时,就必须设置name属性,否则这个值是没办法传到服务器保存的; id: 主要用于javascript; value: 主要用于赋值,如:<input type="butto ...
分类:
Web程序 时间:
2016-05-08 18:09:54
阅读次数:
536
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given 1->2 ...
分类:
其他好文 时间:
2016-05-08 16:46:36
阅读次数:
112
Redis安装及主从配置 一、何为Redis redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)和zset(有序集合)。这些数据类型都支持push/pop、add/remove及取交集 ...
分类:
其他好文 时间:
2016-05-08 16:33:34
阅读次数:
184
抽奖程序:用ArrayList类和random类import java.awt.*; import javax.swing.*; import java.awt.event.;import java.util.;import java.util.List; public class jRandom ...
分类:
其他好文 时间:
2016-05-08 13:34:49
阅读次数:
110