You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line is printed to stderr to inform the user how to update the udev rules installed on the system related to uuu. It incorrectly recommends that the user appends to the existing rules rather than replace them.
Current:
uuu -udev > /dev/null
1: put above udev run into /etc/udev/rules.d/70-uuu.rules
sudo sh -c "uuu -udev >> /etc/udev/rules.d/70-uuu.rules"
2: update udev rule
sudo udevadm control --reload
Expected:
uuu -udev > /dev/null
1: put above udev run into /etc/udev/rules.d/70-uuu.rules
sudo sh -c "uuu -udev > /etc/udev/rules.d/70-uuu.rules"
2: update udev rule
sudo udevadm control --reload