当前位置:网站首页>The mount command - mounted read-only, solution
The mount command - mounted read-only, solution
2022-08-11 06:35:00 【Emily_rong_2021】
Original:
https://blog.csdn.net/qq_21334991/article/details/78589851Specific content:
2. Mount the CD
a.mkdir /mnt/cdrom/ create a mount point
b.mount -t iso9660 /dev/cdrom /mnt/cdrom mount
c.umount /mnt/cdrom unmount
3. Mount U disk
a.fdisk -l View U disk device file name
b.mount -t vfat /dev/sdb1 /mnt/USB/ fat32 recognized as vfat, fat16 recognized as fat
4. Mount mobile hard disk (Linux does not recognize NTFS format by default)
a. Download NTFS-3G
b. Install using gcc
c.mount -t ntfs-3g /dev/sda5 /mnt/USB/ (refer to NTFS-3g official website)
1.mount command [-t filesystem] [-L volume label name] [-o special option] device file name mount point
-l Query the mounted devices in the system, -l will display the volume label
-a Automatically mount according to the content of the configuration file /etc/fstab
-t system file, add the system type to specify the mount type, can be ext3, ext4, iso9660 and other system files
-L volume label name: mount the specified partition, not the device file name mount
-o special option: additional options can be specified to mount
atime/noatime Update access time/do not update access time.Whether to update the access time of the file when accessing the partition, the default update
async/sync async/sync default async
Auto/noauto Automatic/manual When the mount -a command is executed, whether the content of the /etc/fstab file will be automatically mounted, the default is automatic
Defaults Define default values, equivalent to seven options of rw, suid, dev, exec, auto, nouser, and async
exec/noexec execute/no execute, set the master to allow executable files to be executed in the file system, the default is exec permission
Remount Remount the mounted file system, generally used to modify special permissions
rw/ro read-write/read-only, when the file system is mounted, whether there is read-write permission, default rw
suid/nosuid with/without SUID permission, set whether the file system has SUID permission, default has
User/nouser Allow/disallow ordinary users to mount, set whether the file system allows ordinary users to mount, the default is not allowed, only root can mount partitions
usrquata Write means that the file system supports user disk quotas, which are not supported by default
grpquata write means that the file system supports group disk quotas, which are not allowed by default
eg: mount -o remount, noexec /home makes executable files not executable in the /home directory
边栏推荐
猜你喜欢

OpenMLDB v0.5.0 发布 | 性能、成本、灵活性再攀高峰

8-byte standard request parsing during USB enumeration

STM32-库函数-SetSysClock(void)函数解析-正点原子探索者

vscode插件开发——懒人专用markdown插件开发

Interpretation of the paper: GAN and detection network multi-task/SOD-MTGAN: Small Object Detection via Multi-Task Generative Adversarial Network

Use the adb command to manage applications

Day 82

Tinker接入全流程---编译篇

何凯明新作ViTDET:目标检测领域,颠覆分层backbone理念

开源之夏 2022 火热来袭 | 欢迎报名 OpenMLDB 社区项目~
随机推荐
js learning advanced (event senior pink teacher teaching notes)
Day 86
mysql基础总结
Tinker的自我介绍
vscode插件开发——代码提示、代码补全、代码分析
Minutes of OpenMLDB Meetup No.2
STM32-串口常用寄存器和库函数及配置串口步骤
STM32-库函数-SetSysClock(void)函数解析-正点原子探索者
Day 87
开源机器学习数据库OpenMLDB贡献者计划全面启动
umi约定式路由规则修改
开源之夏 2022 火热来袭 | 欢迎报名 OpenMLDB 社区项目~
JNI入门
Pinyougou project combat notes
Compilation exception resolution
Node 踩坑之80端口被占用
Day 82
何凯明新作ViTDET:目标检测领域,颠覆分层backbone理念
[Meetup]OpenMLDBxDolphinScheduler 链接特征工程与调度环节,打造端到端MLOps工作流
OpenMLDB Pulsar Connector: Efficiently connect real-time data to feature engineering