当前位置:网站首页>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贡献者计划全面启动

js 学习进阶(事件高级 pink老师教学笔记)

JNI入门

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

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

将一个excel文件中多个sheet页“拆分“成多个“独立“excel文件

Day 83

Open Source Machine Learning Database OpenMLDB Contributor Program Fully Launched

Node 踩坑之80端口被占用
![[Meetup]OpenMLDBxDolphinScheduler 链接特征工程与调度环节,打造端到端MLOps工作流](/img/d8/a367c26b51d9dbaf53bf4fe2a13917.png)
[Meetup]OpenMLDBxDolphinScheduler 链接特征工程与调度环节,打造端到端MLOps工作流
随机推荐
Day 82
Day 67
ARM 汇编指令 ADR 与 LDR 使用
Visual studio2019 配置使用pthread
JVM调优整理
Vscode远程连接服务器终端zsh+Oh-my-zsh + Powerlevel10 + Autosuggestions + Autojump + Syntax-highlighting
OpenMLDB + Jupyter Notebook: Quickly Build Machine Learning Applications
Jetpack之dataBinding
js learning advanced BOM part (pink teacher notes)
精彩联动 | OpenMLDB Pulsar Connector原理和实操
promise.all 学习(多个promise对象回调)
Interpretation of the paper: Cross-Modality Fusion Transformer for Multispectral Object Detection
Day 78
Jetpack使用异常问题集锦
Argparse模块 学习
mount命令--挂载出现只读,解决方案
vscode插件开发——代码提示、代码补全、代码分析(续)
Tinker的自我介绍
mongoose连接mongodb不错,显示encoding没有定义
Day 83