Linux基本命令學習之四:文字檢視

趙明威發表於2014-09-13

一 、Linux基本命令的學習

資料選取

head -n 行數 檔案 顯示幾行

[root@master ~]# head -n 3 /etc/man.config 
#
# Generated automatically from man.conf.in by the
# configure script.

如果 後一百行的資料都不列印 只列印 前面的

head -n -100 檔案

============================================================

tail 顯示出後幾行的資料

[root@master ~]# tail -n 20 /etc/man.config 

================================================================

查閱非純文字檔案

od -t oCc /etc/issue
#以八進位制列出儲存值與ASII之間的對照表

================================================================

修改檔案時間或者建立新檔案touch

modification time 檔案 內容資料更改時

status time 狀態改變時

access time 該檔案被取用時

===============================================

mount

1.-t vfstype 指定檔案系統的型別,通常不必指定。

mount 會自動選擇正確的型別。常用型別有:

光碟或光碟映象:iso9660

DOS fat16檔案系統:msdos

Windows 9x fat32檔案系統:vfat

Windows NT ntfs檔案系統:ntfs

Mount Windows檔案網路共享:smbfs

UNIX(LINUX) 檔案網路共享:nfs

2.-o options 主要用來描述裝置或檔案的掛接方式。常用的引數有:

loop:用來把一個檔案當成硬碟分割槽掛接上系統

ro:採用只讀方式掛接裝置

rw:採用讀寫方式掛接裝置

iocharset:指定訪問檔案系統所用字符集

who

[root@HadoopMaster ~]# who
root     tty1         2014-08-15 20:26 (:0)
root     pts/1        2014-08-16 03:26 (192.168.120.127)
root     pts/2        2014-08-16 03:53 (192.168.120.127)

passwd 修改密碼

chown 改變檔案屬於誰 屬於哪個組

chmod 改變 檔案 的讀r寫w執行x許可權

================================================================

相關文章