photo by Claire Fischer on Unsplash

2023-03-11

You’ve got to go out on a limb sometimes because that’s where the fruit is. — Will Rogers

archlinux u盘自动挂载

参考:https://www.jianshu.com/p/68808f566017

pacman -S udev udisks2
 
cd /etc/udev/rules.d/
touch my.rules
# vim my.rules
 
ACTION=="add", SUBSYSTEMS=="usb", SUBSYSTEM=="block", RUN{program}+="/bin/mkdir /media/%k" ,RUN{program}+="/usr/bin/systemd-mount --no-block --collect $devnode /media/%k"
systemctl restart udisks2.service