F5F Stay Refreshed Software Operating Systems Unable to reach my personal storage device.

Unable to reach my personal storage device.

Unable to reach my personal storage device.

W
WOWADEADFROG
Junior Member
3
10-12-2021, 07:00 AM
#1
I chose to set up Debian on my old server that functions as a host. I have some Linux knowledge but limited experience, which is why I wrote this article. For one reason, the mounted drives with fstab entries are read-only, and the owner shows as root. The fstab lines look like this: UUID=(uuid of 2tb drive) /home/server/hdd2tb ntfs defaults,user 0 2 UUID=(uuid of 1tb drive) /home/server/hdd1tb ntfs defaults,user 0 This was my first attempt at troubleshooting, so I’m reaching out for advice. I can share CLI outputs or screenshots if needed. Also, this is my very first post here—welcome!
W
WOWADEADFROG
10-12-2021, 07:00 AM #1

I chose to set up Debian on my old server that functions as a host. I have some Linux knowledge but limited experience, which is why I wrote this article. For one reason, the mounted drives with fstab entries are read-only, and the owner shows as root. The fstab lines look like this: UUID=(uuid of 2tb drive) /home/server/hdd2tb ntfs defaults,user 0 2 UUID=(uuid of 1tb drive) /home/server/hdd1tb ntfs defaults,user 0 This was my first attempt at troubleshooting, so I’m reaching out for advice. I can share CLI outputs or screenshots if needed. Also, this is my very first post here—welcome!

D
DinVin
Member
64
10-13-2021, 07:40 AM
#2
UUID=(hash of 2tb drive) /home/server/hdd2tb ntfs defaults,user 0 2 Seeing normal results except for a minor note: you're employing NTFS. This isn't a standard Linux file system, which could explain the problems. It's better to use ext4 instead. By default, Linux only supports reading NTFS, though writing is available but not ideal for everyday tasks.
D
DinVin
10-13-2021, 07:40 AM #2

UUID=(hash of 2tb drive) /home/server/hdd2tb ntfs defaults,user 0 2 Seeing normal results except for a minor note: you're employing NTFS. This isn't a standard Linux file system, which could explain the problems. It's better to use ext4 instead. By default, Linux only supports reading NTFS, though writing is available but not ideal for everyday tasks.

E
eastland97
Senior Member
644
11-02-2021, 08:13 AM
#3
Yes, you can activate NTFS write support to assist with transferring large datasets.
E
eastland97
11-02-2021, 08:13 AM #3

Yes, you can activate NTFS write support to assist with transferring large datasets.

E
EeveeBoy64
Member
171
11-02-2021, 01:23 PM
#4
To access the drive, you must install the ntfs-3g driver. Refer to the Debian wiki for details. You can mount it using commands like this: create directory and then mount with the appropriate flags. Additional guidance is available on Linux configuration sites.
E
EeveeBoy64
11-02-2021, 01:23 PM #4

To access the drive, you must install the ntfs-3g driver. Refer to the Debian wiki for details. You can mount it using commands like this: create directory and then mount with the appropriate flags. Additional guidance is available on Linux configuration sites.

E
elorable
Member
72
11-08-2021, 05:27 PM
#5
Required sudo access was needed, but otherwise it functioned perfectly. Thanks!
E
elorable
11-08-2021, 05:27 PM #5

Required sudo access was needed, but otherwise it functioned perfectly. Thanks!

_
_Arctos_
Member
63
11-08-2021, 11:11 PM
#6
I changed the format to ext4 and attempted to create the mount using fstab, but the owner remains root. The fstab entry is: UUID=32fe45ab-84e8-44ee-8a45-20a72496d093 /home/server/hdd1tb ext4 defaults,rw 0 2 ps. I tested with and without the rw flag, yet it didn’t work.
_
_Arctos_
11-08-2021, 11:11 PM #6

I changed the format to ext4 and attempted to create the mount using fstab, but the owner remains root. The fstab entry is: UUID=32fe45ab-84e8-44ee-8a45-20a72496d093 /home/server/hdd1tb ext4 defaults,rw 0 2 ps. I tested with and without the rw flag, yet it didn’t work.

J
jaffercake59
Member
163
11-09-2021, 06:25 AM
#7
Update the permissions after formatting and mounting the disk. Use the command to set the owner as specified.
J
jaffercake59
11-09-2021, 06:25 AM #7

Update the permissions after formatting and mounting the disk. Use the command to set the owner as specified.

R
randomabby
Senior Member
476
11-09-2021, 09:26 PM
#8
I think it's fixed! It took a bit longer for the drive to load, but it functioned perfectly once it was done. Thanks!
R
randomabby
11-09-2021, 09:26 PM #8

I think it's fixed! It took a bit longer for the drive to load, but it functioned perfectly once it was done. Thanks!