• Centos中压缩(zip)和解压(unzip)命令

    日期:

    Centos下大部分同学都在用tar解压缩,现在我们来了解一下zip压缩和unzip解压。 查看zip的参数 [it@inner ~]$ zip -h 压缩命令 [wangshangyou@inner ~]$ zip -r wwwroot.zip wwwroot 解压命令 [it@inner ~]$ unzip wwwroot.zip #############################...

  • Centos网络配置(手动设置和自动获取)IP的2种方法

    日期:

    CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2、安装iptables防火墙 yum install iptables-servic...

  • CentOS 7.0,启用iptables防火墙

    日期:

    CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2、安装iptables防火墙 yum install iptables-servic...

  • CentOS下top命令引起系统负载升高

    日期:

    一、问题表现 系统负载升高,某一个核的cpu资源被top进程耗尽,如下图所示: 二、分析过程 通过strace命令打印top进程信息,出现大量重复的系统调用,如下: 查看top进程的fd信息如下: 通过以上信息推断,top进程的输入输出异常,触发select返回文件描述符...

  • LINODE CentOS 7.0 修改主机名

    日期:

    vi /etc/hostname service network restart...

  • CentOS 7.0 修改时区

    日期:

    以东8区为例: ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 或者使用 UTC 时间: ln -sf /usr/share/zoneinfo/UTC /etc/localtime...

  • CENTOS 7 KDE 安装后的设置

    日期:

    安装NTFS支持:到 http://rpmfind.net/linux/rpm2html/search.php?query=ntfs-3g 下载,7.0适配的是Extras Testing Packages for Enterprise Linux 7 for x86_64surpm -i ntfs-3g-2014.2.15-6.el7.x86_64.rpm打开文件管理器点击NTFS文件分区即可自动挂载RPM包...

  • CENTOS 7 手工调节屏幕亮度

    日期:

    新建三个文本文件并给予执行权限: up.sh if [ ! -w /sys/class/backlight/intel_backlight/brightness ];then echo password | sudo -S chmod 777 /sys/class/backlight/intel_backlight/brightnessfiread bright /sys/class/backlight/intel_backlight/bri...

  • CentOS(Linux)中添加单个IP和批量添加多个IP的方法

    日期:

    CentOS(Linux)中添加单个IP和批量添加多个IP的方法 一、添加单个IP地址: 在/etc/sysconfig/network-scripts/中新建文件ifcfg-eth0:*,*为数字序号,多个IP则依次增大 以0为例,建立文件ifcfg-eth0:0 cd /etc/sysconfig/network-scripts/ vi ifcfg-eth0:0 输...

  • 命令行方式关闭CentOS防火墙实例

    日期:

    linux下命令行方式关闭防火墙,即iptables防火墙,分两种情况。 在iptables防火墙中开启80(www)与22(ssh)端口: 代码示例: #/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT #/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT #/etc/rc.d/init.d/...