亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 學院 > 開發設計 > 正文

sun Technical Training NOTE

2019-11-18 13:30:21
字體:
來源:轉載
供稿:網友

  drwxrxrx 2 root bin 512 APR 3 10: 45 apache
  -rwxrr 1 root sys 360 Apr 3 10: 45 asppp. cf
  
  第一位-指正式的文件
  c 指字符設備,每個磁盤的塊大小為512個字節
  b 指塊設備,每個塊設備的塊的大小隨著分區的大小變化,但是UFS文件系統的每個塊是8k
  
  Logical Disk Device Names
  
  /dev/[ r] dsk/ c# t# d# s#
  c#控制器號
  t#通道號
  d#驅動器號
  s#分片號,見下面的描述
  0-7 Partition or (slice number) Valid numbersare 0-7
  Tag 0= UNASSIGNED 4= USR Describes the file system
  1= BOOT 5= BACKUP mounted on this partition
  2= ROOT 7= VAR
  3= SWAP 8= HOME
  
  /etc/path_ to_ inst記錄著啟動時每個設備的實例名,物理名
  只在啟動時讀一下,并被內核治理。
  prtconf
  顯示系統配置
  系統文件的層次及含義
  
  / The root of the overall file system name space
  /bin The Directory location for standard system commands or binary files
  /dev The primary location for logical device names
  /devices The primary location for physical device names
  /etc Host specific system administrative configuration files and databases
  /eXPort The default directory for commonly shared file systems
  /home The default directory or mount point for users home directories
  /kernel The directory of platform independent loadable kernel modules
  required as part of the boot process
  /opt The default directory or mount point for addon application packages
  /platform The directory of platform dependent loadable kernel modules
  /sbin Essential executables used in the booting process and in manual system
  failure recovery
  /tmp Temporary files; cleared during the boot sequence
  /usr The directory for programs, scripts, and libraries used by all system users
  /var The directory for varying files, which usually includes temporary, logging,
  or status files
  /mnt A convenient, temporary mount point for file systems
  
  幾種文件系統的含義及歷史
  UFS
  " UNIX file system based on the BSD Fast File system is the default disk-based file
  system for the Solaris Operating environment.
  
  ?HSFS
  " High Sierra, Rock Ridge, and ISO 9660 file system. Solaris HSFS is used on CD-ROMs,
  and provide all UFS file system features and file types
  
  ?PCFS
  " PC file system, which allows read/ write access to data and programs on DOS-formatted
  disks written for DOS-based personalcomputers.
  
  ?UDF
  " The UDF file system, the industry-standard format for storing information on the optical
  media technology called DVD (Digital Versatile Disc or Digital Video Disc).
  
  
  Network-Based File Systems
  ?Network-based file systems can be accessed over the network. NFS is
  the only available network-based or distributed computing file system.
  
  " Virtual File Systems
  ?Virtual file systems are memory-based file systems that provide access
  to special kernel information and facilities.
  " The Cache File System
  
  ?The Cache File System (CacheFS) can be used to improve performance
  of remote file systems or slow devices sUCh as CD-ROM drives. When a
  file system is cached, the data read from the remote file system or CD-
  ROM is stored in a cache on the local system.
  
  " The Temporary File System
  ?The Temporary File System (TMPFS) uses local memory for file system
  reads and writes, which is typically much faster than a UFS file system.
  ?TMPFS use the swap space on a disk.
  
  The Process File System
  ?The Process File System (PROCFS) resides in memory. It contains a list
  of active processes, by process number, in the /proc directory.
  
  " The Loopback File System
  ?The Loopback File System (LOFS) lets you create a new virtual file
  system, so you can access files by using an alternative path name.
  
  磁盤基本概念
  Lable( VTOC)
  ?Volume Table of Content, No. 1 disk sector( 512B)
  
  " Boot block
  ?Stores the procedures used in booting the system
  ?The boot block is left blank if a file system not to be used for booting
  ?In the next 15 disk sectors
  
  " Superblock
  ?Detailed information ablout the file system
  ?Size and status of file system
  ?Date and time of the last update
  ?Cylinder group size
  ?Number of date blocks in cylinder group
  ?Path name and last mount point
  ?In the next 16 disk sectors
  
  Inode
  ?All information about a file except its name which is kept in a directory
  ?An inode is 128 byte
  " Type of the file ( File/ Directory/ Block special/ Character special/ Symbolic link/ pipe/ Socket)
  " The mode of the file( read-write-execute permissions)
  
  
  
  讀磁盤的 VTOC 信息
  
  # prtvtoc /dev/ rdsk/ c1t3d0s2
  
  PROM的概念
  " PROM
  ?Each Sun system has a boot PROM chip. This 8KB chip is typically located
  on the same board as the CPU
  ?The main functions of the boot PROM are to test the system hardware and
  boot the operating system
  " Number of hard link
  " User ID and group ID
  " Number of bytes of the file
  " An array of 15 data block address
  " The date and time of the file
  
  " Data block
  ?The rest of the space allocated to the file system
  ?By default, 8-KB block size, 1- KB fragment size
  
  NVRAM的概念
  
  ?The NVRAM is 8KB of nonvolatile random access memory. This is a
  pluggable chip that is often located on the main system board
  ?The NVRAM stores the Ethernet address, host ID, and the TOD clock. A
  single lithium battery within the NVRAM module provides battery backup
  for the NVRAM and clock
  ?The NVRAM module also contains the EEPROM for the parameters that
  have been changed or customized from the boot PROMdefault parameters
  settings
  ?The user-interface commands and device aliases are stored in the NVRAM
  
  sun 機器的啟動過程
  Prom--->Run Post--->Prom Load bootblk--->Bootblk Load ufsBoot--->ufsboot loads 32/ 64bit kernel
  --->Kernel initializes Load modules start init process --->start run rc scripts
  
  32 bit kernel
  /platform/ ’uname m’/ kernel/ genunix
  /platform/ ’uname m’/ kernel/ unix
  
  64 bit kernel
  /platform/ ’uname m’/ kernel/ sparcv9/ genunix
  /platform/ ’uname m’/ kernel/ sparcv9/ unix
  
  Module directories
  /kernel
  /usr/ kernel
  /platform/ ’uname m’/ kernel
  /platform/ ’uname i’/ kernel
  
  sun 的運行級別
  Level 0 Powerdown state
  Level S or s Singleuser state 單用戶狀態,掛上所有的文件系統
  Level 1 Administrative state 治理員狀態
  Level 2 Multiuser state 多用戶狀態,運行大部分服務,不運行NFS服務
  Level 3 Multiuser state with NFS resources shared 多用戶狀態,運行全部服務。
  Level 4 Alternative multiuser state 通常不支持
  Level 5 Powerdown state
  Level 6 Reboot state
  
  看當前的運行級別
  who -r
  
  The /etc/inittab 記錄了啟動的級別
  內容格式
  id: rstate: action: process
  s3: 3: wait:/ sbin/ rc3 >/ dev/ msglog 2<> /dev/ msglog   
  _____________ Run levels to which this entry applies
  
  ______運行腳本
  
  啟動運行腳本:
  所有的運行腳本在/sbin下的rc0, rc1, rc2, rc3, rc5, rc6, rc等目錄下,每個腳本目錄針

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
欧美理论片在线观看| 欧美视频不卡中文| 国产99久久精品一区二区| 97免费中文视频在线观看| 亚洲乱亚洲乱妇无码| 亚洲毛片在线免费观看| 欧美在线观看日本一区| 午夜精品久久久久久久久久久久久| 国产一区二区三区四区福利| 成人做爽爽免费视频| 国产成人精品av在线| 久久久精品中文字幕| 亚洲欧洲日本专区| 91精品国产91久久久久久| 亚洲电影天堂av| 成人免费视频网址| 最近2019年日本中文免费字幕| 国产精品久久77777| 最新国产成人av网站网址麻豆| 久久九九免费视频| 欧美大片网站在线观看| 亚洲精品一区av在线播放| 亚洲一区二区福利| 日韩激情第一页| 亚洲欧美一区二区三区在线| 国产精品专区第二| 奇米一区二区三区四区久久| 亚洲最新在线视频| 欧美片一区二区三区| 国产精品一区二区性色av| 国内精品久久久久久影视8| 国产裸体写真av一区二区| 日本精品久久电影| 17婷婷久久www| 欧美成人精品在线视频| 日韩一区二区精品视频| 91在线精品视频| 91sao在线观看国产| 国产精品偷伦视频免费观看国产| 亚洲国产欧美一区二区丝袜黑人| 琪琪亚洲精品午夜在线| 欧美日韩国产成人| 国产免费观看久久黄| 日韩久久免费电影| 日韩不卡在线观看| 久久久成人的性感天堂| 欧美日韩亚洲天堂| 国产精品啪视频| 国产91色在线|| 麻豆国产va免费精品高清在线| 亚洲人午夜精品免费| 国产日韩精品在线观看| 成人在线视频网| 亚洲九九九在线观看| 日韩中文娱乐网| 亚洲国产欧美久久| 国产亚洲精品高潮| www.日韩视频| 午夜精品免费视频| www.亚洲免费视频| www.日本久久久久com.| 久久精品国产一区| 亚洲女人被黑人巨大进入| 久久久久久久久久久免费精品| 中文字幕在线亚洲| 亚洲色图日韩av| 日韩高清a**址| 亚洲xxx视频| 亚洲自拍偷拍网址| 久热99视频在线观看| 亚洲欧洲黄色网| 国内自拍欧美激情| 伊人久久久久久久久久久久久| 亚洲电影成人av99爱色| 国产一区二区三区在线| 欧美极度另类性三渗透| 97色在线播放视频| 久久久久久久久综合| 精品视频中文字幕| 国产一区二区三区高清在线观看| 奇米一区二区三区四区久久| 久久久亚洲影院| 亚洲在线免费看| 国产精品久久久久9999| 亚洲精品网址在线观看| 亚洲精品二三区| 亚洲综合最新在线| 久久久久久久国产精品| 亚洲国产又黄又爽女人高潮的| 亚洲成人亚洲激情| 亚洲欧美成人网| 亚洲一区二区三区成人在线视频精品| 国产做受69高潮| 一本色道久久88综合亚洲精品ⅰ| 欧美激情精品久久久久久| 国内精品久久久久久| 亚洲国产另类久久精品| 2023亚洲男人天堂| 亚洲性无码av在线| 中文字幕欧美精品日韩中文字幕| 91av免费观看91av精品在线| 亚洲福利视频二区| 亚洲男人天堂视频| 日韩a**站在线观看| 国产一区二区动漫| 国产精品青青在线观看爽香蕉| 国产精品视频资源| 欧美一级黑人aaaaaaa做受| 国产精品一区久久久| 日韩亚洲第一页| 欧美日韩国产黄| 国产成人福利夜色影视| 中文字幕日韩精品有码视频| 欧美激情欧美激情在线五月| 日韩国产欧美精品一区二区三区| 5566日本婷婷色中文字幕97| 亚洲精品成人av| 国产一区二区香蕉| 国产精品999| 亚洲肉体裸体xxxx137| 久久久久久久久久久网站| 91精品视频一区| 国产成人高清激情视频在线观看| 这里只有精品视频在线| 日本一区二区三区四区视频| 欧洲成人免费aa| 亚洲丝袜在线视频| 日韩欧美在线视频日韩欧美在线视频| 日韩欧美在线视频| 欧美另类老女人| 中文字幕在线视频日韩| 最近的2019中文字幕免费一页| 欧美日韩国产成人| 97精品久久久中文字幕免费| 热久久免费国产视频| 国产ts人妖一区二区三区| 日韩中文字幕欧美| 欧美精品第一页在线播放| 亚洲一区二区在线| 欧美色视频日本高清在线观看| 97碰碰碰免费色视频| 在线性视频日韩欧美| 欧美另类精品xxxx孕妇| 欧美久久久精品| 精品国产乱码久久久久久天美| 亚洲有声小说3d| 中文字幕在线成人| 亚洲欧美国产一本综合首页| 久久国产精品偷| 日韩精品中文字幕在线观看| 97在线观看视频国产| 一区二区三区国产在线观看| 亚洲精品国产精品久久清纯直播| 中文字幕精品一区二区精品| 欧美日韩国产中文精品字幕自在自线| 日韩欧美在线视频日韩欧美在线视频| 日韩免费精品视频| 亚洲欧美第一页| 国产成人jvid在线播放| 91国内精品久久| 日韩av影片在线观看| 亚洲人成网站777色婷婷| 中文字幕亚洲天堂| 久久免费视频观看|