生活在宁静的角落 terry
linux常用命令
1.losf
lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规 …
linux cpu,内存, 使用情况
- cpu 使用
查看CPU的完整信息:
root@squid ~]# cat /proc/cpuinfo
输出结果如下:
[root@squid ~]# cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 42 model name : Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz stepping : 7 cpu MHz : 3392.294 cache size : 8192 …点击查看更多…
Centos 的源
首先备份/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载对应版本repo文件, 放入/etc/yum.repos.d/(操作前请做好相应备份)
点击查看更多…Great minds have purpose, others have wishes!
vsftpd+iptables
1.查看系统版本
[root@Apache vsftpd]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.5 (Final) Release: 6.5 Codename: Final [root@Apache vsftpd]#
- 由于FTP采用的是被动方式传输 …