Mount an NTFS drive
-
- OMV 5.x
- resolved
- Tanosuke Hata
-
-
why is that?
Because you haven't mounted it yet.
-
Because you haven't mounted it yet.
I mounted it now and I'm trying to transfer files in it with midnight commander, but it says that the fylesystem is read only, why did OMV mount it like that?
-
-
why did OMV mount it like that?
No idea. Are you sure it is read only or you just don't have the right permissions? What is the output of: grep ntfs /proc/mounts
-
No idea. Are you sure it is read only or you just don't have the right permissions? What is the output of: grep ntfs /procmounts
It says that procmounts is non-existent
-
grep is definitely installed. I had a typo. grep ntfs /proc/mounts
-
-
grep is definitely installed. I had a typo. grep ntfs /proc/mounts
Yes, I tried grep ntfs /proc/mounts and I got nothing
so I tried cat /proc/mounts and I got this:
Code
Display Moresysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0 proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0 udev /dev devtmpfs rw,nosuid,relatime,size=1986028k,nr_inodes=496507,mode=755 0 0 devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0 tmpfs /run tmpfs rw,nosuid,noexec,relatime,size=401740k,mode=755 0 0 /dev/sdd1 / ext4 rw,relatime,errors=remount-ro 0 0 securityfs /sys/kernel/security securityfs rw,nosuid,nodev,noexec,relatime 0 0 tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0 tmpfs /run/lock tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k 0 0 tmpfs /sys/fs/cgroup tmpfs ro,nosuid,nodev,noexec,mode=755 0 0 cgroup2 /sys/fs/cgroup/unified cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate 0 0 cgroup /sys/fs/cgroup/systemd cgroup rw,nosuid,nodev,noexec,relatime,xattr,name=systemd 0 0 pstore /sys/fs/pstore pstore rw,nosuid,nodev,noexec,relatime 0 0 none /sys/fs/bpf bpf rw,nosuid,nodev,noexec,relatime,mode=700 0 0 cgroup /sys/fs/cgroup/cpuset cgroup rw,nosuid,nodev,noexec,relatime,cpuset 0 0 cgroup /sys/fs/cgroup/blkio cgroup rw,nosuid,nodev,noexec,relatime,blkio 0 0 cgroup /sys/fs/cgroup/net_cls,net_prio cgroup rw,nosuid,nodev,noexec,relatime,net_cls,net_prio 0 0 cgroup /sys/fs/cgroup/pids cgroup rw,nosuid,nodev,noexec,relatime,pids 0 0 cgroup /sys/fs/cgroup/freezer cgroup rw,nosuid,nodev,noexec,relatime,freezer 0 0 cgroup /sys/fs/cgroup/memory cgroup rw,nosuid,nodev,noexec,relatime,memory 0 0 cgroup /sys/fs/cgroup/perf_event cgroup rw,nosuid,nodev,noexec,relatime,perf_event 0 0 cgroup /sys/fs/cgroup/rdma cgroup rw,nosuid,nodev,noexec,relatime,rdma 0 0 cgroup /sys/fs/cgroup/cpu,cpuacct cgroup rw,nosuid,nodev,noexec,relatime,cpu,cpuacct 0 0 cgroup /sys/fs/cgroup/devices cgroup rw,nosuid,nodev,noexec,relatime,devices 0 0 mqueue /dev/mqueue mqueue rw,relatime 0 0 systemd-1 /proc/sys/fs/binfmt_misc autofs rw,relatime,fd=43,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=12629 0 0 debugfs /sys/kernel/debug debugfs rw,relatime 0 0 sunrpc /run/rpc_pipefs rpc_pipefs rw,relatime 0 0 hugetlbfs /dev/hugepages hugetlbfs rw,relatime,pagesize=2M 0 0 fusectl /sys/fs/fuse/connections fusectl rw,relatime 0 0 tmpfs /tmp tmpfs rw,relatime 0 0 /dev/sdc1 /srv/dev-disk-by-label-DATI500 fuseblk rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0 /dev/sdb1 /srv/dev-disk-by-label-Hyperspin fuseblk rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0 /dev/sda1 /srv/dev-disk-by-label-DISCO2TB fuseblk rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0 /dev/mapper/docker-8:17-46340-3f640b5f4b4f294ee50e7f9a1bd29eeaa28407dacb93754706e42b8e157e929e /srv/dev-disk-by-label-Hyperspin/docker/devicemapper/mnt/3f640b5f4b4f294ee50e7f9a1bd29eeaa28407dacb93754706e42b8e157e929e xfs rw,relatime,nouuid,attr2,inode64,logbufs=8,logbsize=32k,sunit=128,swidth=128,noquota 0 0 /dev/mapper/docker-8:17-46340-14784c53b45bec0be0b84398b15266ef291402ce20e98a8ae3ff647f4362cc4c /srv/dev-disk-by-label-Hyperspin/docker/devicemapper/mnt/14784c53b45bec0be0b84398b15266ef291402ce20e98a8ae3ff647f4362cc4c xfs rw,relatime,nouuid,attr2,inode64,logbufs=8,logbsize=32k,sunit=128,swidth=128,noquota 0 0 nsfs /run/docker/netns/bcf7e3e868f6 nsfs rw 0 0 nsfs /run/docker/netns/76bf8aa801b2 nsfs rw 0 0 /dev/sde2 /srv/dev-disk-by-label-4TB-RED fuseblk ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096 0 0
-
I forgot that ntfs drives show up as fuseblk drives. Your drive is mounted read only but I would guess it might be because it wasn't shutdown properly on windows last time? I would try:
sudo mount -o rw,remount /srv/dev-disk-by-label-4TB-RED
-
I forgot that ntfs drives show up as fuseblk drives. Your drive is mounted read only but I would guess it might be because it wasn't shutdown properly on windows last time? I would try:
sudo mount -o rw,remount /srv/dev-disk-by-label-4TB-RED
Probably, I got an e-sata port on my PC, so I hot-removed the drive.
this is the result of the command:
"Remounting is not supported at present. You have to umount volume and then mount it once again."
-
-
You may have to plug it back in to the windows machine and shut it down properly.
sudo umount /srv/dev-disk-by-label-4TB-RED
sudo mount /srv/dev-disk-by-label-4TB-RED
-
You may have to plug it back in to the windows machine and shut it down properly.
sudo umount /srv/dev-disk-by-label-4TB-RED
sudo mount /srv/dev-disk-by-label-4TB-RED
You're right, I did 't and now it works, thanks.
-
Tanosuke Hata
Added the Label resolved -
I hoping that once the pargon ntfs code is actually in the Linux kernel that Linux will be able to properly fix an improperly shutdown drive. But until this, we know the fix.
-
Participate now!
Don’t have an account yet? Register yourself now and be a part of our community!