linux_base_commond_one
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的更多相关文章
随机推荐
- CCIE-交换路由复习笔记
交换 考点: 1.trunk link(基础) 2.vtp 3.vlan 4.stp rstp mstp 5.hsrp vrrp glbp 6.ec Trunk link: 修改封装模式 802.1q ...
- 201521123070 《JAVA程序设计》第1周学习总结
本周学习总结 1.认识了三大平台Java SE.Java EE.Java ME. 2.认识了解了JDK,JVM与JRE,且熟悉JDK的操作并下载安装. 3.学会用博客写作业了. 书面作业 Q1.为什么 ...
- 201521123073 《Java程序设计》第11周学习总结
1. 本周学习总结 2. 书面作业 本次PTA作业题集多线程 1.互斥访问与同步访问 完成题集4-4(互斥访问)与4-5(同步访问) 1.1 除了使用synchronized修饰方法实现互斥同步访问, ...
- 201521123078 《Java程序设计》第11周学习总结
1. 本周学习总结 1.1 以你喜欢的方式(思维导图或其他)归纳总结多线程相关内容. 2. 书面作业 1.互斥访问与同步访问 1.1 除了使用synchronized修饰方法实现互斥同步访问,还有什么 ...
- smarty文件夹,第一个smarty实例总结
主要是libs里面的smarty类,和init.inc.php配置文件 剩下的是php文件夹.模板文件夹,临时文件夹.缓存文件夹.配置文件夹.插件文件夹 调用main文件夹中的php文件,通过 ...
- PHp连接数据库实现增删改查
首页 删除 添加 添加处理页面 修改 修改处理页面
- org.springframework.expression.spel.SpelEvaluationException: EL1011E: Method call: Attempted to call method test() on null context object
前言 本文中提到的解决方案,源码地址在:springboot-thymeleaf,希望可以帮你解决问题. 至于为什么已经写了一篇文章thymeleaf模板引擎调用java类中的方法,又多此一举的单独整 ...
- Maven第一篇【介绍、安装、结构目录】
什么是Maven Maven是一个采用纯Java编写的开源项目管理工具, Maven采用了一种被称之为Project Object Model (POM)概念来管理项目,所有的项目配置信息都被定义在一 ...
- ExtJS4为form表单必填项添加红色*标识
通常情况下,ExtJS4的form表单必填项在输入状态下会有特殊提示,非输入状态下,显示却和其他项没有任何区别.为使必填项更加容易区分,我们需要根据allowBlank的属性值,为form表单中的必填 ...
- 使用node.js检查js语法错误
如果没有一些工具和插件写JavaScript代码遇到语法错误找起来很费时间,请教了同事怎么用node.js检查 用浏览器测试的时候报语法错误. 1.点击红圈中的蓝色按钮,下次刷新是会在抛出异常的时候自 ...