Re: No Wireless & no automounting USB
Reply #1 –
For automounting USBs, you probably want to create a udev rule. You can call it whatever you want. Mine is /etc/udev/rules.d/10-automount.rules and is as follows.
#automount usb devices
SUBSYSTEMS=="scsi", KERNEL=="sd[a-h][0-9]",
SYMLINK:="/media/%k", RUN+="/usr/bin/pmount /dev/%k"
Here's some examples of some udev rules for automounting. There's many more possible configurations you can google. I'd recommend using pmount for mounting/unmounting since it's designed to handle mounting as a normal user.