Linux Command Notes
- 查找文件:find / -name vsftp
- 启动服务:service vsftpd start
- ls -color中颜色的含意:
蓝色→目录
绿色→可执行文件
红色→压缩文件
浅蓝色→链接文件
灰色→其他文件
- 改变目录所有权: chown -R owner[.group] *
- 快速查找文件:locate filename;需要经常用 updatedb 命令更新数据库,可以在 crontab 中加一句,让server每天半夜更新
- 快速查找命令文件:whereis
- grep -v 反向显示。例如:ps -aux | grep g | -v grep 不显示grep进程
- 只列子目录: ls -F | grep /$
- 在 .bashrc 中可以用 alias 来制作自己的命令: alias sub = “ls -F | grep /$”
- 键入 cd ~ 可进入用户的home目录;键入 cd - 可进入上一个进入的目录.
- top 显示内存和程序的运行状况; procinfo 显示内存和cpu的情况; cat /proc/meminfo 显示内存使用情况
-