How to mount a CD in centos

王林
Release: 2020-03-14 17:28:19
Original
5004 people have browsed it

How to mount a CD in centos

The format of the mount command:

mount -t type device directory
Copy after login

type indicates the format of the file system in the device to be mounted:

vfat: Windows Long file system

ntfs: Advanced file system widely used in Windows NT and Windows 7

iso9660: Standard cdrom file system

The file format of general U disk is: vfat

(Recommended learning: linux video tutorial)

The default CD device is under /dev/cdrom. To the point where you want to mount it, you can create a new folder at will, so basically The command is as follows:

Create a new folder cdrom in the /root directory

mkdir cdrom
Copy after login

Mounting command:

mount -y iso9660 -o ro /dev/cdrom /root/cdrom
Copy after login

Recommended related tutorials: CentOS usage tutorial

The above is the detailed content of How to mount a CD in centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!