欢迎来到天天文库
浏览记录
ID:48055454
大小:331.00 KB
页数:23页
时间:2020-01-13
《Linux unix Shell基础命令教程.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、SHELL基础命令IT-SMSSteinyang2009/3/31[root@localhost/]#ls-ltotal174drwxr-xr-x2rootroot4096Feb1312:27bindrwxr-xr-x4rootroot1024Feb1310:57bootdrwxr-xr-x10rootroot6580Feb1311:16devdrwxr-xr-x90rootroot12288Mar2904:02etcdrwxr-xr-x9rootroot4096Mar508:51homedrwxr-xr-x12rootroot4
2、096Mar2904:02libdrwx------2rootroot16384Feb1318:52lost+founddrwxr-xr-x2rootroot4096Aug132004mntdrwxr-xr-x2rootroot4096Aug132004optdr-xr-xr-x131rootroot0Feb1319:13procdrwxr-x---17rootroot4096Mar3109:39rootdrwxr-xr-x2rootroot12288Feb1312:28sbindrwxrwxrwt14rootroot4096Ma
3、r3109:37tmp-rw-r--r--1rootroot10240Mar1116:35tmp20090311.tardrwxr-xr-x14rootroot4096Feb1310:56usrdrwxr-xr-x22rootroot4096Feb1311:09var-rw-r--r--:这是该文件的权限位。rw-:前三位,文件属主可读、写r--:中间三位,组用户可读r--:最后三位,其他用户只可读文件安全与权限权限位文件的权限位中中每一组字符中含有三个权限位:代码含义全拼对应8进制代码r读权限Readable4w写/更改权限Wr
4、itable2x执行该脚本或程序的权限eXecute1Chmod用法chmod[who]operator[permission]filenamewho的含义是:u文件属主权限。g属组用户权限。o其他用户权限。a所有用户(文件属主、属组用户及其他用户)。operator:+增加权限。-取消权限。=设定权限。permission:r读权限。w写权限。x执行权限。u,g,o针对文件属主、属组用户及其他用户的操作。Chmod修改权限,符号模式[root@localhost/]#ls-l-rw-r--r--1rootroot0Mar3110
5、:10testfile.file[root@localhost/]#chmodu+xtestfile.file[root@localhost/]#ls-l-rwxr--r--1rootroot0Mar3110:10testfile.file[root@localhost/]#chmodu-wtestfile.file[root@localhost/]#ls-l-r-xr--r--1rootroot0Mar3110:10testfile.file[root@localhost/]#chmoda+wtestfile.file[root
6、@localhost/]#ls-l-rwxrw-rw-1rootroot0Mar3110:10testfile.fileChmod绝对模式[root@localhost/]#ls-l-rwxrw-rw-1rootroot0Mar3110:10testfile.file[root@localhost/]#chmod444testfile.file[root@localhost/]#ls-l
7、greptest-r--r--r--1rootroot0Mar3110:10testfile.file[root@localhost/]#chm
8、od764testfile.file[root@localhost/]#ls-l
9、greptest-rwxrw-r--1rootroot0Mar3110:10testfile.file[root@localhost/]#chmod777testfile.file[root@localhost/]#ls-l
10、greptest-rwxrwxrwx1rootroot0Mar3110:10testfile.fileChown&Chgrpchmod-R-hownerfile-R选项意味着对所有子目录下的文件也都进行同样的操作。-h选项意味着
11、在改变符号链接文件的属主时不影响该链接所指向的目标文件。[root@localhosttest]#ls-l-rw-r--r--1rootroot0Mar3110:44test.f[root@localhosttest]#chownsteinytes
此文档下载收益归作者所有