码迷,mamicode.com
首页 > 系统相关 > 详细

linux笔记

时间:2017-11-20 20:24:03      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:nbsp   related   执行   config   运行   ping   curl   exe   infer   

依赖问题 dependency related

 sudo apt install -f 自动安装依赖

 sudo dpkg -i filename.deb  安装deb安装包

系统监控 system monitoring

 top/iotop/powertop/nethogs 普通监控/按磁盘写入排序/按耗电量排序/按网络流量排序

ping www.baidu.com > test.log &
tail -n 5 -f test.log

某个命令在后台运行,并产生log, 监控log文件

watch

搜索查找 search and index

 

find
-name 按名称查找
> find . -name "[a-z]*[4-9].log"

-exec 对搜索出来的文件执行command
-ok 安全模式:对每一个command进行操作确认提示
> find path options -exec command options {} \;
> find path options -ok command options {} \;
```

 

 

网络相关 networks

 curl ifconfig.me 查看本机外网ip

 

 界面美化 inferface modify

 column -t 格式化输出命令的结果

自定义命令 bash aliases

 alias rsvmr="rsync -vcah src dst"   同步文件

 alias waitit="inotifywait -mrq --format ‘%Xe %w%f‘ -e modify,create,delete,attrib"  监控目录

 

linux笔记

标签:nbsp   related   执行   config   运行   ping   curl   exe   infer   

原文地址:http://www.cnblogs.com/theodoric008/p/7580730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!