码迷,mamicode.com
首页 >  
搜索关键字:chmod    ( 3352个结果
red head Linux 下安装jdk
1、分配读写权限(假设我的jdk-6u24-linux-i586.bin在我的/app根目录下):     chmod 755 jdk-6u24-linux-i586.bin 2、运行jdk-6u24-linux-i586.bin会自动解压     ./jdk-6u24-linux-i586.bin 3、生命名(可选)     mv jdk-6u24-linux jd...
分类:系统相关   时间:2014-11-16 21:42:53    阅读次数:295
How To Set Up Nginx Server Blocks (Virtual Hosts) on Ubuntu
sudo apt-get updatesudo apt-get install nginxsudo mkdir -p /var/www/example.com/htmlsudo chown -R $USER:$USER /var/www/example.com/htmlsudo chmod -R 7...
分类:系统相关   时间:2014-11-15 16:45:33    阅读次数:244
SUID ,SGID ,Sticky
SUIDpasswd:sSUID: 运行某程序时,相应进程的属主是程序文件自身的属主,而不是启动者; chmod u+s FILE chmod u-s FILE如果FILE本身原来就有执行权限,则SUID显示为s;否则显示S;如:chmod u+s /bin/cat 就能查看任何文件了SGID...
分类:其他好文   时间:2014-11-15 15:23:42    阅读次数:140
Linux下搭建tomcat和jre的环境
1、下载linux版本的tomcat和jre tomcat下载:http://pan.baidu.com/s/1nt7D87J; jre下载:http://pan.baidu.com/s/1sj4hAVV; 下载完成之后,上传到/usr/local (目录自定义) 2、安装jre#chmod u+x...
分类:系统相关   时间:2014-11-14 17:35:06    阅读次数:238
linux 常用命令
Linux常用命令大全100条: 1,echo “aa” 》 test.txt 和 echo “bb” 》》 test.txt //》将原文件清空,并且内容写入到文件中,》》将内容放到文件的尾部 2,chmod go+w -R /home/zhangy //给组用户和其他用户添加写的权限 3,...
分类:系统相关   时间:2014-11-14 12:21:18    阅读次数:315
Beginning Python From Novice to Professional (2) - 命令行运行Python脚本
命令行运行Python脚本 Linux下先创建一个hello.py $ gedit hello.py 输入: #!/usr/bin/env python print 2+2保存退出,运行: $ python hello.py 4我们也可以让它变得和普通程序一样执行 执行之前,让脚本文件具备可执行属性: $ chmod a+x hello.py运行脚本: $ ./hello.py ...
分类:编程语言   时间:2014-11-12 13:47:51    阅读次数:180
chargp,chmod命令及参数
chrgp是文件属组修改命令,此命令只能修改文件数组。chgrp[OPTION]...GROUPFILE...chgrp[OPTION]...--reference=RFILEFILE...-R:递归操作[root@localhost~]#chgrprootfile[root@localhost~]#ls-lfile-rw-r--r--1leyroot011-1210:20file-R:[root@localhost~]#chgrp-Rrootdirect..
分类:其他好文   时间:2014-11-12 11:58:35    阅读次数:143
文件权限控制篇access alphasort chdir chmod chown chroot closedir fchdir fchmod fchown fstat ftruncate getcwd
access(判断是否具有存取文件的权限)相关函数stat,open,chmod,chown,setuid,setgid表头文件#include定义函数int access(const char * pathname,int mode);函数说明access()会检查是否可以读/写某一已存在的文件....
分类:数据库   时间:2014-11-10 01:03:48    阅读次数:314
设置本地yum源优先
设置本地yum源优先1.mkdir/yumyuan2.chmod-R755/yuanyuan3.mount–oloop/dev/cdromm/media4.cp-rv/media/Packages/yumyuan5.yuminstallyum-priorities6.yuminstallcreaterepo7.createrepo-v/yunyuan8.更改/etc//etc/yum.repos.d文件夹下的文件的优先级,并先建如:[root@helom..
分类:其他好文   时间:2014-11-09 18:12:26    阅读次数:1462
vsftpd: refusing to run with writable root inside
vsftpd: refusing to run with writable root inside chroot() 为了避免一个安全漏洞,从 vsftpd 2.3.5 开始,chroot 目录必须不可写。使用命令: #?chmod?a-w?/home/user...
分类:其他好文   时间:2014-11-08 12:10:28    阅读次数:163
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!