That error simply means the mount point (~/Phone) doesn’t exist yet — you just need to create that folder before mounting.
Here’s how to fix it step-by-step 👇
# 1. Create a folder to mount the phone
mkdir -p ~/Phone
# 2. Mount the phone again
jmtpfs ~/Phone✅ If successful, your phone’s internal storage will now appear inside ~/Phone.
To verify:
ls ~/PhoneYou should see folders like DCIM, Pictures, Downloads, etc.
📤 When you’re done#
Always unmount properly before unplugging:
fusermount -u ~/Phone