Linux应用
文章平均质量分 68
robin_chenyu
这个作者很懒,什么都没留下…
展开
-
find the uuid for disks
find the uuid for disks body { } h1 { font-size: xx-large; font-weight: bold; border-bottom: 1px solid black; } div.note { overflow: auto; position: rela原创 2008-11-23 13:48:00 · 557 阅读 · 0 评论 -
Linux抓包Tcpdump常用参数
Linux抓包Tcpdump常用参数 第一种是关于类型的关键字 主要包括host,net,port, 例如 host 210.27.48.2,指明10.27.48.2是一台主机,net 202.0.0.0 指明 202.0.0.0是一个网络地址,port 23指明端口号是23。如果没有指定类型,缺省的类型是host. 第二种是确定传输方向的关键字 主要包括src , dst ,dst or原创 2014-02-13 12:48:27 · 1343 阅读 · 0 评论 -
INFO 手册安装及tags创建
<br />cd /path/to/info<br /> for f in * ; do install-info $f dir ; done<br /> <br />更新PATH_INFO原创 2010-08-28 20:51:00 · 550 阅读 · 0 评论 -
lsof常用参数
lsof_commands Table of Contents 1. lsof常用命令 1 lsof常用命令 lsof(list open files)是一个列出打开文件的命令。在Linux下非常有用。常用命令列表: args desc filename 显示所有打开文件的文件名 -a 表示两个参数都必须满足时才显示结原创 2014-01-14 08:35:31 · 1082 阅读 · 0 评论 -
screen常用快捷键
emacs用久了小指不爽,准备转screen+vim了。 Screen 操作快捷键 * ctrl-a c:创建一个新的 Shell * ctrl-a ctrl-a:在 Shell 间切换 * ctrl-a n:切换到下一个 Shell * ctrl-a p:切换到上一个 Shell * ctrl-a 0…9:同样是切换各个 Shell * ctrl-a d:退出 Scre原创 2013-08-15 19:58:24 · 1537 阅读 · 0 评论 -
linux下svnserver安装
Table of Contents 1 linux下svn服务器安装 1 linux下svn服务器安装 安装subversion 下载subversion-version.tar.gz tar xvfz subversion-version.tar.gz cd subversion ./configure --with-openssl ./make ./make原创 2013-08-09 22:06:40 · 664 阅读 · 0 评论 -
Debian Linux使用
apt-get install libpq5=8.4.1-1原创 2013-07-29 14:06:54 · 838 阅读 · 0 评论 -
crontab的测试方法
<!-- html {font-family:Times,serif; font-size:12pt} .title {text-align:center} .todo {color:red} .done {color:green} .tag {background-color:#add8e6; font-weight:normal} .timestamp原创 2013-07-19 20:55:56 · 7118 阅读 · 0 评论 -
Installing vsftp on ubuntu 8.04
Installing vsftp on ubuntu 8.04 body { } h1 { font-size: xx-large; font-weight: bold; border-bottom: 1px solid black; } div.note { overflow: auto; positi原创 2008-11-23 13:41:00 · 809 阅读 · 0 评论 -
Installing Oracle 11g On Ubuntu 8.04 LTS
Installing Oracle 11g On Ubuntu 8.04 LTS body { } h1 { font-size: xx-large; font-weight: bold; border-bottom: 1px solid black; } div.note { overflow: auto;原创 2008-11-23 13:35:00 · 663 阅读 · 0 评论 -
Django,uwsgi,nginx简单配置
django_uwsgi_nginx Table of Contents 1. Django部署 1.1. uwsgi的部署1.2. nginx的部署 1 Django部署 django+uwsgi+nginx部署环境总结。http请求先到nginx,如果是静态页面,nginx直接获取静态页面返回结果;对于动态页面,则交给uwsgi进行处理,uwsgi原创 2014-03-17 11:03:36 · 1636 阅读 · 0 评论