Not super confortable with linux yet, I have an issue mounting my 4tb thunderbolt nvme ssd.
I have the device authorized and seen but the only way I can mount it is via fstab and only after a reboot.
If I unmount it after that, I can't remount it until a reboot. not very useful for an external disk.
If I run a manual mount of it, the command will hang forever (I see the ssd led flashing a few second) and I see no error message anywhere.
Any idea how I could mount/unmount it without a reboot ?
I have the device authorized and seen but the only way I can mount it is via fstab and only after a reboot.
If I unmount it after that, I can't remount it until a reboot. not very useful for an external disk.
If I run a manual mount of it, the command will hang forever (I see the ssd led flashing a few second) and I see no error message anywhere.
Any idea how I could mount/unmount it without a reboot ?
Bash:
cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
UUID=e8ec8dd3-68d7-419f-a0ae-e607bc97ab9f /mount/nvme-ext1 ext4 defaults,noatime,nofail 0 0
------
boltctl list
● ASMedia 246x
├─ type: peripheral
├─ name: 246x
├─ vendor: ASMedia
├─ uuid: 19354c17-d0b6-69e1-ffff-ffffffffffff
├─ generation: USB4
├─ status: authorized
│ ├─ domain: 13aa8780-d0e8-8a33-ffff-ffffffffffff
│ ├─ rx speed: 40 Gb/s = 2 lanes * 20 Gb/s
│ ├─ tx speed: 40 Gb/s = 2 lanes * 20 Gb/s
│ └─ authflags: none
├─ authorized: Sun 09 Feb 2025 05:43:43 PM UTC
├─ connected: Sun 09 Feb 2025 05:43:41 PM UTC
└─ stored: Thu 06 Feb 2025 07:53:44 PM UTC
├─ policy: auto
└─ key: no
------
fdisk -l /dev/nvme1n1
Disk /dev/nvme1n1: 3.64 TiB, 4000787030016 bytes, 7814037168 sectors
Disk model: Samsung SSD 990 PRO 4TB
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 48A6D5EF-56EA-4A07-B2A1-127ED8D87E83
Device Start End Sectors Size Type
/dev/nvme1n1p1 2048 7814037134 7814035087 3.6T Linux filesystem
------
blkid -s UUID /dev/nvme1n1p1
/dev/nvme1n1p1: UUID="e8ec8dd3-68d7-419f-a0ae-e607bc97ab9f"
------
mount /dev/nvme1n1p1 /mount/nvme-ext1/ ****(this command blink the ssd but hang)