Centos 桌面图标
Centos7 中所有的应用程序都不会在桌面上显示,我们需要在桌面上建立相应的快捷放松
- 进入图标目录
[root@w-r9t1w96 applications]# cd /usr/share/applications/ [root@w-r9t1w96 …more ...
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 …more ...
Centos7 查看IP
Centos7 最小化安装,是没有ifconfig命令的
是要安装以下的软件包:
yum install net-tools
ifconfig命令来自于 net-tools工具
但是centos7中默认安装了iproute套件,iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一。
设置ip 命令
ip addr add 192.168.0.193/24 dev wlan0
请注意IP地址要有一个后缀,比 …
more ...Centos7 禁用IPV6
很多时候我们根本用不到IPV6
所以我们需要禁用掉IPV6模块
最好的方便就是系统启动的使用
[root@Yum ~]# vi /etc/default/grub
GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc …more ...