centos6.5

CentOS 6.5 、Win7(32位) 双系统 时间同步设置

允我心安 提交于 2020-04-12 17:34:56
先贴上网上的解决方案: CentOS 6.3与Windows7(64位)的时间同步设置 然后记录下自己的方案: 注 :自己的windows系统是 32位 的,上面解决方案的windows系统是 64位 的;不知道是不是这个原因,自己的解决方案跟上面的解决方案略有不同。 因为之前修改过BIOS硬件时间(看上面解决方案),所以只记录与上面解决方案的不同之处,具体还是请看上面解决方案的吧.... 不同之处: 自己的:/etc/adjtime 文件最后一行是 LOCAL ,也就是让CentOS把硬件时间当成localtime当地时间 上面解决方案的:/etc/adjtime 文件最后一行是 UTC ,也就是让CentOS把硬件时间当成UTC 世界标准时间 来源: oschina 链接: https://my.oschina.net/u/872371/blog/200545

使用Cobbler无人值守安装CentOS6.5(一)

若如初见. 提交于 2020-03-16 18:04:34
某厂面试归来,发现自己落伍了!>>> Cobbler是一个快速网络安装linux的服务,而且在经过调整也可以支持网络安装windows。该工具使用python开发,小巧轻便(才15k行代码),使用简单的命令即可完成PXE网络安装环境的配置,同时还可以管理DHCP,DNS,以及yum包镜像。 我用的系统是Centos6.5 64 位 配置epel yum源 我这用阿里云的epel mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo 安装cobbler需要的服务 yum install dhcp tftp rsync xinetd httpd 关闭selinux和防火墙自己做测试为了不影响就关了 [root@i51 upimg]# setenforce 0 [root@i51 upimg]# service iptables stop 安装cobbler并启动 [root@i51 yum.repos.d]# yum install cobbler -y [root@i51 yum.repos.d]# /etc/init.d/cobblerd start

No pip binary after installing Python 3.4.2 on Centos 6.5

时光毁灭记忆、已成空白 提交于 2019-12-25 01:35:54
问题 After successful installation of Python I can't find the pip executable. The contents of the /usr/local/lib/python3.4/site-packages/pip are: -rw-r--r--. 1 root root 9450 Oct 26 10:29 __init__.py -rw-r--r--. 1 root root 116 Oct 26 10:29 __main__.py -rw-r--r--. 1 root root 9507 Oct 26 10:29 cmdoptions.py -rw-r--r--. 1 root root 8162 Oct 26 10:29 baseparser.py -rw-r--r--. 1 root root 6578 Oct 26 10:29 basecommand.py -rw-r--r--. 1 root root 2969 Oct 26 10:29 pep425tags.py -rw-r--r--. 1 root root

Curl in php returns 404 response code even if url is working

和自甴很熟 提交于 2019-12-24 05:47:12
问题 I am using php 5.4 in CentOs 6.5 I am trying to get response code of a url below is my code snippet $URL="http://www.bertuccis.com/#menu"; try{ $c = curl_init(); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($c, CURLOPT_FOLLOWLOCATION, true); curl_setopt($c, CURLOPT_USERAGENT,'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36'); curl_setopt($c, CURLOPT_URL, $URL);

make fails trying to install mongo php driver on Centos 6

守給你的承諾、 提交于 2019-12-20 12:36:33
问题 I've tried two different ways to install the mongodb php driver. Compiling it based on directions from http://andres.jaimes.net/876/setup-mongo-php-module-centos-6/ Issuing (as root) pecl install mongo The server is Centos 6.6 (32-bit) that was originally a 6.5 virtualbox image that (following an update) now calls itself 6.6 The error seems to start here: In file included from /var/tmp/mongo/io_stream.c:34: /var/tmp/mongo/contrib/php-ssl.h:33:25: error: openssl/evp.h: No such file or

CentOS 6.5 安装 Redis 执行 make #error "Newer version of jemalloc required"

喜夏-厌秋 提交于 2019-12-12 12:25:31
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> CentOS 6.5 安装 Redis 执行 make #error "Newer version of jemalloc required" 根据你系统安装时或之后安装的选项的情况,可能在安装的过程中遇到不同的问题; 就像今天遇到的一台机器,安装时出现 /bin/sh: cc: command not found 的错误,解决之后又出现这里说的问题; [root[@localhost](https://my.oschina.net/u/570656) redis-3.2.0]# make cd src && make all make[1]: Entering directory `/opt/redis-3.2.0/src' CC adlist.o 在包含自 adlist.c:34 的文件中: zmalloc.h:50:31: 错误:jemalloc/jemalloc.h:没有那个文件或目录 zmalloc.h:55:2: 错误:#error "Newer version of jemalloc required" make[1]: *** [adlist.o] 错误 1 make[1]: Leaving directory `/opt/redis-3.2.0/src' make: *** [all] 错误