4

Thinking of converting my Windows 7 Boxee box to Ubuntu to ease up on RAM and CPU load, but I can't find a method of mounting the airport disk.

I have found a package called airport-utils, but I can't find explicit information about the disk functions. I really can't switch without this functionality.

Pylsa
  • 31,383
Mild Fuzz
  • 743

6 Answers6

7

I was able to do it using the following commands:

sudo apt-get install cifs-utils

sudo mount.cifs //IP_ADDRESS/Data ~/capsule -o password=CAPSULE_PASSWORD,sec=ntlm,uid=LOCAL_USERNAME
6

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).
Steve HHH
  • 7,430
5

Solved by adding vers=1.0 at the end of the mount command:

sudo mount -t cifs //IP_ADDRESS/FOLDER -o 
username=LOCAL_USERNAME,password=AIRPORT_PASSWORD,sec=ntlm,vers=1.0 

Version 2.0 (i.e. vers=2.0) did not work (was also suggested).

-- Ubuntu 18.04.1 LTS

Blackwood
  • 3,184
Bob9000
  • 51
2

Yes, AirPort Extreme and Time Capsule both share their USB disks via both AFP (Apple File Protocol, the default remote filesystem mounting protocol for Macs) and SMB (Server Message Block, the default remote filesystem mounting protocol for Windows, which is what the open source "SaMBa" server serves). So the SMB client in Ubuntu should be able to mount your AirPort Extreme's USB disk just like it mounts a Windows server or Linux Samba server.

Spiff
  • 110,156
1

After lot's of trial and error I got it working on Ubuntu 18.04. The big catch is you must use vers=1.0. However, the network throughput is not very good. I have a gigabit network, and max out at around 125Mbps. Better than nothing though.

sudo mount -t cifs //10.0.0.11/Mermaid/Movies -o username=plex,password=<password-here>,vers=1.0,sec=ntlm /mnt/Movies

Note: you can use any username you want, does not seem to matter, but you must provide a username.

Justin
  • 571
-2

Wouldn't bother. Check this out: https://support.apple.com/en-us/HT202807 So with SMB it supports only up to real old FAT32, allowing max 32GB volumes and max 4GB File size. No NTFS, no ExFAT. Maybe the apple proprietary files systems may work, but not supported in combination with SMB. Here I am staring at a 1TB drive with up to 12GB sized files and my airport extreme. Oh well.. So much for that one.