`
斌强-朱
  • 浏览: 50660 次
社区版块
存档分类
最新评论
文章列表
1、配置文件的位置 在目录 /etc/ 下面,有个名为vimrc的文件,这是系统中公共的vim配置文件,对所有用户都有效。而在每个用户的主目录下,都可以自己建立私有的配置文件,命名为:“.vimrc”。例如,/root目录下,通常已经存 ...
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 显示共享目录状态 ...
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
<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"); ...
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& ...
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
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: ...
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 ...
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 ...
正则表达式 grep 命令 选项 意义 -c 匹配行的数量 -i 忽略大小写 -h 查询多文件时不显示文件名 -l 只列出匹配的文件名,不列匹配行 -n 列出匹配行,并列出行号 -s 不显示不存在或无匹配的错误信息 -v 显示不包含匹配文本的所有行 -w 匹配整词
<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. ...
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(); } }) ...
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 可读 ...
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); }

ssh

安装 sudo apt-get install openssh-server 远程登录 ssh ip 下载 scp hello.c root@10.12.61.27:/home/zbq
Global site tag (gtag.js) - Google Analytics