Hi, I have a 1 Terabyte Seagate Video 3.5 HDD which I removed from a DirecTV DVR recorder.
The goal I have is to mount this drive and take a look at the contents of the drive if possible in Dolphin.
Gateway-DX4850:~ # lsblk -o +FSTYPE
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS FSTYPE
sda 8:0 0 931.5G 0 disk
├─sda1 8:1 0 517.7M 0 part swap
├─sda2 8:2 0 15G 0 part xfs
├─sda3 8:3 0 915.9G 0 part
└─sda4 8:4 0 133.4M 0 part
sdb 8:16 0 465.8G 0 disk
├─sdb1 8:17 0 8M 0 part
└─sdb2 8:18 0 465.8G 0 part crypto_LUKS
└─cr_ata-ST3500418AS_9VMR840M-part2 254:0 0 465.7G 0 crypt LVM2_member
├─system-root 254:1 0 62.7G 0 lvm /boot/grub2/i386-pc btrfs
│ /var
│ /root
│ /usr/local
│ /srv
│ /boot/grub2/x86_64-efi
│ /opt
│ /.snapshots
│ /
├─system-swap 254:2 0 7.6G 0 lvm [SWAP] swap
└─system-home 254:3 0 395.4G 0 lvm /home xfs
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
sdf 8:80 1 0B 0 disk
sdg 8:96 1 0B 0 disk
sr0 11:0 1 1024M 0 rom
Gateway-DX4850:/mnt # mkdir Seagate-Video-1TB
Gateway-DX4850:/mnt # ls -lah
total 0
dr-xr-xr-x. 1 root root 40 Jan 2 01:31 .
drwxr-xr-x. 1 root root 142 Sep 14 02:53 ..
drwxr-xr-x. 1 root root 0 Jan 2 01:31 Seagate-Video-1TB
drwxr-xr-x. 1 root root 6 Sep 14 02:49 var
Gateway-DX4850:/mnt # chown -R paul:paul /mnt/Seagate-Video-1TB
Gateway-DX4850:/mnt # ls -lah
total 0
dr-xr-xr-x. 1 root root 40 Jan 2 01:31 .
drwxr-xr-x. 1 root root 142 Sep 14 02:53 ..
drwxr-xr-x. 1 paul paul 0 Jan 2 01:31 Seagate-Video-1TB
drwxr-xr-x. 1 root root 6 Sep 14 02:49 var
There is an error message when trying to mount manually:
Gateway-DX4850:/mnt # mount /sda/sda2 /mnt/Seagate-Video-1TB/
mount: /mnt/Seagate-Video-1TB: special device /sda/sda2 does not exist.
dmesg(1) may have more information after failed mount system call.
Some related dmesg output:
[ 2269.892047] [ T7344] XFS (sda2): Deprecated V4 format (crc=0) will not be supported after September 2030.
[ 2269.905256] [ T7344] XFS (sda2): Filesystem has a realtime volume, use rtdev=device option
[ 2269.905266] [ T7344] XFS (sda2): RT mount failed
Then I review an rtdev=device explanation excerpt:
-r realtime_section_options
These options specify the location, size, and other parameters of the real-time section of the filesystem.
The valid realtime_section_options are:
rtdev=device
Now I decide to ask for help with this. How to mount this drive?