mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

https://unix.stackexchange.com/a/643927 を参考にUASを無効にしてみう

$ lsmod | grep uas
uas 28672 2
usb_storage 77824 1 uas

$ grep FORCE_UNLOAD /boot/config-$(uname -r)
# CONFIG_MODULE_FORCE_UNLOAD is not set
$ cat /sys/module/usb_storage/parameters/quirks
(なし)
$ cat /etc/modprobe.d/local-disable-uas.conf
… No such file or directory

$ lsusb | grep SATA
:
Bus 001 Device 004: ID 174c:55aa ASMedia Technology Inc. Name: ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge

$ id='174c:55aa'
$ echo "$id:u" | sudo tee -a /sys/module/usb_storage/parameters/quirks
$ echo "options usb-storage quirks=$id:u" | sudo tee -a /etc/modprobe.d/local-disable-uas.conf
$ rmmod -f usb_storage
rmmod: ERROR: ../libkmod/libkmod-module.c:799 kmod_module_remove_module() could not remove 'usb_storage': Resource temporarily unavailable
:

ほむ。リブートしてくれるかしら。

$ sync; sync; sync; sudo reboot

(-人-)

Unix & Linux Stack ExchangeHow to disable UAS on live systemIn the past, I had problem with AXAGON ADSA-ST DUAL HDD hard-drive dock. After copying few gigabytes really quickly, everything froze. Solution that works for me is to put following into new file /...