I have a USB drive, formatted to ext4 that I use under proxmox for backup of my VMs.
Normally backup proceeds at between 250 and 300 Mbps (USB3 speed).
However, if I disconnect the USB drive, and reconnect (same cable, same port) I have to get it recognised by running "mount -a" in the cluster's shell. That appears to work OK, but afterwards, backups run as between 2.5 and 3.0 Mbps. This is not a typo. It is less than 1% of the speed.
If I reboot, all starts to work properly again.
This is my fstab file.
How can I get the USB drive to be recognised properly (preferably automatically), and work as intended?
Normally backup proceeds at between 250 and 300 Mbps (USB3 speed).
However, if I disconnect the USB drive, and reconnect (same cable, same port) I have to get it recognised by running "mount -a" in the cluster's shell. That appears to work OK, but afterwards, backups run as between 2.5 and 3.0 Mbps. This is not a typo. It is less than 1% of the speed.
If I reboot, all starts to work properly again.
This is my fstab file.
Code:
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pve/root / ext4 errors=remount-ro 0 1
UUID=0E21-1B07 /boot/efi vfat defaults 0 1
/dev/pve/swap none swap sw 0 0
proc /proc proc defaults 0 0
# and the usb drive
/dev/sdb1 /mnt/usb_storage ext4 defaults 0 0
root@cyllene:~#
How can I get the USB drive to be recognised properly (preferably automatically), and work as intended?