1.cd commond

a. cd usr 切换到该目录下usr目录  b. cd ../ 切换到上一层目录  c.cd / 切换到系统根目录  d. cd ~ 切换到用户主目录 e. cd - 切换到上一个所在目录

2.directory commond

  a.create directory commond

    mkdir  directory_name

  b.query directory

    ll or ls

  c.find directory commond

    find directory parameter

    eg   find /root associate with test directory   find /root -name 'test*'

  d.modify directory name

     mv  old_directory_name   new_directory_name

  e.move directory location

       mv   directory_name   directory_location

mv  test  /usr

  f.copy directory

    cp  -r  /usr/copy_directory    /temp/copy_to_directory

   g.delete  directory

rm -rf  directory   or  rm -r directory

3.file  manipulate

  a.create file commond

    touch  file_name.txt

  b.select file  commond

    cat file_name.txt    show finally screen

    more file_name.txt   exit  press q

    less file_name.txt    pagedown  pageup   exit with q

    tail -10 file_name.txt   show last ten  exit ctrl + c

  c.modify file content

    vi  a.txt   entry  i/o/a   exit and keep  esc  + : + wq  exit and nokeep  esc+:+q+!

4.compression manipulate file commond

  a.packing and compression files

    tar  after(packing_and_compressing_file_name)   packing_file

    tar  -zcvf  name.tar.gz  a.txt b.txt c.txt  or  tar -zcvf  name.tar.fz  /test/*

      z  use gizp commond compressing  c packing_file   v view_complier_process  f  point_file_name

  b.decompression commond

    tar -xvf  name.tar.gz     x   stand_for_decompression

    tar -xvf  name.tar.gz   -C  /usr     -C  indicate_unzip_location

5.other commond

  a.show current location

    pwd

  b.search character in file commond

    grep  character_in_file  sudo.conf

    grep  character sudo.conf  --color   default  color is red

  c.pipe commond

    pipe commond is  before output comm  ond as current directory input  commond

    ps -ef | grep system   a.select all process  b.select process with character system

  d.look process

    ps -ef

  e.kill process

    kil -9 pid  pid is find from  ps -ef

  f.network communication commond

    1.look up current network card information

      ifconfing

    2.query communication information

      ping ip_address

    3.check current system ports use information

      netstat -an

linux_base_commond_one的更多相关文章

随机推荐

  1. 新CCIE笔记-IP网络基础

    南京捷式泰CCIE重修笔记:更完善更系统的全新笔记 新增内容: 总结.关联知识点.行业小建议 各种认证证书: RHCE VCP OCP MCSEPMP ITIL CCA CCIE CCNP CCNA ...

  2. 四则运算题目生成程序(基于控制台)(Bug修改)

    针对上个程序中出现的bug进行修改 https://git.coding.net/cx873230936/calculator.git Bug: 1.控制台输入问题数问题 a.不能处理用户输入负数. ...

  3. bootstrap导航条+模态对话框+分页样式

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

  4. 团队作业八——第二次团队冲刺(Beta版本)第3天

    一.每个人的工作 (1) 昨天已完成的工作 对界面进行完善,并增加简单界面(包含简单界面内含的界面),简单模式与复杂模式的选择界面. (2) 今天计划完成的工作 做一下用户注册的功能和登录功能. (3 ...

  5. 【Alpha】 第七次Daily Scrum Meeting

    一.本次会议为第七次meeting会议 二.时间:9:37AM-9:50AM 地点:禹州三楼 三.会议站立式照片 四.今日任务 成员 昨日任务 今日任务 林清青 学习并了解微信程序相关方面知识,为小组 ...

  6. 201521123056 《Java程序设计》第8周学习总结

    1. 本周学习总结 1.1 以你喜欢的方式(思维导图或其他)归纳总结集合与泛型相关内容. 1.2 选做:收集你认为有用的代码片段 1.1 思维导图: 2. 书面作业 本次作业题集集合 1. List中 ...

  7. 201521123008《Java程序设计》第七周实验总结

    1.本周学习总结 以你喜欢的方式(思维导图或其他)归纳总结集合相关内容. 2. 书面作业 1.ArrayList代码分析 1.1 解释ArrayList的contains源代码 public bool ...

  8. 201521123076《Java程序设计》第2周学习总结

    1.本周学习总结 ①学会简单地管理原始码与位码文档(包的概念) ②了解了一些新的名词,如:完全限定(吻合)名 ③String类相关 ④in.nextInt(),in.next(),in.nextLin ...

  9. 201521123102 《Java程序设计》第2周学习总结

    #1. 本周学习总结(1)学习使用码云存储代码(2)掌握了常见数据类型的使用.转换(3)回顾了前面学过的基本语法(4)复习一二三章内容 #2. 书面作业**Q1.使用Eclipse关联jdk源代码,并 ...

  10. 201521123073 《Java程序设计》第13周学习总结

    1. 13周学习总结 以你喜欢的方式(思维导图.OneNote或其他)归纳总结多网络相关内容. 2. 书面作业 1. 网络基础 1.1 比较ping www.baidu.com与ping cec.jm ...