- 浏览: 50662 次
最新评论
文章列表
1、配置文件的位置
在目录 /etc/ 下面,有个名为vimrc的文件,这是系统中公共的vim配置文件,对所有用户都有效。而在每个用户的主目录下,都可以自己建立私有的配置文件,命名为:“.vimrc”。例如,/root目录下,通常已经存 ...
- 2012-05-22 15:42
- 浏览 810
- 评论(0)
showmount -e hostname
sudo apt-get install nfs-kernel-server
sudo apt-get install portmap
配置文件 /etc/exports
/home/share 192.168.0.1/10(sync,ro) 192.168.1.20(sync,rw)
/home/public *(rw,sync)
/home/ftp www.baidu.com(ro,sync)
启动服务器
service portmap start
service nfs start
显示共享目录状态
...
- 2012-05-18 13:37
- 浏览 695
- 评论(0)
sudo apt-get install samba
配置文件 /etc/samba/smb.conf
[home]
comment = All Printers
#comment = Home Directories
writable = yes
valid users = user
create mode = 0600
directory mode = 0700
guest ok = yes
printable = yes
smbpasswd -a zbq
- 2012-05-17 11:44
- 浏览 494
- 评论(0)
<body>
<%
String name = request.getParameter("name");
int age =0;
age = Integer.parseInt(request.getParameter("age"));
//response.sendRedirect("http://www.baidu.com/s?wd=sohu&rsv_bp=0&rsv_spt=3&inputT=9604");
...
- 2012-05-16 11:59
- 浏览 546
- 评论(0)
public class HelloWorld extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
resp.setContentType("text/html");
PrintWriter out = resp.getWriter();
out.println("<html><head& ...
- 2012-05-14 11:39
- 浏览 353
- 评论(0)
telnet www.sohu.com 80
HEAD /index.html HTTP/1.1
Host www.sohu.com
telnet www.sohu.com 80
GET /index.html HTTP/1.1
Host www.sohu.com
- 2012-05-14 09:32
- 浏览 324
- 评论(0)
copy icon1.jpg /b +abc.rar a3.jpg
657514765
use \\ip\ipc$ " " /user:" " 建立IPC空链接
net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接
net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C: ...
- 2012-05-11 17:47
- 浏览 405
- 评论(0)
package org.zbq.view;
import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
public class ImageAdapter extends BaseAdapter {
private Context myContext;
privat ...
- 2012-05-11 16:55
- 浏览 419
- 评论(0)
Linuxawk命令详解
AWK介绍
0.awk有3个不同版本:awk、nawk和gawk,未作特别说明,一般指gawk。
1.awk语言的最基本功能是在文件或字符串中基于指定规则来分解抽取信息,也可以基于指定的规则来输出数据。完整的awk脚本通常用来格式化文本文件中的信息。
2.三种方式调用awk
1)awk [opion] 'awk_script' input_file1 [input_file2...]
awk的常用选项option有;
①-F fs : 使用fs作为输入记录的字段分隔符,如果省略该选项,awk使用环境变量IFS的值
②-f filename : 从文件fi ...
- 2012-05-11 15:28
- 浏览 300
- 评论(0)
正则表达式
grep 命令
选项
意义
-c
匹配行的数量
-i
忽略大小写
-h
查询多文件时不显示文件名
-l
只列出匹配的文件名,不列匹配行
-n
列出匹配行,并列出行号
-s
不显示不存在或无匹配的错误信息
-v
显示不包含匹配文本的所有行
-w
匹配整词
- 2012-05-09 17:56
- 浏览 695
- 评论(0)
<uses-permission android:name="android.permission.READ_CONTACTS"/>
package org.zbq.phone;
import android.app.Activity;
import android.content.ContentResolver;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.provider. ...
- 2012-05-03 15:24
- 浏览 721
- 评论(0)
Dialog dialog = new AlertDialog.Builder(Fun2.this)
.setTitle("Exit?")
.setIcon(R.drawable.icon2)
.setPositiveButton("退出", new DialogInterface.OnClickListener() {//积极按钮
public void onClick(DialogInterface dialog, int which) {
finish();
}
}) ...
- 2012-05-03 11:23
- 浏览 560
- 评论(0)
cat t1
echo $1 $2 $3
set m1 m2 m3
echo $1 $2 $3sh t1 -3 a1 a2 a3
a1 a2 a3
m1 m2 m3
Shell 中双引号(" ") 单引号(' ') 倒引号(` `)
1.双双引号 除了$ ,倒引号, \ 保留其特殊功能外 其余做普通字符处理
2.单引号所有字符都作为普通字符
3.倒引号 `pwd` 解释命令 如果嵌套 内层必须要(\)转义 my = `echo My = \`pwd\``
顺序操作符
逻辑与(&&)成功返回0 步成功返回1
文件测试
-r file 可读 ...
- 2012-05-02 16:28
- 浏览 483
- 评论(0)
public void onClick(View v) {
Uri uri = Uri.parse("smsto://10086");
Intent intent = new Intent(Intent.ACTION_SENDTO , uri);
intent.putExtra("sms_body", "11");
Android_MenuActivity.this.startActivity(intent);
}
- 2012-05-01 14:53
- 浏览 257
- 评论(0)
安装 sudo apt-get install openssh-server
远程登录 ssh ip
下载 scp hello.c root@10.12.61.27:/home/zbq
- 2012-04-28 16:25
- 浏览 324
- 评论(0)