-
Чтобы получить список подключенных устройств, запустите в терминале эту команду:
mount
The listing shows the device (such as a hard disk partition), the mount point (where you access the files), the filesystem type, and the mount options.
This example shows the hda2 hard disk partition mounted as '/', with the filesystem type ext3. The partition is mounted with two options: one to allow the device to be read from and written to and the other to remount the device as read-only in the event of any errors.
/dev/hda2 on / type ext3 (rw,errors=remount-ro)
-
Чтобы просмотреть список устройств PCI:
lspci
-
Чтобы просмотреть список устройств USB:
lsusb
Для этой задачи вам потребуются привилегии супер пользователя. Смотрите «Пользователь root и команда sudo».
-
Assuming that
/media/cdrom0/
is the mount point of your CD/DVD-ROM device -
To mount a CD/DVD-ROM:
sudo mount /media/cdrom0/ -o unhide
-
Чтобы отключить CD/DVD-ROM:
sudo umount /media/cdrom0/