最近安装vsftp的需求越来越多,自己弄了一个vsftp的安装脚本,确实很方便节约了不少时间。
好了直接上脚本内容:
viinstall_vsftpd.sh
#!/bin/bash
#Remove=>Download=>Install=>Configure=>Startservice"vsftpd"
#
#/usr/bin/yum=>#!/usr/bin/python2.4
#R..
分类:
其他好文 时间:
2014-09-24 13:34:17
阅读次数:
230
虽然使用wine可以运行一些 windows程序,但wine并不是万能的,有些程序还是无法运行,而且用wine运行windows软件时,CPU占用率居然高达100%,所以,可 以通过以下方式将wine卸载掉: 1.在终端里输入:sudo apt-get remove --purge wine 即可卸...
Linux下ffmpeg安装与开发配置1. ffmpeg安装安装环境:ubuntu 12.04(1)删除已安装的文件,避免冲突sudo apt-get remove ffmpeg x264sudo apt-get autoremove(2)安装需要的支持sudo apt-get install ma...
分类:
系统相关 时间:
2014-09-23 01:03:14
阅读次数:
319
tlmgr install ... tlmgr remove ...
分类:
其他好文 时间:
2014-09-22 21:58:23
阅读次数:
147
今天在做项目时,碰到一个问题,那就是移除掉某些tr(tr是动态添加的)。尝试了很多方法,都不见效(比如,deleteRow方法,貌似传的参数只能是tr的行数。没有仔细研究目前)。后来,发现这个方法效果不错名特此记录。
$(temp).parent().remove(); //temp为td的id
我的理解是这样的:$(temp)先获取到该td对象,然...
分类:
Web程序 时间:
2014-09-22 18:25:03
阅读次数:
1050
redis是当前比较热门的NOSQL系统之一,它是一个key-value存储系统。和Memcached类似,但很大程度补偿了memcached的不足,它支持存储的value类型相对更多,包括string、list、set、zset和hash。这些数据类型都支持push/pop、add/remove及...
分类:
系统相关 时间:
2014-09-22 13:44:02
阅读次数:
259
In the last blog, we talked about the basic operation of MongoDB, including insert, query, remove and update. Now in this blog, we will further hava a good understanding of querying operation.
At f...
分类:
数据库 时间:
2014-09-22 01:35:41
阅读次数:
233
===================NSArray====================(不可变数组,一旦建立就不能被更改)Ordered collection of objects.Immutable(you cannot add or remove objects to it once it...
分类:
其他好文 时间:
2014-09-21 23:58:31
阅读次数:
161
$criteria=newCDbCriteria; $criteria->addCondition("id=:id","and"); $criteria->params[‘:id‘]=$_POST[‘book_id‘]; $criteria->order="remove_timedesc"; $comments=BooksComments::model()->findAllByAttributes( array(‘book_id‘=>$_REQ..
分类:
其他好文 时间:
2014-09-21 20:18:21
阅读次数:
196
Debian系列软件管理1、搜索软件包信息 apt-cache search apt-cache search yum 2、查看软件包信息 apt-cache show rpm 3、安装软件 apt-get install rpm 选项: apt-get reinstall 覆盖安装 -f 修复安装 4、卸载,与YUM类似 apt-get remove rpm 选项: apt-g...
分类:
其他好文 时间:
2014-09-21 20:15:41
阅读次数:
217