大约有 33,000 项符合查询结果(耗时:0.0612秒) [XML]
linux 下巧妙使用squid代理服务器 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...e.log
visible_hostname 192.168.16.1
cache_mgr lindenstar@163.com
acl all src 0.0.0.0/0.0.0.0
http_access allow all
2.2 acl选项的格式如下:
acl列表名称 列表类型 [-i] 列表值
列表名称:用于区分Squid的各个访问控制列表,任何两个访问控制列表不...
Logstash实践: 分布式系统的日志监控 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...
output {
file {
path => "/data/log/logstash/all.log" # 指定写入文件路径
message_format => "%{host} %{message}" # 指定写入格式
flush_interval => 0 # 指定刷新间隔,0代表实时写入
}
}
如...
MFC 的SetWindowPos 用法 - C/C++ - 清泛网 - 专注C/C++及内核技术
...window, the window loses its topmost status and is placed at the bottom of all other windows.
HWND_NOTOPMOST= -2 在所有非"普通层"之上的"普通层"
Places the window above all non-topmost windows (that is, behind all topmost windows). This flag has no effect if the window is already a n...
廉价共享存储解决方案1-drbd+ha+nfs - 更多技术 - 清泛网 - 专注C/C++及内核技术
...缓存的情况下可能会报目录不存在的错误,无视
yum clean all
yum makecache
3安装drbd(share1和2上操作)
3.1 准备编译环境
yum -y install gcc make automake autoconf flex rpm-build kernel-devel
3.2 上传解压源文件
利用xftp 把 drbd-8.4.6.tar.gz,d...
REDHAT 6.4 X64下ORACLE 11GR2静默安装 - 数据库(内核) - 清泛网 - 专注C/C++及内核技术
...可能会报目录不存在的错误,无视
[root@redhat ~]#yum clean all
[root@redhat ~]#yum makecache
检查一下成功没有
[root@redhat mnt]# yum grouplist
6、安装支持包
[root@redhat yum.repos.d]# cd /mnt/
[root@redhat mnt]# cat pacakage.txt
[root@redhat mnt]# yum install $(...
CMake使用教程 - C/C++ - 清泛网 - 专注C/C++及内核技术
...过make命令构建项目生成目标文件,还支持安装(make install)、测试安装的程序是否能正确执行(make test,或者ctest)、生成当前平台的安装包(make package)、生成源码包(make package_source)、产生Dashboard显示数据并上传等高级功...
Makefile经典教程(入门必备) - C/C++ - 清泛网 - 专注IT技能提升
...定义的值。如:
foo = $(bar)
bar = $(ugh)
ugh = Huh?
all:
echo $(foo)
我们执行“make all”将会打出变量$(foo)的值是“Huh?”( $(foo)的值是$(bar),$(bar)的值是$(ugh),$(ugh)的值是“Huh?”)可见,变量是可以使用后面的变量来...
Makefile经典教程(入门必备) - C/C++ - 清泛网 - 专注IT技能提升
...定义的值。如:
foo = $(bar)
bar = $(ugh)
ugh = Huh?
all:
echo $(foo)
我们执行“make all”将会打出变量$(foo)的值是“Huh?”( $(foo)的值是$(bar),$(bar)的值是$(ugh),$(ugh)的值是“Huh?”)可见,变量是可以使用后面的变量来...
Makefile经典教程(入门必备) - C/C++ - 清泛网 - 专注IT技能提升
...定义的值。如:
foo = $(bar)
bar = $(ugh)
ugh = Huh?
all:
echo $(foo)
我们执行“make all”将会打出变量$(foo)的值是“Huh?”( $(foo)的值是$(bar),$(bar)的值是$(ugh),$(ugh)的值是“Huh?”)可见,变量是可以使用后面的变量来...
Makefile经典教程(入门必备) - C/C++ - 清泛网 - 专注IT技能提升
...定义的值。如:
foo = $(bar)
bar = $(ugh)
ugh = Huh?
all:
echo $(foo)
我们执行“make all”将会打出变量$(foo)的值是“Huh?”( $(foo)的值是$(bar),$(bar)的值是$(ugh),$(ugh)的值是“Huh?”)可见,变量是可以使用后面的变量来...