- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
lunix操纵系统
一:1:
/company/fance
/company
/fance
/human
Sale1.txt
Sale2.txt
Resource1.txt
Rousource2.txt
[…test]# mkdir company
[…test]# cd ./company
[…company]# mkdir fance
[…conpany]# cd ./fance
[…fance]# touch sale1.txt
[…fance]# touch sale2.txt
[…fance]# cd ../
[…company]# mkdir human
[…company]#cd ./human
[…human]# touch resource1.txt
[…hunman]# touch resource2.txt
2:
[…test]# groupadd fringegroup
[…test]# useradd andrew
[…test]# useradd jason
[…test]# useradd lili
[…test]# useradd yoyo
[…test]#useradd jay
[…test]# useradd mary
[…test]# gpasswd –a andrew fringegroup
[…test]# gpasswd –a jason fringegroup
[…test]# gpasswd –a lili fringegroup
[…test]# gpasswd –a yoyo fringegroup
[…test]# gpasswd –a jay fringegroup
[…test]# gpasswd –a mary fringegroup
[…test]#groupadd fancegroup
[…test]# useradd may
[…test]#useradd long
[…test]#useradd chen
[…test]#useradd lin
[…test]#useradd fang
[…test]#useradd zhang
[…test]#gpasswd –a may fancegroup
[…test]#gpasswd –a long fancegroup
[…test]#gpasswd –a chen fancegroup
[…test]#gpasswd –a lin fancegroup
[…test]#gpasswd –a fang fancegroup
[…test]#gpasswd –a zhang fancegroup
[…test]#gpasswd –A andrew fringegroup
[…test]#passwd andrew
[…test]# chfn andrew
[…test]# chsh /bin/csh
[…test]# passwd –d jason
二:
简述Linux系统的特性。(课本第四页)
答案:开放性、多用户性、多任务性、良好的用户界面、设备独立性、提供了丰富的网络功能、可靠的系统安全、良好的可移植性。
什么是文件管理系统?包括什么类型?(第140页)
答案:操作系统中负责管理和存储文件信息的软件机构称为文件管理系统,简称文件系统。文件系统由三部分组成:与文件管理有关的软件、被管理的文件以及实施文件管理所需的数据结构。
目前主流Linux桌面产品有哪些?
答案:RedHat ,Debian, Fedora, Ubuntu,SUSE
三:
1.输出结果:The sum is 30
2.从键盘输入两个数字:150 、 50
结果:150 != 50
3.输出结果:a, b,c,e,i
2,4,6,8
四:
[root@localhost bin ] # gedit test1
#! /bin/sh
Total = 0
For ((j = 1; j = 100 ; j ++));
Do
Total = ‘expr $ total + $j’
Done
Echo “The result is $ total ”
[root@localhost bin ] #chmod +x test 1
[root@localhost bin ] #./ test 1
结果:The result is 5050
文档评论(0)