$ sudo apt update
...
All packages are up to date.
$ sudo apt full-upgrade
...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
$ uname -a
Linux ray-desktop 5.13.0-41-generic #46~20.04.1-Ubuntu SMP Wed Apr 20 13:16:21 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
The USB mount of an iPhone-8 (15.6.1) no longer shows up.
When I plug it in, the iPhone buzzes appropriately, and this shows up on the Ubuntu system:
$ sudo journalctl --follow
Aug 27 18:53:05 ray-desktop kernel: usb 1-1: new high-speed USB device number 10 using xhci_hcd
Aug 27 18:53:05 ray-desktop kernel: usb 1-1: New USB device found, idVendor=05ac, idProduct=12a8, bcdDevice=10.04
Aug 27 18:53:05 ray-desktop kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 27 18:53:05 ray-desktop kernel: usb 1-1: Product: iPhone
Aug 27 18:53:05 ray-desktop kernel: usb 1-1: Manufacturer: Apple Inc.
Aug 27 18:53:05 ray-desktop kernel: usb 1-1: SerialNumber: ece9a29270f4b897a925bd7c45ef3dde19b22a95
Aug 27 18:53:05 ray-desktop mtp-probe[85766]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
Aug 27 18:53:05 ray-desktop mtp-probe[85766]: bus: 1, device: 10 was not an MTP device
Aug 27 18:53:05 ray-desktop mtp-probe[85782]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
Aug 27 18:53:05 ray-desktop mtp-probe[85782]: bus: 1, device: 10 was not an MTP device
But there's no obvious mount anywhere (e.g. df
, mount
, or the Files
GUI).
This was working fine a few weeks ago.
idevicepair pair
. And it doesn't explain why it stopped working when it was okay a few weeks ago. – Ray Butterworth Aug 27 '22 at 21:18uname
output. – Ray Butterworth Aug 27 '22 at 22:49ls -l /dev >a
. Watchsudo journalctl --follow
as you plug in the iPhone.^C
to exitjournalctl
.ls -l /dev >b;diff a b
should give you enough information to solve the problem. – waltinator Aug 27 '22 at 22:50uname
proves you're not using an upgraded system. – guiverc Aug 27 '22 at 22:52linux-generic-hwe-20.04 | 5.15.0.46.49~20.04.16 | focal-updates | amd64, arm64, armhf, ppc64el, s390x
where using the HWE kernel stack. – guiverc Aug 27 '22 at 22:55sudo apt update
,sudo apt upgrade
produces "0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded". — "Your uname proves you're not using an upgraded system." — so what do I need to do to use an upgraded system? – Ray Butterworth Aug 27 '22 at 22:58sudo apt update
and check for missing lines, or check your sources; myself I find checking sources easier). When did you last performsudo apt full-upgrade
asapt upgrade
has limitations on what it can install as is documented (ie.man apt
& search forfull-upgrade
and it'll tell you it performs upgrade without the limitations onupgrade
)... Your provided details don't match 20.04 for an updated source. – guiverc Aug 27 '22 at 23:01sudo apt full-upgrade
says "0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.". – Ray Butterworth Aug 27 '22 at 23:09