Otrzymuję te informacje ze strony man Unixa i mojego własnego systemu Linux. Nic nie wiem o hp-ux, więc mam nadzieję, że to dotyczy.
Kiedy robię a ls -al /dev
na moim systemie Linux, otrzymuję różne urządzenia o nazwach dvd, cdrom i scd0, które są symbolicznymi linkami do sr0. Możesz mieć coś podobnego.
Jestem w stanie zamontować cdrom za pomocą następującej linii:
mount -t iso9660 /dev/cdrom /cdrom
gdzie / cdrom to wstępnie utworzony katalog do montowania płyt CD. W katalogu / mnt możesz mieć kilka katalogów, których możesz użyć. Mogę zamienić / dev / cdrom na / dev / dvd lub / dev / sr0 ... wszystko idzie w to samo miejsce.
Montowanie jest zwykle wystarczająco inteligentne, aby dowiedzieć się, jaki typ systemu plików próbuje zamontować, więc zwykle można uniknąć takiej linii:
mount /dev/cdrom /cdrom
Tam, gdzie musisz tylko określić urządzenie, które chcesz zamontować, oraz lokalizację lub katalog, na którym chcesz go zamontować.
Te polecenia będą musiały być uruchamiane jako root. Jeśli masz wpis w / etc / fstab lub / etc / mmtab dla cdrom ... to możesz zamontować go za pomocą czegoś takiego
mount /dev/cdrom
gdzie punkt montowania jest predefiniowany. Oto fragment strony podręcznika uniksowego:
The file /etc/fstab (see fstab(5)), may contain lines describing what
devices are usually mounted where, using which options. This file is
used in three ways:
(i) The command
mount -a [-t type] [-O optlist]
(usually given in a bootscript) causes all file systems mentioned in
fstab (of the proper type and/or having or not having the proper
options) to be mounted as indicated, except for those whose line con-
tains the noauto keyword. Adding the -F option will make mount fork, so
that the filesystems are mounted simultaneously.
(ii) When mounting a file system mentioned in fstab, it suffices to
give only the device, or only the mount point.
(iii) Normally, only the superuser can mount file systems. However,
when fstab contains the user option on a line, anybody can mount the
corresponding system.
Thus, given a line
/dev/cdrom /cd iso9660 ro,user,noauto,unhide
any user can mount the iso9660 file system found on his CDROM using the
command
mount /dev/cdrom
or
mount /cd