• Linux Firewall (firewalld, firewall-cmd, firewall-config)

    日期:

    Fedora 18 introduced firewalld as a replacement for the previous iptables service . Since RHEL7 and Oracle Linux 7 are based on Fedora 18, the switch from iptables service to firewalld is now part of the Enterprise Linux distributions. Thi...

  • Linux下firewall简易设置

    日期:

    iptables.rule为firewall总规则; iptables.allow为充许进入的主机; iptables.deny为不许放的主机; iptables.allow代码如下: #!/bin/bash # This is an esay firewall. # the inside interface. if you dont have this one # and you must let this be black...

  • KDE 5.6 正式发布

    日期:

    今天,KDE 项目组非常开心的宣布针对 GNU/Linux 操作系统的重要版本 KDE Plasma 5.6 桌面环境正式上线发布。早期测试者在月初已经开始测试 Beta 版本,而现在备受关注和广泛好评的桌面环境已经放到了稳定通道,并准备好部署在生产环境中。 KDE Plasma 5.6 中...

  • linux的NetworkManager服务

    日期:

    linux (CentOS)配置IP地址信息,重启后网络配置失效。 经多次查找发现这种是NetworkManager的问题,NetworkManager试图将DHCP中获取的DNS信息写入/etc/resolv.conf,导致原文件被覆盖, 打开/etc/resolv.conf文件 会发现 Crate by networkmanager。 1:在配置...

  • CentOS/RedHat/Debian/Ubuntu下添加开机启动项

    日期:

    CentOS/RedHat: 1、编辑文件 /etc/rc.local vim /etc/rc.local 1 2 3 4 5 6 #!/bin/sh # #Thisscriptwillbeexecuted*after*alltheotherinitscripts. #Youcanputyourowninitializationstuffinhereifyoudont #wanttodothefullSysVstyleinitstuff. touch /var/l...

  • 查看linux默认能最多开启多少个文件数量

    日期:

    ulimit a ulimit n #vi /erc/security/limits.conf (修改文件开启的限制) # #domain type item value # #* soft core 0 #* hard rss 10000 #@student hard nproc 20 #@faculty soft nproc 20 #@faculty hard nproc 50 #ftp hard nproc 0 #@student - maxlogi...

  • Linux下限制网络速率的两种方式

    日期:

    目录[-] Rate Limit an Application on Linux Rate Limit a Network Interface on Linux Conclusion If you often run multiple networking applications on your Linux desktop, or share bandwidth among multiple computers at home, you will want to ha...

  • Nginx PHP MySQL Apache Lighttpd Squid编译安装后的参数查询

    日期:

    1.Nginx 编译安装时的参数 [root@gavin script]# /usr/local/nginx/sbin/nginx -V 2.php编译安装时的参数 [root@gavin ~]# /usr/local/php/bin/php -i |grep config 3.mysql编译安装时的参数 [root@gavin ~]# cat /usr/local/mysql/bin/mysqlbug |grep config...

  • Linux服务器双网卡双IP和单网卡双IP配置方法(Debian/Ubuntu)

    日期:

    一、双网卡双 IP 。 eth0为电信, eth1 为联通。 #cd/etc/network/ #vi interfaces #Thisfiledescribesthenetworkinterfacesavailableonyoursystem #andhowtoactivatethem.Formoreinformation,seeinterfaces(5). #Theloopbacknetworkinterface autolo ifacel...

  • memcache中的add和set方法区别

    日期:

    相信大家对memcache都不陌生,在项目中也经常使用memcache作为缓存方案,那么在使用过程中有没有发现为什么memcahce有两个添加缓存的方法:一个是add,一个是set,那么你知道这2个方法有什么不同吗?什么时候该使用add?什么时候该使用set呢? 对于这点以前自...