1.centos6.8新系统配置《Mr.Robot》

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.centos6.8新系统配置《Mr.Robot》相关的知识,希望对你有一定的参考价值。

前言:不知重装了多少次系统....我有强迫症,以下是新系统基本配置《Mr.Robot》

-----------------------------------------------------------

一.  ssh连接工具配置(我用的loadCRT)

1.编码为   UTF-8

2.字体大小  14

3.外观 黑绿

二.安装epel源

#  rpm -ivh  https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm  32位系统

三.安装必备软件  

#  yum install -y lrzsz wget vim ntsysv ntp unzip

四.设置永久别名

#  vim  ~/.vimrc

五.安装常用的依赖库

sudo yum install wget axel gcc pcre-devel zlib-devel bzip2-devel cmake gcc-c++ ncurses-devel perl-Data-Dumper libicu-devel libquadmath-devel python-devel libxml2-devel openssl-devel libcurl-devel libpng-devel freetype-devel freetype-devel gd-devel libmcrypt-devel libxslt-devel  

六.可以将下面的命令,写到全局配置中

  

set autoindent           //  "vim使用自动对齐,也就是把当前行的对齐格式应用到下一行

set cindent             // "(cindent是特别针对 C语言语法自动缩进)

syntax on              // "语法高亮度显示

set nu                // "显示行号

七、乱码vim解决方案

打开vimrc文件后,只需要在文件最后添加以下代码就可以了:

 set fileencodings=utf-8,gb2312,gbk,gb18030

 set termencoding=utf-8

 set fileformats=unix

 set encoding=prc

 这样,你的vim中文乱码问题就解决了!

八. 开发最大文件数

修改/etc/security/limits.conf文件,在文件中加入

* soft nofile 65536  

* hard nofile 65536  

九.关闭IPv6

修改 vim /etc/sysctl.conf,在文件末尾中加入

net.ipv6.conf.all.disable_ipv6 = 1  

net.ipv6.conf.default.disable_ipv6 = 1  

net.ipv6.conf.lo.disable_ipv6 = 1  

sudo sysctl -p  

十.调优内核网络配置

修改/etc/sysctl.conf,在文件中加入

net.ipv4.tcp_syncookies = 1  

net.ipv4.tcp_tw_reuse = 1  

net.ipv4.tcp_tw_recycle = 1  

net.ipv4.tcp_fin_timeout = 30  

十一.开放普通用户的ping权限

系统默认不允许普通用户ping,会提示  Ping: icmp open socket: Operation not permitted  

sudo chmod u+s /bin/ping  

十二.清除MariaDB

系统安装完成后,默认安装了mariadb-libs包,需要先清除掉,因依赖关系,系统会同时删除掉postfix。

sudo yum remove mariadb-libs  

十三.开放80端口

sudo firewall-cmd --permanent --add-service=http # open up the firewall for HTTP and SSH requests  

sudo systemctl reload firewalld  


本文出自 “Mr.Robot” 博客,请务必保留此出处http://80602872.blog.51cto.com/12350020/1893896

以上是关于1.centos6.8新系统配置《Mr.Robot》的主要内容,如果未能解决你的问题,请参考以下文章

12.LInux磁盘,系统文件概念《Mr.Robot》

2.centos6.8配置IP《Mr.Robot》

10.开机启动脚本,用户文件含义《Mr.Robot》

mr.robot里的电脑是啥系统

3.两种密钥配对方法,很简单哦《Mr.Robot》

6.bash_profile 与 .bashrc 的区别《Mr.Robot》