CentOS 6.6上搭建C++运行环境 1、安装运行环境 # yum install gcc-c++ 备注:此时会将gcc-c++和libstdc++-devel都安装上。 2、查看g++是否安装成功 [root@MyRHEL 桌面]# g++ -v 使用内建 specs。 目标:x86_64-redhat-linux 配置为:../configure –... 懒人 1368℃ 0评论 0喜欢
Centos python 2.6 升级到 3.5 准备工作: 1)安装devtoolset yum groupinstall "Development tools" 2)安装编译Python需要的包包 yum install zlib-devel yum install bzip2-devel yum install openssl-devel yum install ncurses-devel y... 懒人 1529℃ 0评论 0喜欢
CentOS 6.5 下搭建 vsftpd ftp服务器 搭建一个不是很安全、基于CentOS、vsftpd的FTP服务器 [root@localhost ~]# yum install vsftpd 设置开机启动vsftpd ftp服务 [root@localhost ~]# chkconfig vsftpd on [root@localhost ~]# service vsftpd restart 临时关闭se... 懒人 1506℃ 0评论 0喜欢
关闭Linux里边的selinux和防火墙 有很多的Linux使用者因为对selinux不熟悉,所以都会将它关闭,避免影响到其它服务的使用,下面分享一下如何关闭selinux,希望对大家有所帮助。 1.getenforce 这个命令可以查看到selinux的状态, 2.还有一个命令也可以查看出selinux的状态。sestatus -v 3.还有一个setenforce 命令可以设置selinux... 懒人 1719℃ 0评论 0喜欢
Linux一些命令 service vsftpd restart service vsftpd status chkconfig vsftpd on setsebool ftp_home_dir=1 service iptables status service iptables stop chkconfig iptables off chmod 777 /var/www ch... 懒人 1743℃ 0评论 0喜欢