SlideShare a Scribd company logo
Documentation Home > Solaris Handbook for Sun Peripherals > Chapter 4 Setting Up Removable Media Devices > How Solaris Manages CD-ROM and 
Diskette Devices 
Solaris Handbook for Sun Peripherals 
Previous: PCMCIA Memory Cards Next: Chapter 5 Setting Up an Option Card 
How Solaris Manages CD-ROM and Diskette Devices 
This section describes how CD-ROM and diskette devices are managed by the Solaris operating environment. 
Volume Management 
Volume Management is a program in the operating system that automates the administration of your CD-ROMs and diskettes. For example, in 
previous Solaris releases (Solaris 2.1 or earlier), to mount and access data on a CD-ROM you had to perform many administrative steps (refer 
to ""Comparing Automatic and Manual Mounting"""Comparing Automatic and Manual Mounting"). 
In the Solaris operating environment, Volume Management automatically mounts CD-ROMs and diskettes with file systems at 
/cdrom/ cdrom_name and /floppy/ floppy_name respectively. It also keeps track of CD-ROM and diskette file systems during a 
workstation session (rebooting will clear the in-memory database). To view the media that has been inserted during a workstation session, list 
/vol/dsk: 
% ls /vol/dsk 
supp_sol_2_7_smcc 
unnamed_cdrom unnamed_floppy 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Volume Management uses the configuration file /etc/vold.conf to determine which devices it manages. The default /etc/vold.conf 
file contains the following information: 
# @(#)vold.conf 1.13 92/10/28 SMI 
## 
Volume Daemon Configuration file 
# 
# Database to use (must be first) 
db db_mem.so 
# Labels supported 
label dos label_dos.so floppy 
label cdrom label_cdrom.so cdrom 
label sun label_sun.so floppy 
# Devices to use 
use cdrom drive /dev/dsk/c0t6 dev_cdrom.so cdrom0 
use floppy drive /dev/fd0 dev_floppy.so floppy0 
# Actions 
insert /vol*/dev/fd[0-9]/* user=root /usr/sbin/rmm 
insert /vol*/dev/dsk/* user=root /usr/sbin/rmm 
eject /vol*/dev/fd[0-9]/* user=root /usr/sbin/rmm 
eject /vol*/dev/dsk/* user=root /usr/sbin/rmm 
notify /vol*/rdsk/* group=tty /usr/lib/vold/volmissing -c 
# List of file system types unsafe to eject 
unsafe ufs hsfs pcfs 
Before you add secondary CD-ROM and diskette drives to a system, update the /etc/vold.conf file by adding the new devices to the 
"Devices to use" list. The syntax for a "Devices to use" entry is: 
use device type special shared_object symname options 
Each variable item in the device control line is defined in Table 4-3. 
Table 4-3 Device Control Syntax Descriptions 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Syntax Description Supported and Default Values 
device The type of removable media device to be used cdrom , diskette 
type The class of device: multiple or single media support drive 
special Path name of the device to be used. Path usually begins with /dev Default support is for the devices 
/dev/dsk/c0t6 and /dev/diskette 
shared_object The location of the code that manages this device The default location is 
/usr/lib/vold/ name_ 
of_shared_object 
symname The symbolic name that refers to this device; the symname is placed in 
the device directory, either /cdrom or /floppy 
Default values are 
cdrom0 , floppy0 
options The user, group, and mode permissions for the media inserted Default values are user=nobody , 
group=nobody , mode=0666 
After updating the /etc/vold.conf file, attach the drive and reboot your system with a reconfiguration boot. 
1. Note - 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
For information on booting your system in different modes, see "To Boot After Connecting a Peripheral Device"." 
Note - 
Volume Management controls the /dev/dsk/c0t6d0s0 path to a CD-ROM drive and the /dev/diskette path to a diskette drive. An 
attempt to access a CD-ROM or diskette using these paths will result in an error message. 
Note - 
For more information about Volume Management, see man Pages(4): File Formats and the System Administration Guide. 
Comparing Automatic and Manual Mounting 
Figure 4-1 compares the steps for manual mounting (without Volume Management) and automatic mounting (with Volume Management). 
Volume Management performs many of the tasks previously required to manually mount and work with CDs and diskettes. 
Figure 4-1 Comparison of Manual and Automatic Mounting 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reference Material for CD-ROM and Diskette Devices 
CD-ROM and diskette file systems are mounted in default locations by Volume Management when the media is inserted. See Table 4-4 for 
more information. These mount points are only created and mounted if a file system is already resident on the diskette. 
Table 4-4 CD-ROM and Diskette File System Mount Points 
Media type Mount location State of media 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Diskette /floppy/floppy0 Symbolic link to mounted diskette in local diskette drive 
/floppy/ floppy_name Mounted named diskette 
/floppy/unnamed_floppy Mounted unnamed diskette 
CD-ROM /cdrom/cdrom0 Symbolic link to mounted CD-ROM in local CD-ROM drive 
/cdrom/ CD-ROM_name Mounted named CD-ROM 
/cdrom/ CD-ROM_name/partition Mounted named CD-ROM with partitioned file system 
/cdrom/unnamed_cdrom Mounted unnamed CD-ROM 
To inform Volume Management that a diskette with a file system has been inserted into the drive, use volcheck (1). You do not need to use 
this command if you are going to use fdformat (1) or eject (1). 
Note - 
For more information about these commands, see man Pages(1): User Commands and the System Administration Guide. 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
If no file system exists on the media, Volume Management provides block and character devices in the /vol file system. See Table 4-5 for the 
location of diskette and CD-ROM media in the /vol file system. 
Note - 
All releases provide a symbolic link in /vol/dev/aliases . 
Table 4-5 CD-ROM and Diskette Device Locations in /vol With No File System Present 
Media Type Device Location: State of Media 
Diskette /vol/dev/diskette0/unnamed_floppy Formatted unnamed diskette--block device access 
/vol/dev/rdiskette0/unnamed_floppy Formatted unnamed diskette--raw device access 
/vol/dev/diskette0/unlabeled Unlabeled diskette--block device access 
/vol/dev/rdiskette0/unl abeled Unlabeled diskette--raw device access 
CD-ROM /vol/dev/dsk/c0t6/unnamed_cdrom CD-ROM--block device access 
/vol/dev/rdsk/c0t6/unnamed_cdrom CD-ROM--raw device access 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Using CDs and Diskettes 
Table 4-6 shows the various tasks you can perform using CDs and diskettes. See the System Administration Guide, for details. 
Table 4-6 What You Can Do With CDs and Diskettes 
Media Type Task Available with File Manager? Available through Command Line? 
CD Load a CD Yes Yes 
Examine the contents of a CD Yes Yes 
Copy information from a CD Yes Yes 
Find out if a CD is still in use No Yes 
Eject a CD Yes Yes 
Access CDs on other systems No Yes 
Make local CDs available to other systems No Yes 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Configure a system to play musical CDs No Yes 
Stop Volume Management No Yes 
Restart Volume Management No Yes 
Diskette Format a UFS diskette No Yes 
Place a UFS file system on a diskette No Yes 
Format a DOS diskette No Yes 
Load a diskette Yes Yes 
Examine the contents of a diskette Yes Yes 
Copy or move information from a diskette Yes Yes 
Copy or move information to a diskette Yes Yes 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Find out if a diskette is still in use No Yes 
Eject a diskette Yes Yes 
Access diskettes on other systems No Yes 
Make local diskettes available to other systems No Yes 
Previous: PCMCIA Memory Cards Next: Chapter 5 Setting Up an Option Card 
© 2010, Oracle Corporation and/or its affiliates 
open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com

More Related Content

What's hot

Lect basic computer
Lect basic computer Lect basic computer
Lect basic computer
susir
 
What is-dos-operating-system
What is-dos-operating-systemWhat is-dos-operating-system
What is-dos-operating-system
parag dhok
 
Disk Operating systems
Disk Operating systemsDisk Operating systems
Disk Operating systems
alemay villegas
 
Introduction to ms dos
Introduction to ms dosIntroduction to ms dos
Introduction to ms dos
Indika Rathninda
 
Ms DOS
Ms DOSMs DOS
Ms DOS
Gunjan Singh
 
Disk operating system
Disk operating systemDisk operating system
Disk operating system
swati suman
 
Dos commands
Dos commandsDos commands
Dos commands
ravindravalmiki26
 
Basic dos-commands
Basic dos-commandsBasic dos-commands
Basic dos-commands
parag dhok
 
101 1.1 hardware settings
101 1.1 hardware settings101 1.1 hardware settings
101 1.1 hardware settings
Acácio Oliveira
 
Unit II - MS DOS Commands
Unit II - MS DOS CommandsUnit II - MS DOS Commands
Unit II - MS DOS Commands
Hepsijeba
 
Disk Operating System ( D O S)
Disk  Operating  System ( D O S)Disk  Operating  System ( D O S)
Disk Operating System ( D O S)
MihalR
 
CMD Command prompts
CMD Command promptsCMD Command prompts
CMD Command prompts
Ahmed Hesham
 
Dos commad. by ammar nawab ppt
Dos commad. by ammar nawab pptDos commad. by ammar nawab ppt
Dos commad. by ammar nawab ppt
Ammar_n
 
ITFT - DOS - Disk Operating System
ITFT - DOS - Disk Operating SystemITFT - DOS - Disk Operating System
ITFT - DOS - Disk Operating System
Blossom Sood
 
Ms dos
Ms dosMs dos
Ram Disk
Ram DiskRam Disk
Ram Disk
Roman Okolovich
 
101 4.3 control mounting and unmounting of filesystems
101 4.3 control mounting and unmounting of filesystems101 4.3 control mounting and unmounting of filesystems
101 4.3 control mounting and unmounting of filesystems
Acácio Oliveira
 
MS Dos command
MS Dos commandMS Dos command
MS Dos command
Hardik Patel
 
101 1.2 boot the system
101 1.2 boot the system101 1.2 boot the system
101 1.2 boot the system
Acácio Oliveira
 
101 2.2 install boot manager
101 2.2 install boot manager101 2.2 install boot manager
101 2.2 install boot manager
Acácio Oliveira
 

What's hot (20)

Lect basic computer
Lect basic computer Lect basic computer
Lect basic computer
 
What is-dos-operating-system
What is-dos-operating-systemWhat is-dos-operating-system
What is-dos-operating-system
 
Disk Operating systems
Disk Operating systemsDisk Operating systems
Disk Operating systems
 
Introduction to ms dos
Introduction to ms dosIntroduction to ms dos
Introduction to ms dos
 
Ms DOS
Ms DOSMs DOS
Ms DOS
 
Disk operating system
Disk operating systemDisk operating system
Disk operating system
 
Dos commands
Dos commandsDos commands
Dos commands
 
Basic dos-commands
Basic dos-commandsBasic dos-commands
Basic dos-commands
 
101 1.1 hardware settings
101 1.1 hardware settings101 1.1 hardware settings
101 1.1 hardware settings
 
Unit II - MS DOS Commands
Unit II - MS DOS CommandsUnit II - MS DOS Commands
Unit II - MS DOS Commands
 
Disk Operating System ( D O S)
Disk  Operating  System ( D O S)Disk  Operating  System ( D O S)
Disk Operating System ( D O S)
 
CMD Command prompts
CMD Command promptsCMD Command prompts
CMD Command prompts
 
Dos commad. by ammar nawab ppt
Dos commad. by ammar nawab pptDos commad. by ammar nawab ppt
Dos commad. by ammar nawab ppt
 
ITFT - DOS - Disk Operating System
ITFT - DOS - Disk Operating SystemITFT - DOS - Disk Operating System
ITFT - DOS - Disk Operating System
 
Ms dos
Ms dosMs dos
Ms dos
 
Ram Disk
Ram DiskRam Disk
Ram Disk
 
101 4.3 control mounting and unmounting of filesystems
101 4.3 control mounting and unmounting of filesystems101 4.3 control mounting and unmounting of filesystems
101 4.3 control mounting and unmounting of filesystems
 
MS Dos command
MS Dos commandMS Dos command
MS Dos command
 
101 1.2 boot the system
101 1.2 boot the system101 1.2 boot the system
101 1.2 boot the system
 
101 2.2 install boot manager
101 2.2 install boot manager101 2.2 install boot manager
101 2.2 install boot manager
 

Similar to Cd rom how solaris manages cd-rom and diskette devices

Cd rom mounting cdro-ms on solaris
Cd rom mounting cdro-ms on solarisCd rom mounting cdro-ms on solaris
Cd rom mounting cdro-ms on solaris
Bui Van Cuong
 
Ch12 system administration
Ch12 system administration Ch12 system administration
Ch12 system administration
Raja Waseem Akhtar
 
Divya
DivyaDivya
Divya
diva23
 
Divya
DivyaDivya
Divya
diva23
 
Sahul
SahulSahul
Sahul
SahulSahul
Cd rom mounting and unmounting the cd-rom driver on solaris-linux
Cd rom mounting and unmounting the cd-rom driver on solaris-linuxCd rom mounting and unmounting the cd-rom driver on solaris-linux
Cd rom mounting and unmounting the cd-rom driver on solaris-linux
Bui Van Cuong
 
Red Hat Training
Red Hat   TrainingRed Hat   Training
Red Hat Training
Open Source Group
 
Ch12
Ch12Ch12
Linux filesystemhierarchy
Linux filesystemhierarchyLinux filesystemhierarchy
Linux filesystemhierarchy
Dr. C.V. Suresh Babu
 
Linux conf-admin
Linux conf-adminLinux conf-admin
Linux conf-admin
badamisri
 
Linux Conf Admin
Linux Conf AdminLinux Conf Admin
Linux Conf Admin
Srinivas Badami
 
Linux conf-admin
Linux conf-adminLinux conf-admin
Linux conf-admin
badamisri
 
Recipe of a linux Live CD (archived)
Recipe of a linux Live CD (archived)Recipe of a linux Live CD (archived)
Recipe of a linux Live CD (archived)
Bud Siddhisena
 
101 2.1 design hard disk layout v2
101 2.1 design hard disk layout v2101 2.1 design hard disk layout v2
101 2.1 design hard disk layout v2
Acácio Oliveira
 
Unix Administration 2
Unix Administration 2Unix Administration 2
Unix Administration 2
Information Technology
 
Edubooktraining
EdubooktrainingEdubooktraining
Edubooktraining
norhloudspeaker
 
RHEL Log-files, RPM, Backup & Recovery
RHEL Log-files, RPM, Backup & RecoveryRHEL Log-files, RPM, Backup & Recovery
RHEL Log-files, RPM, Backup & Recovery
Aneesa Rahman
 
Chapter03 Of It .... BBa 1st
Chapter03 Of It .... BBa 1st Chapter03 Of It .... BBa 1st
Chapter03 Of It .... BBa 1st
Geo-Info Ltd
 
Solaris basics
Solaris basicsSolaris basics
Solaris basics
Ashwin Pawar
 

Similar to Cd rom how solaris manages cd-rom and diskette devices (20)

Cd rom mounting cdro-ms on solaris
Cd rom mounting cdro-ms on solarisCd rom mounting cdro-ms on solaris
Cd rom mounting cdro-ms on solaris
 
Ch12 system administration
Ch12 system administration Ch12 system administration
Ch12 system administration
 
Divya
DivyaDivya
Divya
 
Divya
DivyaDivya
Divya
 
Sahul
SahulSahul
Sahul
 
Sahul
SahulSahul
Sahul
 
Cd rom mounting and unmounting the cd-rom driver on solaris-linux
Cd rom mounting and unmounting the cd-rom driver on solaris-linuxCd rom mounting and unmounting the cd-rom driver on solaris-linux
Cd rom mounting and unmounting the cd-rom driver on solaris-linux
 
Red Hat Training
Red Hat   TrainingRed Hat   Training
Red Hat Training
 
Ch12
Ch12Ch12
Ch12
 
Linux filesystemhierarchy
Linux filesystemhierarchyLinux filesystemhierarchy
Linux filesystemhierarchy
 
Linux conf-admin
Linux conf-adminLinux conf-admin
Linux conf-admin
 
Linux Conf Admin
Linux Conf AdminLinux Conf Admin
Linux Conf Admin
 
Linux conf-admin
Linux conf-adminLinux conf-admin
Linux conf-admin
 
Recipe of a linux Live CD (archived)
Recipe of a linux Live CD (archived)Recipe of a linux Live CD (archived)
Recipe of a linux Live CD (archived)
 
101 2.1 design hard disk layout v2
101 2.1 design hard disk layout v2101 2.1 design hard disk layout v2
101 2.1 design hard disk layout v2
 
Unix Administration 2
Unix Administration 2Unix Administration 2
Unix Administration 2
 
Edubooktraining
EdubooktrainingEdubooktraining
Edubooktraining
 
RHEL Log-files, RPM, Backup & Recovery
RHEL Log-files, RPM, Backup & RecoveryRHEL Log-files, RPM, Backup & Recovery
RHEL Log-files, RPM, Backup & Recovery
 
Chapter03 Of It .... BBa 1st
Chapter03 Of It .... BBa 1st Chapter03 Of It .... BBa 1st
Chapter03 Of It .... BBa 1st
 
Solaris basics
Solaris basicsSolaris basics
Solaris basics
 

More from Bui Van Cuong

Basic endable root login via xmanager
Basic endable root login via xmanagerBasic endable root login via xmanager
Basic endable root login via xmanager
Bui Van Cuong
 
Cd rom on solaris
Cd rom  on solarisCd rom  on solaris
Cd rom on solaris
Bui Van Cuong
 
Basic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBasic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBui Van Cuong
 
Basic basic solaris quick referent card
Basic basic solaris quick referent cardBasic basic solaris quick referent card
Basic basic solaris quick referent card
Bui Van Cuong
 
Basic solaris 10 system administration commands
Basic solaris 10 system administration commandsBasic solaris 10 system administration commands
Basic solaris 10 system administration commands
Bui Van Cuong
 
Solaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commandsSolaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commands
Bui Van Cuong
 
Solaris multipathing
Solaris multipathingSolaris multipathing
Solaris multipathing
Bui Van Cuong
 
Solaris 10 workshop service management facility
Solaris 10 workshop service management facilitySolaris 10 workshop service management facility
Solaris 10 workshop service management facility
Bui Van Cuong
 
Solaris user
Solaris userSolaris user
Solaris user
Bui Van Cuong
 
Basic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBasic cau hinh ip tren solaris
Basic cau hinh ip tren solaris
Bui Van Cuong
 
Solaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commandsSolaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commands
Bui Van Cuong
 

More from Bui Van Cuong (11)

Basic endable root login via xmanager
Basic endable root login via xmanagerBasic endable root login via xmanager
Basic endable root login via xmanager
 
Cd rom on solaris
Cd rom  on solarisCd rom  on solaris
Cd rom on solaris
 
Basic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBasic cau hinh ip tren solaris
Basic cau hinh ip tren solaris
 
Basic basic solaris quick referent card
Basic basic solaris quick referent cardBasic basic solaris quick referent card
Basic basic solaris quick referent card
 
Basic solaris 10 system administration commands
Basic solaris 10 system administration commandsBasic solaris 10 system administration commands
Basic solaris 10 system administration commands
 
Solaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commandsSolaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commands
 
Solaris multipathing
Solaris multipathingSolaris multipathing
Solaris multipathing
 
Solaris 10 workshop service management facility
Solaris 10 workshop service management facilitySolaris 10 workshop service management facility
Solaris 10 workshop service management facility
 
Solaris user
Solaris userSolaris user
Solaris user
 
Basic cau hinh ip tren solaris
Basic cau hinh ip tren solarisBasic cau hinh ip tren solaris
Basic cau hinh ip tren solaris
 
Solaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commandsSolaris 10 workshop solaris 10 user commands
Solaris 10 workshop solaris 10 user commands
 

Recently uploaded

Khushi Saini, An Intern from The Sparks Foundation
Khushi Saini, An Intern from The Sparks FoundationKhushi Saini, An Intern from The Sparks Foundation
Khushi Saini, An Intern from The Sparks Foundation
khushisaini0924
 
欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】
欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】
欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】
ahmedendrise81
 
LinkedIn for Your Job Search June 17, 2024
LinkedIn for Your Job Search June  17, 2024LinkedIn for Your Job Search June  17, 2024
LinkedIn for Your Job Search June 17, 2024
Bruce Bennett
 
Gabrielle M. A. Sinaga Portfolio, Film Student (2024)
Gabrielle M. A. Sinaga Portfolio, Film Student (2024)Gabrielle M. A. Sinaga Portfolio, Film Student (2024)
Gabrielle M. A. Sinaga Portfolio, Film Student (2024)
GabrielleSinaga
 
一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理
一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理
一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理
nguqayx
 
欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】
mukeshomran942
 
体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】
体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】
体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】
waldorfnorma258
 
一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理
一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理
一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理
aweuwyo
 
按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理
按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理
按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理
evnum
 
BUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAAN
BUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAANBUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAAN
BUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAAN
cahgading001
 
Switching Careers Slides - JoyceMSullivan SocMediaFin - 2024Jun11.pdf
Switching Careers Slides - JoyceMSullivan SocMediaFin -  2024Jun11.pdfSwitching Careers Slides - JoyceMSullivan SocMediaFin -  2024Jun11.pdf
Switching Careers Slides - JoyceMSullivan SocMediaFin - 2024Jun11.pdf
SocMediaFin - Joyce Sullivan
 
欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】
欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】
欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】
lemike859
 
欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】
欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】
欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】
karimimorine448
 
A Guide to a Winning Interview June 2024
A Guide to a Winning Interview June 2024A Guide to a Winning Interview June 2024
A Guide to a Winning Interview June 2024
Bruce Bennett
 
在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样
在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样
在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样
yhkox
 
办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样
办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样
办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样
kkkkr4pg
 
美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】
美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】
美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】
ahmedendrise81
 
Community Skills Building Workshop | PMI Silver Spring Chapter | June 12, 2024
Community Skills Building Workshop | PMI Silver Spring Chapter  | June 12, 2024Community Skills Building Workshop | PMI Silver Spring Chapter  | June 12, 2024
Community Skills Building Workshop | PMI Silver Spring Chapter | June 12, 2024
Hector Del Castillo, CPM, CPMM
 
一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理
一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理
一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理
cenaws
 
一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理
一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理
一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理
1wful2fm
 

Recently uploaded (20)

Khushi Saini, An Intern from The Sparks Foundation
Khushi Saini, An Intern from The Sparks FoundationKhushi Saini, An Intern from The Sparks Foundation
Khushi Saini, An Intern from The Sparks Foundation
 
欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】
欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】
欧洲杯买球-欧洲杯买球买球推荐-欧洲杯买球买球推荐网站|【​网址​🎉ac10.net🎉​】
 
LinkedIn for Your Job Search June 17, 2024
LinkedIn for Your Job Search June  17, 2024LinkedIn for Your Job Search June  17, 2024
LinkedIn for Your Job Search June 17, 2024
 
Gabrielle M. A. Sinaga Portfolio, Film Student (2024)
Gabrielle M. A. Sinaga Portfolio, Film Student (2024)Gabrielle M. A. Sinaga Portfolio, Film Student (2024)
Gabrielle M. A. Sinaga Portfolio, Film Student (2024)
 
一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理
一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理
一比一原版(EUR毕业证)鹿特丹伊拉斯姆斯大学毕业证如何办理
 
欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯投注-欧洲杯投注投注官方网站-欧洲杯投注买球投注官网|【​网址​🎉ac99.net🎉​】
 
体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】
体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】
体育博彩论坛-十大体育博彩论坛-体育博彩论坛|【​网址​🎉ac55.net🎉​】
 
一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理
一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理
一比一原版(uwm毕业证书)美国威斯康星大学密尔沃基分校毕业证如何办理
 
按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理
按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理
按照学校原版(UofT文凭证书)多伦多大学毕业证快速办理
 
BUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAAN
BUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAANBUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAAN
BUKU PENJAGAAN BUKU PENJAGAAN BUKU PENJAGAAN
 
Switching Careers Slides - JoyceMSullivan SocMediaFin - 2024Jun11.pdf
Switching Careers Slides - JoyceMSullivan SocMediaFin -  2024Jun11.pdfSwitching Careers Slides - JoyceMSullivan SocMediaFin -  2024Jun11.pdf
Switching Careers Slides - JoyceMSullivan SocMediaFin - 2024Jun11.pdf
 
欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】
欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】
欧洲杯足彩-欧洲杯足彩体育投注-欧洲杯足彩投注网站|【​网址​🎉ac99.net🎉​】
 
欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】
欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】
欧洲杯外围-欧洲杯外围赛程-欧洲杯外围压注|【​网址​🎉ac99.net🎉​】
 
A Guide to a Winning Interview June 2024
A Guide to a Winning Interview June 2024A Guide to a Winning Interview June 2024
A Guide to a Winning Interview June 2024
 
在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样
在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样
在线办理(UOIT毕业证书)安大略省理工大学毕业证在读证明一模一样
 
办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样
办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样
办理阿卡迪亚大学毕业证(uvic毕业证)本科文凭证书原版一模一样
 
美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】
美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】
美洲杯买球-美洲杯买球下注平台-美洲杯买球投注平台|【​网址​🎉ac55.net🎉​】
 
Community Skills Building Workshop | PMI Silver Spring Chapter | June 12, 2024
Community Skills Building Workshop | PMI Silver Spring Chapter  | June 12, 2024Community Skills Building Workshop | PMI Silver Spring Chapter  | June 12, 2024
Community Skills Building Workshop | PMI Silver Spring Chapter | June 12, 2024
 
一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理
一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理
一比一原版坎特伯雷大学毕业证(UC毕业证书)学历如何办理
 
一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理
一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理
一比一原版美国西北大学毕业证(NWU毕业证书)学历如何办理
 

Cd rom how solaris manages cd-rom and diskette devices

  • 1. Documentation Home > Solaris Handbook for Sun Peripherals > Chapter 4 Setting Up Removable Media Devices > How Solaris Manages CD-ROM and Diskette Devices Solaris Handbook for Sun Peripherals Previous: PCMCIA Memory Cards Next: Chapter 5 Setting Up an Option Card How Solaris Manages CD-ROM and Diskette Devices This section describes how CD-ROM and diskette devices are managed by the Solaris operating environment. Volume Management Volume Management is a program in the operating system that automates the administration of your CD-ROMs and diskettes. For example, in previous Solaris releases (Solaris 2.1 or earlier), to mount and access data on a CD-ROM you had to perform many administrative steps (refer to ""Comparing Automatic and Manual Mounting"""Comparing Automatic and Manual Mounting"). In the Solaris operating environment, Volume Management automatically mounts CD-ROMs and diskettes with file systems at /cdrom/ cdrom_name and /floppy/ floppy_name respectively. It also keeps track of CD-ROM and diskette file systems during a workstation session (rebooting will clear the in-memory database). To view the media that has been inserted during a workstation session, list /vol/dsk: % ls /vol/dsk supp_sol_2_7_smcc unnamed_cdrom unnamed_floppy open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 2. Volume Management uses the configuration file /etc/vold.conf to determine which devices it manages. The default /etc/vold.conf file contains the following information: # @(#)vold.conf 1.13 92/10/28 SMI ## Volume Daemon Configuration file # # Database to use (must be first) db db_mem.so # Labels supported label dos label_dos.so floppy label cdrom label_cdrom.so cdrom label sun label_sun.so floppy # Devices to use use cdrom drive /dev/dsk/c0t6 dev_cdrom.so cdrom0 use floppy drive /dev/fd0 dev_floppy.so floppy0 # Actions insert /vol*/dev/fd[0-9]/* user=root /usr/sbin/rmm insert /vol*/dev/dsk/* user=root /usr/sbin/rmm eject /vol*/dev/fd[0-9]/* user=root /usr/sbin/rmm eject /vol*/dev/dsk/* user=root /usr/sbin/rmm notify /vol*/rdsk/* group=tty /usr/lib/vold/volmissing -c # List of file system types unsafe to eject unsafe ufs hsfs pcfs Before you add secondary CD-ROM and diskette drives to a system, update the /etc/vold.conf file by adding the new devices to the "Devices to use" list. The syntax for a "Devices to use" entry is: use device type special shared_object symname options Each variable item in the device control line is defined in Table 4-3. Table 4-3 Device Control Syntax Descriptions open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 3. Syntax Description Supported and Default Values device The type of removable media device to be used cdrom , diskette type The class of device: multiple or single media support drive special Path name of the device to be used. Path usually begins with /dev Default support is for the devices /dev/dsk/c0t6 and /dev/diskette shared_object The location of the code that manages this device The default location is /usr/lib/vold/ name_ of_shared_object symname The symbolic name that refers to this device; the symname is placed in the device directory, either /cdrom or /floppy Default values are cdrom0 , floppy0 options The user, group, and mode permissions for the media inserted Default values are user=nobody , group=nobody , mode=0666 After updating the /etc/vold.conf file, attach the drive and reboot your system with a reconfiguration boot. 1. Note - open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 4. For information on booting your system in different modes, see "To Boot After Connecting a Peripheral Device"." Note - Volume Management controls the /dev/dsk/c0t6d0s0 path to a CD-ROM drive and the /dev/diskette path to a diskette drive. An attempt to access a CD-ROM or diskette using these paths will result in an error message. Note - For more information about Volume Management, see man Pages(4): File Formats and the System Administration Guide. Comparing Automatic and Manual Mounting Figure 4-1 compares the steps for manual mounting (without Volume Management) and automatic mounting (with Volume Management). Volume Management performs many of the tasks previously required to manually mount and work with CDs and diskettes. Figure 4-1 Comparison of Manual and Automatic Mounting open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 5. Reference Material for CD-ROM and Diskette Devices CD-ROM and diskette file systems are mounted in default locations by Volume Management when the media is inserted. See Table 4-4 for more information. These mount points are only created and mounted if a file system is already resident on the diskette. Table 4-4 CD-ROM and Diskette File System Mount Points Media type Mount location State of media open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 6. Diskette /floppy/floppy0 Symbolic link to mounted diskette in local diskette drive /floppy/ floppy_name Mounted named diskette /floppy/unnamed_floppy Mounted unnamed diskette CD-ROM /cdrom/cdrom0 Symbolic link to mounted CD-ROM in local CD-ROM drive /cdrom/ CD-ROM_name Mounted named CD-ROM /cdrom/ CD-ROM_name/partition Mounted named CD-ROM with partitioned file system /cdrom/unnamed_cdrom Mounted unnamed CD-ROM To inform Volume Management that a diskette with a file system has been inserted into the drive, use volcheck (1). You do not need to use this command if you are going to use fdformat (1) or eject (1). Note - For more information about these commands, see man Pages(1): User Commands and the System Administration Guide. open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 7. If no file system exists on the media, Volume Management provides block and character devices in the /vol file system. See Table 4-5 for the location of diskette and CD-ROM media in the /vol file system. Note - All releases provide a symbolic link in /vol/dev/aliases . Table 4-5 CD-ROM and Diskette Device Locations in /vol With No File System Present Media Type Device Location: State of Media Diskette /vol/dev/diskette0/unnamed_floppy Formatted unnamed diskette--block device access /vol/dev/rdiskette0/unnamed_floppy Formatted unnamed diskette--raw device access /vol/dev/diskette0/unlabeled Unlabeled diskette--block device access /vol/dev/rdiskette0/unl abeled Unlabeled diskette--raw device access CD-ROM /vol/dev/dsk/c0t6/unnamed_cdrom CD-ROM--block device access /vol/dev/rdsk/c0t6/unnamed_cdrom CD-ROM--raw device access open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 8. Using CDs and Diskettes Table 4-6 shows the various tasks you can perform using CDs and diskettes. See the System Administration Guide, for details. Table 4-6 What You Can Do With CDs and Diskettes Media Type Task Available with File Manager? Available through Command Line? CD Load a CD Yes Yes Examine the contents of a CD Yes Yes Copy information from a CD Yes Yes Find out if a CD is still in use No Yes Eject a CD Yes Yes Access CDs on other systems No Yes Make local CDs available to other systems No Yes open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 9. Configure a system to play musical CDs No Yes Stop Volume Management No Yes Restart Volume Management No Yes Diskette Format a UFS diskette No Yes Place a UFS file system on a diskette No Yes Format a DOS diskette No Yes Load a diskette Yes Yes Examine the contents of a diskette Yes Yes Copy or move information from a diskette Yes Yes Copy or move information to a diskette Yes Yes open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
  • 10. Find out if a diskette is still in use No Yes Eject a diskette Yes Yes Access diskettes on other systems No Yes Make local diskettes available to other systems No Yes Previous: PCMCIA Memory Cards Next: Chapter 5 Setting Up an Option Card © 2010, Oracle Corporation and/or its affiliates open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com