資源描述:
《《操作系統(tǒng)原理與linux》實(shí)驗(yàn)的一linux基本命令》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫(kù)。
1、實(shí)用標(biāo)準(zhǔn)文案《操作系統(tǒng)原理與Linux》實(shí)驗(yàn)報(bào)告實(shí)驗(yàn)名稱(chēng):實(shí)驗(yàn)一Linux基本命令的使用實(shí)驗(yàn)日期:2011-11-1班級(jí):b09511學(xué)號(hào):20094051141姓名:郭峰祿計(jì)算機(jī)號(hào):精彩文檔實(shí)用標(biāo)準(zhǔn)文案一、實(shí)驗(yàn)?zāi)康?.掌握Linux中文件操作基本命令使用方法。2.掌握Linux中查看進(jìn)程、內(nèi)存和磁盤(pán)情況基本命令的使用方法。二、實(shí)驗(yàn)內(nèi)容1.登錄Linux系統(tǒng)。2.用pwd命令顯示用戶(hù)登錄后所處的用戶(hù)主目錄。[root@localhost~]#pwd/root3.用以下三個(gè)命令顯示用戶(hù)主目錄中的內(nèi)容,并比較命令之間的區(qū)別。Lsroot@localhost~]#lsbDesktopmpa
2、rtitioninfostudent1.cstudents.cb.cexample_63.cMakefilestudentstudent.cusb.ccurrent.chomem.cstudent1studentsls–a[root@localhost~]#ls-a..gconf.qt...gconfd.realplayerrc.1.swp.gnome2.recently-used.4.c.swp.gnome2_private.scim......ls-al[root@localhost~]#ls-al總用量452drwxr-x---22rootroot409611月116:19.d
3、rwxr-xr-x27rootroot409611月116:17..-rw-------1rootroot122883月282011.1.swp.....4.在用戶(hù)主目錄中通過(guò)touch命令建立下列10個(gè)文件(例如:toucha):news_oct_a1news_oct_b2news_oct_c3news_dec_b3work_nov_a1work_nov_b2work_nov_c3mail_dev_a2mail_oct_c3games_dec_b1[root@localhost~]#touchnews_oct_a1[root@localhost~]#touchnews_oct_b2
4、[root@localhost~]#touchnews_oct_c3精彩文檔實(shí)用標(biāo)準(zhǔn)文案[root@localhost~]#touchnews_oct_b3[root@localhost~]#touchwork_nov_a1[root@localhost~]#touchwork_nov_b2.[root@localhost~]#touchmail_dev_a25.使用ls命令查看目錄,確認(rèn)新建文件是否存在。[root@localhost~]#lsnews_oct_a1news_oct_a1[root@localhost~]#lsnews_oct_a1-al-rw-r--r--1roo
5、troot011月116:49news_oct_a1......6.通過(guò)ls–l命令查看文件news_oct_al的權(quán)限,并將它的權(quán)限改為任何人都可以讀、寫(xiě)和執(zhí)行。root@localhost~]#lsnews_oct_a1-l-rw-r--r--[root@localhost~]#chmod777news_oct_a17.通過(guò)mkdir命令在用戶(hù)主目錄中建立五個(gè)子目錄:reports、september、october、november和december。在reports子目錄中再建立三個(gè)子目錄:1、2、3。[root@localhost~]#mkdirreportsoctober
6、novemberdecember[root@localhost~]#cdreports[root@localhostreports]#mkdir1238.將/etc/passwd文件復(fù)制到目錄1下并重命名為mypasswd,給mypasswd文件建立一個(gè)硬文件鏈接hardpass和一個(gè)軟文件鏈接softpass。查看mypasswd、hardpass和softpass三個(gè)文件的節(jié)點(diǎn)信息。[root@localhost~]#cp/etc/passwdreports/1/mypasswd[root@localhost~]#lnreports/1/mypasswdhardpass[root
7、@localhost~]#ln-sreports/1/mypasswdsoftpass842843hardpass842843reports/1/mypasswd810910softpass9.將用戶(hù)主目錄中含字符串“dec”且含字符"b"的文件移動(dòng)到december子目錄下。10.將用戶(hù)主目錄中剩下含字符串“oct”和字符串“nov”的文件分別移動(dòng)到相應(yīng)月份的子目錄中。11.刪除december子目錄及其中的文件。12.使用ps命令查看系統(tǒng)中進(jìn)程的運(yùn)行情