Centos6.5-文件权限修改
r w x 二进制代表 100 010 001 十进制代表 4 2 1
举例:
rw-的值为4+2=6
rwxr-xr-x的值为755
chmod作用:修改文件、目录的权限
语法:chmod [对谁操作][操作符][赋予的权限]文件名
chmod 755 文件或文件夹名字
chmod a=rwx 1.txt = chmod 777 1.txt
操作对象:u 用户user,表现文件或目录的所有者
g 用户group,表现文件或目录所属的用户组
o 其他用户other
a 所有用户all
操作符: + 添加权限 - 减少权限 = 直接给定一个权限
centOS 6.5关闭防火墙步骤
关闭命令: service iptables stop
永久关闭防火墙:chkconfig iptables off
两个命令同时运行,运行完成后查看防火墙关闭状态
service iptables status
开启 #service iptables start
重启 #service iptables restart
Centos6.5 更新yun源
直接在centos官网选择6.5的主目录
wget https://vault.centos.org/6.5/os/x86_64/Packages/
yum clean all
yum makecache
出现404解决方法
进入 cd/etc/yum.repos.d/
vim Centos-Base.repo
[base]
name=CentOS-6
failovermethod=priority
baseurl=https://vault.centos.org/6.5/os/x86_64/
gpgcheck=0
然后清理一遍 :yum clean all
yum makecache
就ok了