1 / 26

File System Management

File System Management. CSIE 基爾 @ NCU 網路開源社 Updated: 12012013. About Me. Kir NCU CSIE NCU Computer Center Network Management Host Management Systems Engineering. 課程. 相關學分: OS 等級: 背景知識:灌過 FreeBSD ( 切割過硬碟佳) 課程目標: 了解檔案系統 了解基本的檔案權限管理. System info. a :代號 a 通常會分配給根目錄使用。

jenny
Download Presentation

File System Management

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. File System Management CSIE 基爾 @NCU網路開源社 Updated: 12012013

  2. About Me • Kir • NCU CSIE • NCU Computer Center • Network Management • Host Management • Systems Engineering

  3. 課程 • 相關學分:OS • 等級: • 背景知識:灌過FreeBSD(切割過硬碟佳) • 課程目標: • 了解檔案系統 • 了解基本的檔案權限管理

  4. System info

  5. a:代號 a 通常會分配給根目錄使用。 b:代號 b 通常是給 swap 空間使用。 c:代號 c 通常是代表整個主要磁區。 ad:IDE 硬碟 da:SCSI 硬碟

  6. 目錄 VS 磁區

  7. 查看硬碟使用情況 • 指令:df –h

  8. 查看目錄內使用情況 • 指令:du –h

  9. 系統狀況查詢 • 指令:systat –vm 1

  10. 硬碟狀況查詢 • 指令: • diskinfo –vt [target]

  11. 掛載 & 格式化

  12. 掛載 – 未格式化的硬碟 • 指令:mount [掛上內容] • Ex. mount /cdrom • Ex. mount /dev/acd0 • 設定檔位置:/etc/fstab 現在的FreeBSD也很聰明,USB隨插即用,大多是在新增硬碟需要這個步驟。

  13. 硬碟格式化:sysinstall 這指令很厲害喔!

  14. 磁區劃分 因為我們沒有要格式化的硬碟,所以看看就好。

  15. 磁碟切割 切割完磁區。 區分label。

  16. 掛入硬碟(略) • 指令: mount_msdosfs [-L] [zh_TW.Big5] [/dev/da0s1] [/mnt] • 指令:mount_ntfs [-C] [Big5] [/dev/da0s1] [/mnt] 掛入NFS(略)

  17. 掛載 – 未格式化的硬碟 (略) • 指令:dd if=/dev/zero of=/dev/[target] bs=1k count=1 • 指令:fdisk–B[target]

  18. 系統快照 (snapshot) • 檔案系統快照的功能就是記錄當時檔案系統的狀態。 • 用於系統備份,只需斷網。 • 省空間(如果不移動)。 • 指令: • 快照:mksnap_ffs/home /home/snapshot20050730 • 紀錄/home當時的快照 • /home的快照,只能存在/home下 • 讀取:mdconfig -a -t vnode -f /home/snapshot20050730 -u 3

  19. 檔案權限

  20. Linux基本權限管理 • 指令:ls -al

  21. a o g u =2的3次方-1 4 2 1 7

  22. 檔案權限修改 • 指令:chmod [權限值][檔案] • Ex. • chmod 777 test.txt • chmoda=rwx test.txt • chmodg+x test.txt

  23. 檔案擁有者修改 • 指令:chown [使用者][檔案]

  24. 檔案擁有群組修改 • 指令:chgrp [群組名稱][檔案]

  25. Permission Denied

  26. Access success!

More Related