Centos 支持NTFS格式磁盘

要使用linux 支持NTFS格式,需要额外安装软件包

软件名字

ntfs-3g

下载地址:http://www.tuxera.com/community/open-source-ntfs-3g/

1.下载软件包:

[root@Udisk-GKM ~]# wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz^C
[root …
点击查看更多…

Centos7 查看IP

Centos7 最小化安装,是没有ifconfig命令的

是要安装以下的软件包:

yum install net-tools

ifconfig命令来自于 net-tools工具

但是centos7中默认安装了iproute套件,iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一。

iproute2

设置ip 命令

ip addr add 192.168.0.193/24 dev wlan0

请注意IP地址要有一个后缀,比 …

点击查看更多…

Centos7 禁用IPV6

很多时候我们根本用不到IPV6

所以我们需要禁用掉IPV6模块

最好的方便就是系统启动的使用

[root@Yum ~]# vi /etc/default/grub
GRUB_TIMEOUT=5

    GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc …
点击查看更多…

wordpress替换默认的字体

可以编辑以下两个文件:

wp-includes/script-loader.php

wp-content/themes/主题名称/functions.php

找到

open_sans_font_url = "//fonts.googleapis.com/css?family1=Open+Sans:300italic,400italic,600italic,300,400,600⊂=$subsets";

把googleapis.com换成360的字体库:useso.com

点击查看更多…

yum clean all,yum 升级失败

Permalink: 2014-07-24 22:45:00+08:00 by terry in Linux tags: yum
今天使用yum 来自动升级服务器的时候发生错误.

yum 进程自动会被killed ,在终端中也没有返回任何其他错误信息

查过度娘后 …

点击查看更多…