[ 永遠的UNIX::UNIX技術資料的寶庫 ]   GB | BIG5

首頁 > 系統管理 > Solaris > 正文
Solaris系統管理培訓(第十四章:文件系統掛接)
http://www.163.com 作 者: jxbcpp (2001-05-15 22:15:00)

 掛接就是將分離的文件系統附加到文件系統分成結構中。文件系統要附加到某個掛接點,也就是目錄。 
掛接和卸載文件系統發生在系統啟動和關閉時。 
系統啟動時,將讀取/etc/vfstab文件。這個文件記錄系統要掛接的文件系統。因此/etc/vfstab文件中的文件系統將自動掛接。也可以從命令行方式下人工掛接文件系統。 

不加參數的mount顯示系統目前已經掛接的文件系統。 
# mount 
/ on /dev/dsk/c0t3d0s0 read/write/setuid/largefiles/logging on Mon Nov 18 
17:58:19 1998 
/usr on /dev/dsk/c0t3d0s6 read/write/setuid/largefiles/logging on Mon Nov 18 
17:58:19 1998 
/proc on /proc read/write/setuid on Mon Nov 18 17:58:19 1998 
/dev/fd on fd read/write/setuid on Mon Nov 18 17:58:19 1998 
/var on /dev/dsk/c0t3d0s1 nolargefiles/read/write/setuid on Mon Nov 18 17:58:19 
1998 
/opt on /dev/dsk/c0t3d0s5 setuid/read/write/largefiles on Mon Nov 18 17:58:20 
1998 
/tmp on swap read/write on Mon Nov 18 17:58:20 1998 
/pns on dbserver:/export/pse soft/nosuid/remote on Mon Nov 18 19:04:36 1998 

nolargefiles參數將使文件系統中所有新建的文件小2G字節。 
# mount -o nolargefiles /dev/dsk/c0t3d0s7 /export/home 

使用這個參數可能出現錯誤,原因是由文件系統包含了大2G的文件 

要掛接在/etc/vfstab中已有的某個文件系統時,只需要用命令 
# mount /export/home 

/etc/vfstab文件格式 
#device device mount FS fsck mount mount 
#to mount to fsck point type pass at boot ops 
#/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - 
/proc - /proc proc - no - 
fd - /dev/fd fd - no - 
swap - /tmp tmpfs - yes - 
/dev/dsk/c0t3d0s0 /dev/rdsk/c0t3d0s0 / ufs 1 no - 
/dev/dsk/c0t3d0s6 /dev/rdsk/c0t3d0s6 /usr ufs 1 no - 
/dev/dsk/c0t3d0s3 /dev/rdsk/c0t3d0s3 /export ufs 5 yes - 
/dev/dsk/c0t3d0s7 /dev/rdsk/c0t3d0s7 /export/home ufs 5 yes - 
/dev/dsk/c0t3d0s5 /dev/rdsk/c0t3d0s5 /opt ufs 8 yes - 
/dev/dsk/c0t3d0s1 - - swap - no - 


umount卸載文件系統 
# umount /dev/dsk/c0t3d0s7 
或 
# umount /export/home 
如果文件系統中某個文件正在使用,則不能卸載這個文件系統。 


總結:如何增加一個新的硬盤 
1. Set up hardware, including setting switches and attaching cables.  Follow the instructions included with the new disk. 
2. Reboot the system using the command boot -r. This command will restart the system using the reconfigure (-r) option. 
3. Partition the disk.  
4. Create the new file systems as required.  
5. Edit the /etc/vfstab file as required.  
6. Reboot the system. 


光驅、軟驅的使用 
Solaris有個服務進程管理光驅和軟驅,當光盤或軟盤放入機器中,系統會自動的掛接上,掛接的目錄是: 
Media Location 
CD-ROM          /cdrom/cdrom_name 
Diskette /floppy/floppy_name 

如: 
#cd /cdrom/cdrom0 

管理進程叫卷管理服務器,其腳本位/etc/init.d/volmgt。 
(http://www.fanqiang.com)
    進入【UNIX論壇

相關文章
Solaris系統管理培訓(第十五章:網絡文件系統) (2001-05-15 23:15:00)
Solaris系統管理培訓(第十四章:文件系統掛接) (2001-05-15 22:15:00)
Solaris系統管理培訓(第十三章:文件系統介紹) (2001-05-15 21:15:01)
Solaris系統管理培訓(第十二章:磁盤、分區和格式化) (2001-05-15 20:15:01)
Solaris系統管理培訓(第十一章:磁盤配置和命名) (2001-05-15 19:15:01)
Solaris系統管理培訓(第十章:進程控制) (2001-05-15 18:15:01)
Solaris系統管理培訓(第九章:初始化文件管理) (2001-05-15 17:15:00)
Solaris系統管理培訓(第八章:用戶管理) (2001-05-15 16:15:01)
Solaris系統管理培訓(第七章:系統安全) (2001-05-15 15:15:01)
Solaris系統管理培訓(第六章:啟動過程) (2001-05-15 14:15:00)

===更多相關===
 

★  樊強制作 歡迎分享  ★