Centos 6.5 vmtools 安装失败

最近发现安装vmtools 一直失败:

Creating a new initrd boot image for the kernel.
vmware-tools-thinprint start/running
initctl: Job failed to start
Unable to start services for VMware Tools

Execution aborted.

/sbin/restorecon: Warning no default label for /tmp/vmware-block-restore0/tmp_file

后来发 …

点击查看更多…

Centos 双网卡绑定

[root@Study ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
[root@Study ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
[root@Study ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
ONBOOT …
点击查看更多…

IIS 目录浏览功能下载文件类型

环境win 2008 r2

默认IIS 的目录浏览是不开启的,可以选中网站的功能中的“目录浏览”勾选所有的选项后,开启

但是在这种模式 …

点击查看更多…

linux常用命令

1.losf
lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规 …
点击查看更多…

linux cpu,内存, 使用情况

  1. 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 …
点击查看更多…