I was able to mount my 2008 Airport Extreme's external USB drive in Ubuntu 12.04 with the following command:
sudo mount -t cifs //10.0.1.1/SHARE -o username=stevehhh,password=mypasswd /media/airport
Note that you'll need to customise the above command for your own Airport setup, by ensuring that the following parameters are correct for you:
- The IP address of your Airport Extreme (above, mine is 10.0.1.1).
- The name of the share (above, it's "SHARE").
- The username to access the share (I just used the same username as on my Mac: stevehhh, which happens to also be my username on the Ubuntu system. However, I can still connect even if I set this to a non-existent account, such as foofoo123. If I omit the username parameter altogether, however, the mount command fails).
- The password for the Airport share (above it's "mypasswd").
- The name of a folder where you'd like the Airport drive mounted (above, /media/airport).
Thanks - this actually worked better for me than Steve HHH's answer with Ubuntu 14.04 – cwd – 2015-01-22T05:05:16.243
Cheers! I have seen that linux mint auto mounts AirPort Extreme disks when scanned.. Get the latest one – Kajal Sinha – 2015-01-22T05:07:13.070
This worked for me. But I do believe Steve HHH's answer is completely valid depending on what option you choose within your AirPort Extreme settings. These instructions are for the "Use the device password" option whereas Steve HHH's solution I believe is for the option which has access setup for individual users (I forget the exact option name). – pumazi – 2017-03-05T03:50:04.647